How do I get results from custom modules into $module_result.content

Author Message

Trond Åge Kvalø

Friday 12 March 2004 4:34:02 am

I've created a module that fetches data from a custom database table:

<?php
//get the current userid
$userid = &eZUser::currentUserID();

// Build module result array
// Why is this here???????
$Result = array();
$Result['userid'] = $userid;
$Result['path'] = array( array( 'url' => '/lisenser/vis',
                                'text' => "Vis lisenser") );

include_once( "lib/ezdb/classes/ezdb.php" );
$db =& eZDB::instance();
  // start a new transaction
  $db->begin();  //why use this when all tables are myISAM????

  // send the SQL SELECT command to the database
  $myquery="SELECT * from course_licenses WHERE userid='$userid'";
  $mycourseids =& $db->arrayQuery($myquery);
  foreach ($mycourseids as $courseid) {
	print( $courseid["courseid"] );
  }
  // commit the transaction
  $db->commit();  //why use this when all tables are myISAM????
?>

But the results are printed before the pagelayout.tpl. I.e. just before <!DOCTYPE HTML PUBLIC....>

Is there a way of getting the results into $module_result.content variable?

best regards
trondåge

trondåge

Eirik Alfstad Johansen

Friday 12 March 2004 6:55:39 am

Hi Trond Åge,

Store the content in $Result['content']

Sincerely,

Eirik Johansen

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Trond Åge Kvalø

Friday 12 March 2004 8:34:19 am

Thank you Eirik.

Now I have the following code:

include_once( "lib/ezdb/classes/ezdb.php" );
$db =& eZDB::instance();
  // start a new transaction
  $db->begin();  

  // send the SQL SELECT command to the database
  $myquery="SELECT * from course_licenses WHERE userid='$userid'";
  $Result['content'] =& $db->arrayQuery($myquery);

  // commit the transaction
  $db->commit();  

The result is now stored in $Result['content']. In my browser I now have a text that says Array where I expected the results.

It's progress, but I guess I need a template to display the content of this array correctly. The only problem is that I'm not sure how I would do that?

I see two possible solutions:

1) Create a node_view.full override and match it against my module and/or view.
2) Create templates for my module in the extension/mymodule/design/standard/templates/mymodule folder.

Anyone else got other solutions?

best regards
trondåge

trondåge

Eirik Alfstad Johansen

Friday 12 March 2004 2:40:54 pm

Hi Trond Åge,

As you might expect from the name, the arrayQuery method returns an array, meaning that you have to loop through it in the script to get the result you need to return.

Sincerely,

Eirik Johansen

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 22:57:15
Script start
Timing: Jan 18 2025 22:57:15
Module start 'layout'
Timing: Jan 18 2025 22:57:15
Module start 'content'
Timing: Jan 18 2025 22:57:17
Module end 'content'
Timing: Jan 18 2025 22:57:17
Script end

Main resources:

Total runtime1.6912 sec
Peak memory usage4,096.0000 KB
Database Queries60

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0051 588.2031152.6563
Module start 'layout' 0.00510.0031 740.859439.4922
Module start 'content' 0.00811.6815 780.3516551.7109
Module end 'content' 1.68960.0015 1,332.062512.0938
Script end 1.6912  1,344.1563 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00320.1883160.0002
Check MTime0.00130.0753160.0001
Mysql Total
Database connection0.00070.040110.0007
Mysqli_queries1.613595.4056600.0269
Looping result0.00060.0375580.0000
Template Total1.644997.320.8225
Template load0.00220.128420.0011
Template processing1.642797.133320.8214
Template load and register function0.00020.013510.0002
states
state_id_array0.00110.064810.0011
state_identifier_array0.00230.135720.0011
Override
Cache load0.00180.1039330.0001
Sytem overhead
Fetch class attribute can translate value0.00070.039320.0003
Fetch class attribute name0.00110.066650.0002
XML
Image XML parsing0.01721.014620.0086
class_abstraction
Instantiating content class attribute0.00000.001860.0000
General
dbfile0.01861.1003160.0012
String conversion0.00000.000540.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
9content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
2content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 22
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs