コード例 #1
0
ファイル: LayoutRenderCtx.php プロジェクト: laiello/waxphp
 function Execute(rRenderable $layout, $contents)
 {
     $dhtml = BlockManager::GetDHTMLResources();
     $args = array("content_for_layout" => $contents, "css" => $dhtml['css'], 'js' => $dhtml['js']);
     return $layout->Render($args);
 }
コード例 #2
0
ファイル: ViewRenderCtx.php プロジェクト: laiello/waxphp
 function Execute(rRenderable $view, $args)
 {
     return $view->Render($args);
 }