/home/bkpsdmmuaraenim/public_html/themes/ui/views/layouts/main.php(296)
284 <?php include 'layout_homeintro.php'; ?> 285 <!-- <?php include 'layout_linkwebsite.php'; ?> --> 286 <?php else: ?> 287 <?php endif ?> 288 289 <div class="home-intro" style="background: url('<?php echo Yii::app()->theme->baseUrl; ?>/img/background1.png');width: 100%;background-repeat: no-repeat;background-position: bottom;margin-bottom: 5%;"> 290 <div class="container"> 291 <div class="row"> 292 <div class="col-md-8"> 293 <?php if ($this->action->id=='kontent'): ?> 294 <?php echo $content; ?> 295 <?php elseif ($this->action->id=='page'): ?> 296 <?php @require 'modul/'.$this->namamodul; ?> 297 <?php else: ?> 298 <?php echo $content; ?> 299 <?php endif ?> 300 </div> 301 302 <div class="col-md-4"> 303 <?php include 'widget/kiri.php'; ?> 304 </div> 305 </div> 306 </div> 307 </div> 308
#0 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(126): require() 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#1 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/bkpsdmmuaraenim/public_html/themes/ui/views//layouts/main....", array("content" => "<div id="content">
page</div><!-- content -->
"), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#2 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/widgets/CContentDecorator.php(76): CBaseController->renderFile("/home/bkpsdmmuaraenim/public_html/themes/ui/views//layouts/main....", array("content" => "<div id="content">
page</div><!-- content -->
"), true) 71 $viewFile=$owner->getViewFile($this->view); 72 if($viewFile!==false) 73 { 74 $data=$this->data; 75 $data['content']=$content; 76 return $owner->renderFile($viewFile,$data,true); 77 } 78 else 79 return $content; 80 } 81 } |
#3 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/widgets/CContentDecorator.php(54): CContentDecorator->decorate("<div id="content">
page</div><!-- content -->
") 49 * This method decorates the output with the specified {@link view}. 50 * @param string $output the captured output to be processed 51 */ 52 public function processOutput($output) 53 { 54 $output=$this->decorate($output); 55 parent::processOutput($output); 56 } 57 58 /** 59 * Decorates the content by rendering a view and embedding the content in it. |
#4 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/widgets/COutputProcessor.php(44): CContentDecorator->processOutput("<div id="content">
page</div><!-- content -->
") 39 * This method stops output buffering and processes the captured output. 40 */ 41 public function run() 42 { 43 $output=ob_get_clean(); 44 $this->processOutput($output); 45 } 46 47 /** 48 * Processes the captured output. 49 * |
#5 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(206): COutputProcessor->run() 201 */ 202 public function endWidget($id='') 203 { 204 if(($widget=array_pop($this->_widgetStack))!==null) 205 { 206 $widget->run(); 207 return $widget; 208 } 209 else 210 throw new CException(Yii::t('yii','{controller} has an extra endWidget({id}) call in its view.', 211 array('{controller}'=>get_class($this),'{id}'=>$id))); |
#6 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(300): CBaseController->endWidget("CContentDecorator") 295 * Ends the rendering of content. 296 * @see beginContent 297 */ 298 public function endContent() 299 { 300 $this->endWidget('CContentDecorator'); 301 } 302 } |
#7 |
+
–
/home/bkpsdmmuaraenim/public_html/protected/views/layouts/column1.php(6): CBaseController->endContent() 1 <?php /* @var $this Controller */ ?> 2 <?php $this->beginContent('//layouts/main'); ?> 3 <div id="content"> 4 <?php echo $content; ?> 5 </div><!-- content --> 6 <?php $this->endContent(); ?> |
#8 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(126): require("/home/bkpsdmmuaraenim/public_html/protected/views/layouts/column...") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#9 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/bkpsdmmuaraenim/public_html/protected/views//layouts/colum...", array("content" => "page"), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#10 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CController.php(784): CBaseController->renderFile("/home/bkpsdmmuaraenim/public_html/protected/views//layouts/colum...", array("content" => "page"), true) 779 { 780 if($this->beforeRender($view)) 781 { 782 $output=$this->renderPartial($view,$data,true); 783 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 784 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 785 786 $this->afterRender($view,$output); 787 788 $output=$this->processOutput($output); 789 |
#11 |
+
–
/home/bkpsdmmuaraenim/public_html/protected/controllers/WebController.php(56): CController->render("page") 51 $idmenu = Yii::app()->request->getParam('id'); 52 $idmodul = Webmenu::model()->findByPk($idmenu)->tblwebmodul_id; 53 $model_modul = WebModul::model()->find('tblwebmodul_id=:idmodul', array(':idmodul'=>$idmodul)); 54 $this->namamodul = $model_modul['tblwebmodul_file']; 55 56 $this->render('page'); 57 } 58 public function actionDiskusi() 59 { 60 $this->webconfig = WebConfig::model()->find(); 61 $this->modemenu = $this->action->id; |
#12 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/actions/CInlineAction.php(49): WebController->actionPage() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#13 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("dummy" => "gallery_foto", "id" => "47")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#14 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#15 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#16 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CWebApplication.php(282): CController->run("page") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#17 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("web/page/id/47") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#18 |
+
–
/home/bkpsdmmuaraenim/public_html/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#19 |
+
–
/home/bkpsdmmuaraenim/public_html/index.php(16): CApplication->run() 11 defined('YII_DEBUG') or define('YII_DEBUG',true); 12 // specify how many levels of call stack should be shown in each log message 13 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 14 15 require_once($yii); 16 Yii::createWebApplication($config)->run(); |