/home/dpmptspwonogiri/public_html/protected/models/Tblizin.php(106)
094 $criteria->compare('tblizin_adaretribusi',$this->tblizin_adaretribusi,true); 095 096 return new CActiveDataProvider($this, array( 097 'criteria'=>$criteria, 098 )); 099 } 100 101 /** 102 * @return CDbConnection the database connection used for this class 103 */ 104 public function getDbConnection() 105 { 106 return Yii::app()->db2; 107 } 108 109 /** 110 * Returns the static model of the specified AR class. 111 * Please note that you should have this exact method in all your CActiveRecord descendants! 112 * @param string $className active record class name. 113 * @return Tblizin the static model class 114 */ 115 public static function model($className=__CLASS__) 116 { 117 return parent::model($className); 118 }
#0 |
+
–
/home/dpmptspwonogiri/public_html/framework/db/CDbConnection.php(330): CDbConnection->open() 325 public function setActive($value) 326 { 327 if($value!=$this->_active) 328 { 329 if($value) 330 $this->open(); 331 else 332 $this->close(); 333 } 334 } 335 |
#1 |
+
–
/home/dpmptspwonogiri/public_html/framework/db/CDbConnection.php(308): CDbConnection->setActive(true) 303 */ 304 public function init() 305 { 306 parent::init(); 307 if($this->autoConnect) 308 $this->setActive(true); 309 } 310 311 /** 312 * Returns whether the DB connection is established. 313 * @return boolean whether the DB connection is established |
#2 |
+
–
/home/dpmptspwonogiri/public_html/framework/base/CModule.php(387): CDbConnection->init() 382 if(!isset($config['enabled']) || $config['enabled']) 383 { 384 Yii::trace("Loading \"$id\" application component",'system.CModule'); 385 unset($config['enabled']); 386 $component=Yii::createComponent($config); 387 $component->init(); 388 return $this->_components[$id]=$component; 389 } 390 } 391 } 392 |
#3 |
+
–
/home/dpmptspwonogiri/public_html/framework/base/CModule.php(103): CModule->getComponent("db2") 098 * @return mixed the named property value 099 */ 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** |
#4 |
+
–
/home/dpmptspwonogiri/public_html/protected/models/Tblizin.php(106): CModule->__get("db2") 101 /** 102 * @return CDbConnection the database connection used for this class 103 */ 104 public function getDbConnection() 105 { 106 return Yii::app()->db2; 107 } 108 109 /** 110 * Returns the static model of the specified AR class. 111 * Please note that you should have this exact method in all your CActiveRecord descendants! |
#5 |
+
–
/home/dpmptspwonogiri/public_html/framework/db/ar/CActiveRecord.php(667): Tblizin->getDbConnection() 662 * Returns the command builder used by this AR. 663 * @return CDbCommandBuilder the command builder used by this AR 664 */ 665 public function getCommandBuilder() 666 { 667 return $this->getDbConnection()->getSchema()->getCommandBuilder(); 668 } 669 670 /** 671 * Checks whether this AR has the named attribute 672 * @param string $name attribute name |
#6 |
+
–
/home/dpmptspwonogiri/public_html/framework/db/ar/CActiveRecord.php(1469): CActiveRecord->getCommandBuilder() 1464 * @return CActiveRecord[] list of active records satisfying the specified condition. An empty array is returned if none is found. 1465 */ 1466 public function findAll($condition='',$params=array()) 1467 { 1468 Yii::trace(get_class($this).'.findAll()','system.db.ar.CActiveRecord'); 1469 $criteria=$this->getCommandBuilder()->createCriteria($condition,$params); 1470 return $this->query($criteria,true); 1471 } 1472 1473 /** 1474 * Finds a single active record with the specified primary key. |
#7 |
+
–
/home/dpmptspwonogiri/public_html/themes/frontend/views/layouts/modul/modul_infoizin.php(18): CActiveRecord->findAll("tblizin_isaktif=:isaktif", array(":isaktif" => "T")) 13 Jenis Izin 14 </div> 15 <div class="col-md-10"> 16 <select id="jenis_izin" name="jenis_izin" class="form-control" onchange="getpermohonan()"> 17 <option value="*">--Pilih Jenis Izin-- </option> 18 <?php $model = Tblizin::model()->findAll('tblizin_isaktif=:isaktif', array(':isaktif'=>'T'));?> 19 <?php foreach ($model as $list_izin): ?> 20 <option value="<?php echo $list_izin['tblizin_id']; ?>"><?php echo $list_izin['tblizin_nama']; ?></option> 21 <?php endforeach ?> 22 </select> 23 </div> |
#8 |
+
–
/home/dpmptspwonogiri/public_html/themes/frontend/views/layouts/main.php(91): require("/home/dpmptspwonogiri/public_html/themes/frontend/views/layouts/...") 86 87 <div class="col-md-6"> 88 <?php if ($this->action->id=='kontent'): ?> 89 <?php echo $content; ?> 90 <?php elseif ($this->action->id=='page'): ?> 91 <?php @require 'modul/'.$this->namamodul; ?> 92 <?php else: ?> 93 <?php echo $content; ?> 94 <?php endif ?> 95 </div> 96 |
#9 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CBaseController.php(126): require("/home/dpmptspwonogiri/public_html/themes/frontend/views/layouts/...") 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/dpmptspwonogiri/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/dpmptspwonogiri/public_html/themes/frontend/views//layouts...", 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); |
#11 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/widgets/CContentDecorator.php(76): CBaseController->renderFile("/home/dpmptspwonogiri/public_html/themes/frontend/views//layouts...", 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 } |
#12 |
+
–
/home/dpmptspwonogiri/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. |
#13 |
+
–
/home/dpmptspwonogiri/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 * |
#14 |
+
–
/home/dpmptspwonogiri/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))); |
#15 |
+
–
/home/dpmptspwonogiri/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 } |
#16 |
+
–
/home/dpmptspwonogiri/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(); ?> |
#17 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CBaseController.php(126): require("/home/dpmptspwonogiri/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 } |
#18 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/dpmptspwonogiri/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); |
#19 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CController.php(784): CBaseController->renderFile("/home/dpmptspwonogiri/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 |
#20 |
+
–
/home/dpmptspwonogiri/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()->findByPk($idmodul); 54 $this->namamodul = $model_modul['tblwebmodul_file']; 55 56 $this->render('page'); 57 } 58 59 public function actionKontent() 60 { 61 $this->webconfig = WebConfig::model()->find(); |
#21 |
+
–
/home/dpmptspwonogiri/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 } |
#22 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("dummy" => "informasi_izin", "id" => "40")) 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; |
#23 |
+
–
/home/dpmptspwonogiri/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(); |
#24 |
+
–
/home/dpmptspwonogiri/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); |
#25 |
+
–
/home/dpmptspwonogiri/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))); |
#26 |
+
–
/home/dpmptspwonogiri/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("web/page/id/40") 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. |
#27 |
+
–
/home/dpmptspwonogiri/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 /** |
#28 |
+
–
/home/dpmptspwonogiri/public_html/index.php(14): CApplication->run() 09 defined('YII_DEBUG') or define('YII_DEBUG',true); 10 // specify how many levels of call stack should be shown in each log message 11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 12 13 require_once($yii); 14 Yii::createWebApplication($config)->run(); |