I am trying to get a navigation into my template.
Controller:
class Controller_Admin_Topnav extends Controller_Template {
public $template = 'admin/template';
public function action_index()
{
$topnav = 566;
$this->template->content = View::factory('admin/topnav')
->bind('topnav', $topnav);
}
}
Template
<?=View::factory('admin/topnav')?>
<?= $content; ?>
View
<?=$topnav?>
Error: If i call domain/admin/topnav it works else not. I am getting this error.
ErrorException [ Notice ]: Undefined variable: topnav
What do i do wrong?
Thnx!