Easy Template Question

Easy Template Question

Friday 27 May 2005 8:05:02 am - 2 replies

Modified on Friday 27 May 2005 8:36:26 am by Clemens T

Author Message

Xavier Dutoit

Friday 27 May 2005 8:44:12 am

Hi,

Good luck, Assuming the nodeid is going to be a param in the url (eg: /myextension/myfunction/42)

Another way is to use named parameters (eg: /myextension/myfunction/(nodeid)/42 )

echo "Have a look at:<br><pre>";
print_r ($Params);
echo"</pre>";

// otherwise, something more useful
include_once( 'kernel/common/template.php' );
$tpl =& templateInit();

if (isset ($Params['Parameters'][0]))
      $tpl->setVariable('nodeid',$Params['Parameters'][0]);

//named parameters

foreach ($Params[UserParameters] as $param => $value)
    $tpl->setVariable( $param, $value );

Then you can use it into the template as any variable.

I guess that's just a test, as otherwise they are easier ways of listing all folders in a node ;)

X+

http://www.sydesy.com

Clemens T

Friday 27 May 2005 9:38:04 am

Wow thanks, I got it to work.. and yes, this is just a basic setup of a module that's going to contain more complex data than I can imagine.

BUT... there is one thing.. This works:

if (isset ($Params['Parameters'][0]))
      $tpl->setVariable('nodeid',$Params['Parameters'][0]);

and in my template I'll just say

{$nodeid}

THAT works.. but as you told me something about 'named parameters'.. I saw the code. and thought, hey that just loops through all the viewparameters and assigns them to the appropriate variables. I think I'm wrong, but don't know why.

I can't get this to work, I think because the UserParamters array is not properly filled? (just a thought).

//named parameters

foreach ($Params[UserParameters] as $param => $value)
    $tpl->setVariable( $param, $value );

Thanks on the quick reply!
Qudos for X.
Greetings,
Clemens

ps: my viewlist is still with
'params' = array( 'nodeid' );

edit: I'm still using {$nodeid} in my template code to get the nodeid..

You must be logged in to post messages in this topic!

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