Friday 02 March 2007 6:58:35 am
Hi my friends !! When my module calls my students.tpl the left_menu don't show anymore... I don't know why ... this is my code: my module.php:
$ViewList['students'] = array(
'default_navigation_part' => 'ezcontentnavigationpart',
'script' => 'students.php',
'params' => array('id','msg') );
my students.php
$Result = array();
$Result['content'] = & $tpl->fetch( "design:students.tpl" );
$Result['flat_left'] = & $tpl->fetch( "design:flat_left.tpl" );
I try this too:
$Result['navigation_part'] = & $tpl->fetch( "design:flat_left.tpl" );
my students.tpl shows ok, but left_menu no. I just want to keep the default left_menu when I access my module... Thanks for any help !!
|