本文整理汇总了PHP中CController::renderFile方法的典型用法代码示例。如果您正苦于以下问题:PHP CController::renderFile方法的具体用法?PHP CController::renderFile怎么用?PHP CController::renderFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CController
的用法示例。
在下文中一共展示了CController::renderFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
/**
* Render full HTML page. A controller/action that uses XPage to render page
* can render its view in Yii's standard way or render a constructed page with a
* main view and multiple sidebars of left and right of the main content.
*
* @param bool $return
*
* @return mixed|string
*/
public function render($return = false)
{
$this->registerAssets();
/**
* re-implement the render() of CController but not firing events
* for beforeRender and afterRender as they are not really useful
*/
$this->renderColumn('left');
$this->renderColumn('main');
$this->renderColumn('right');
$content = '';
foreach ($this->views['main'] as $renderedInfo) {
$content .= "\n" . $renderedInfo['content'];
}
$this->views['content'] = $content;
if (($layoutFile = $this->controller->getLayoutFile($this->controller->layout)) !== false) {
$output = $this->controller->renderFile($layoutFile, $this->views, true);
} else {
$leftContent = '';
foreach ($this->views['left'] as $renderedInfo) {
$leftContent = "\n" . $renderedInfo['content'];
}
$rightContent = '';
foreach ($this->views['right'] as $renderedInfo) {
$rightContent = "\n" . $renderedInfo['content'];
}
$output = $leftContent . "\n" . $content . "\n" . $rightContent;
}
$output = $this->controller->processOutput($output);
if ($return) {
return $output;
} else {
echo $output;
}
}
示例2: renderView
/**
* Render the view file
* @param string $viewName Name of the view
* @param array $viewData Data for extraction
* @return string The rendered result
* @throws CException
*/
public function renderView($viewName, $viewData = null)
{
//resolve the file name
if (($viewFile = $this->getViewFile($viewName)) !== false) {
//use controller instance if available or create dummy controller for console applications
if (isset(Yii::app()->controller)) {
$controller = Yii::app()->controller;
} else {
$controller = new CController(__CLASS__);
}
//render and return the result
return $controller->renderFile($viewFile, $viewData, true);
} else {
//file name does not exist
throw new CException('View "' . $viewName . '" does not exist!');
}
}