The goal
Pass $title
for my view _Layout.phtml
.
The scenario
Home.phtml
$title = 'My application';
[...]
MasterPage::Invoke('Layout');
Layout.phtml
<?php echo $title; ?>
Invoke's method of MasterPage
[...]
public static function Invoke($layout)
{
include_once File::Get($layout)
}
The problem
Notice: Undefined variable: title in [...] on line 32