/home/dpmptmub/public_html/themes/frontend/views/layouts/modul/regulasi.php(6)
01 <div style="margin-left: 3%"> 02 <div class="textmiddle" style="margin-bottom: 2%;margin-top: 5%;"><center><span style="color: #FEFEFE; padding: 0 46px; border-radius: 6px; background: #E53838;font-size: x-large;"><b>REGULASI PERIZINAN</b></span></center></div> 03 <div class="ibox float-e-margins"> 04 <div class="ibox-content"> 05 <?php 06 $jenis_regulasi = Produkhukum::model()->findAll('tblprodukhukum_status=:status', array(':status'=>'T')); 07 ?> 08 <?php foreach ($jenis_regulasi as $jnsreg): ?> 09 <div class="col-md-12" style="padding:2px"> 10 <span class="btn btn-info btn-block" data-toggle="collapse" data-target="#<?php echo $jnsreg['tblprodukhukum_id'] ?>" aria-expanded="false" aria-controls="collapseExample" style="text-align:left; overflow: auto;"><i class="fa fa-angle-right"></i> <span style="font-size:16;font-weight:bold;"> <?php echo $jnsreg['tblprodukhukum_nama'] ?></span> 11 </span> 12 <div class="collapse" id="<?php echo $jnsreg['tblprodukhukum_id'] ?>"> 13 <div class="well"> 14 <?php $var = Regulasi::model()->findAll('tblprodukhukum_id=:id', array(':id'=>$jnsreg['tblprodukhukum_id'])); 15 foreach($var as $xxx) : ?> 16 <div class="row" style="background: #eceaea; border-radius:5px; padding:10px 0px 5px 0px; margin-bottom:5px;"> 17 <div class="col-md-10" style="font-size:14px;color:black;"> 18 <?php echo $xxx['tblregulasi_nama'] ?></div>
#0 |
+
–
/home/dpmptmub/public_html/themes/frontend/views/layouts/main.php(58): require() 53 <div class="row"> 54 <div class="col-md-8"> 55 <?php if ($this->action->id=='kontent'): ?> 56 <?php echo $content; ?> 57 <?php elseif ($this->action->id=='page'): ?> 58 <?php @require 'modul/'.$this->namamodul; ?> 59 <?php else: ?> 60 <?php echo $content; ?> 61 <?php endif ?> 62 </div> 63 <div class="col-md-3"> |
#1 |
+
–
/home/dpmptmub/public_html/framework/web/CBaseController.php(126): require("/home/dpmptmub/public_html/themes/frontend/views/layouts/main.ph...") 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 } |
#2 |
+
–
/home/dpmptmub/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/dpmptmub/public_html/themes/frontend/views//layouts/main.p...", array("content" => "<div id="content">
</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); |
#3 |
+
–
/home/dpmptmub/public_html/framework/web/widgets/CContentDecorator.php(76): CBaseController->renderFile("/home/dpmptmub/public_html/themes/frontend/views//layouts/main.p...", array("content" => "<div id="content">
</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 } |
#4 |
+
–
/home/dpmptmub/public_html/framework/web/widgets/CContentDecorator.php(54): CContentDecorator->decorate("<div id="content">
</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. |
#5 |
+
–
/home/dpmptmub/public_html/framework/web/widgets/COutputProcessor.php(44): CContentDecorator->processOutput("<div id="content">
</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 * |
#6 |
+
–
/home/dpmptmub/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))); |
#7 |
+
–
/home/dpmptmub/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 } |
#8 |
+
–
/home/dpmptmub/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(); ?> |
#9 |
+
–
/home/dpmptmub/public_html/framework/web/CBaseController.php(126): require("/home/dpmptmub/public_html/protected/views/layouts/column1.php") 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 } |
#10 |
+
–
/home/dpmptmub/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/dpmptmub/public_html/protected/views//layouts/column1.php", array("content" => null), 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); |
#11 |
+
–
/home/dpmptmub/public_html/framework/web/CController.php(784): CBaseController->renderFile("/home/dpmptmub/public_html/protected/views//layouts/column1.php", array("content" => null), 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 |
#12 |
+
–
/home/dpmptmub/public_html/protected/controllers/WebController.php(69): CController->render("page") 64 $idmenu = Yii::app()->request->getParam('id'); 65 $idmodul = Webmenu::model()->findByPk($idmenu)->tblwebmodul_id; 66 $model_modul = WebModul::model()->findByPk($idmodul); 67 $this->namamodul = $model_modul['tblwebmodul_file']; 68 69 $this->render('page'); 70 } 71 public function actionDiskusi() 72 { 73 $this->webconfig = WebConfig::model()->find(); 74 $this->modemenu = $this->action->id; |
#13 |
+
–
/home/dpmptmub/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 } |
#14 |
+
–
/home/dpmptmub/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("dummy" => "regulasi", "id" => "37")) 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; |
#15 |
+
–
/home/dpmptmub/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(); |
#16 |
+
–
/home/dpmptmub/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); |
#17 |
+
–
/home/dpmptmub/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))); |
#18 |
+
–
/home/dpmptmub/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("web/page/id/37") 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. |
#19 |
+
–
/home/dpmptmub/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 /** |
#20 |
+
–
/home/dpmptmub/public_html/index.php(17): CApplication->run() 12 defined('YII_DEBUG') or define('YII_DEBUG',true); 13 // specify how many levels of call stack should be shown in each log message 14 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 15 16 require_once($yii); 17 Yii::createWebApplication($config)->run(); |