コード例 #1
0
ファイル: Controller.php プロジェクト: kevinkaske/pooch
 private function render()
 {
     global $view_data, $view_layout, $controller, $action;
     $view_data = $this->values;
     $view_layout = $this->layout;
     $controller = $this->controller;
     $action = $this->action;
     renderLayout();
     //Get rid of any flash messages
     unsetFlash();
 }
コード例 #2
0
ファイル: functions.php プロジェクト: aercolino/tech-test
function makePage($template, $layout)
{
    $result = renderTemplate($template);
    $result = renderLayout($result, $layout);
    return $result;
}