pass variable from php to template

Author Message

Dhaval Patel

Monday 17 December 2007 9:12:34 pm

hello

i have created one table.

and one template operator to fetch data from that table.

now i m making search template.

i can post the form and i m getting all the selected values to the action.php file.

now i want to run the query in action.php file and send the result to the template file in which i can show the search result.

please help me.

thank you very much

With Best Regards,

Dhaval Patel
Team Leader - iNETProcess(I) Pvt. LTD.
dhaval.patel@inetprocess.com
Ph No: +91 79 65 12 35 00
http://www.inetprocess.co.in

Piotrek Karaś

Monday 17 December 2007 9:38:59 pm

In PHP (this is PHP5 -> eZ4):

$tpl = templateInit();
$tpl->setVariable( 'custom_variable_name', 'custom_value' );

Then in templates you use:

{$custom_variable_name}

Hope this helps ;)

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

Dhaval Patel

Monday 17 December 2007 9:58:22 pm

hi,

thanks for replying

but its not working .

i am using ez10.

it gave me error that templateInit() call to undefined function.

then i include 'kernel/common/template.php'.

now no error. but result is also not in template.

I m using

$module->redirectTo( '/content/view/full/' . $nodeID);

at last.

please reply me.

With Best Regards,

Dhaval Patel
Team Leader - iNETProcess(I) Pvt. LTD.
dhaval.patel@inetprocess.com
Ph No: +91 79 65 12 35 00
http://www.inetprocess.co.in

Piotrek Karaś

Tuesday 18 December 2007 12:08:20 am

Proper PHP4 notation would be something like this:

include_once('kernel/common/template.php');
$tpl =& templateInit();

If you redirect to another location, then there's no template do be displayed. You could pass it in the URL as unordered parameters.

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

Nicolas Lescure

Tuesday 18 December 2007 12:20:08 am

Hi,

You don't have to use a redirection in a template operator.

Try this :

function modify(&$tpl, &$operatorName, &$operatorParameters, &$rootNamespace, &$currentNamespace, &$operatorValue, &$namedParameters) {	
	switch ($operatorName) {		
			case 'tempalte_operator_name':
				$operatorValue = 'the content you want in your template';
				break;			
		}	
	}

You can also download other extensions to help you : http://ez.no/developer/contribs/template_plugins

Piotrek Karaś

Tuesday 18 December 2007 12:30:07 am

I thought Dhaval was talking about custom module view. My bad ;)

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

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 19 2025 03:30:04
Script start
Timing: Jan 19 2025 03:30:04
Module start 'layout'
Timing: Jan 19 2025 03:30:04
Module start 'content'
Timing: Jan 19 2025 03:30:05
Module end 'content'
Timing: Jan 19 2025 03:30:05
Script end

Main resources:

Total runtime1.1922 sec
Peak memory usage4,096.0000 KB
Database Queries68

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0055 589.1641152.6250
Module start 'layout' 0.00550.0043 741.789139.4609
Module start 'content' 0.00981.1808 781.2500615.9219
Module end 'content' 1.19070.0015 1,397.171916.1563
Script end 1.1922  1,413.3281 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.2776160.0002
Check MTime0.00130.1117160.0001
Mysql Total
Database connection0.00120.099610.0012
Mysqli_queries1.112793.3302680.0164
Looping result0.00080.0690660.0000
Template Total1.152896.720.5764
Template load0.00300.248120.0015
Template processing1.149896.440920.5749
Template load and register function0.00040.032810.0004
states
state_id_array0.00210.173110.0021
state_identifier_array0.00130.107820.0006
Override
Cache load0.00250.2121450.0001
Sytem overhead
Fetch class attribute can translate value0.00060.047630.0002
Fetch class attribute name0.00190.161980.0002
XML
Image XML parsing0.00130.107830.0004
class_abstraction
Instantiating content class attribute0.00000.0024100.0000
General
dbfile0.00230.1948230.0001
String conversion0.00000.000840.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
6content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
11content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
4content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
5content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 28
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs