/home/bangsaonline/public_html/azzamsource/framework/i18n/CDateFormatter.php(93)
081 * Formats a date according to a customized pattern. 082 * @param string $pattern the pattern (See {@link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns}) 083 * @param mixed $time UNIX timestamp or a string in strtotime format 084 * @return string formatted date time. Null if $time is null. (the null value check is available since Yii 1.1.11) 085 */ 086 public function format($pattern,$time) 087 { 088 if($time===null) 089 return null; 090 091 if(is_string($time)) 092 { 093 if(ctype_digit($time) || ($time{0}=='-' && ctype_digit(substr($time, 1)))) 094 $time=(int)$time; 095 else 096 $time=strtotime($time); 097 } 098 $date=CTimestamp::getDate($time,false,false); 099 $tokens=$this->parseFormat($pattern); 100 foreach($tokens as &$token) 101 { 102 if(is_array($token)) // a callback: method name, sub-pattern 103 $token=$this->{$token[0]}($token[1],$date); 104 } 105 return implode('',$tokens);
| #0 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/YiiBase.php(402): include() 397 { 398 // use include so that the error PHP file may appear 399 if(isset(self::$classMap[$className])) 400 include(self::$classMap[$className]); 401 elseif(isset(self::$_coreClasses[$className])) 402 include(YII_PATH.self::$_coreClasses[$className]); 403 else 404 { 405 // include class file relying on include_path 406 if(strpos($className,'\\')===false) // class without namespace 407 { |
| #1 |
unknown(0): YiiBase::autoload("CDateFormatter")
|
| #2 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/i18n/CLocale.php(143): spl_autoload_call("CDateFormatter") 138 * @return CDateFormatter the date formatter for this locale 139 */ 140 public function getDateFormatter() 141 { 142 if($this->_dateFormatter===null) 143 $this->_dateFormatter=new CDateFormatter($this); 144 return $this->_dateFormatter; 145 } 146 147 /** 148 * @param string $currency 3-letter ISO 4217 code. For example, the code "USD" represents the US Dollar and "EUR" represents the Euro currency. |
| #3 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/base/CApplication.php(441): CLocale->getDateFormatter() 436 * @return CDateFormatter the locale-dependent date formatter. 437 * The current {@link getLocale application locale} will be used. 438 */ 439 public function getDateFormatter() 440 { 441 return $this->getLocale()->getDateFormatter(); 442 } 443 444 /** 445 * Returns the database connection component. 446 * @return CDbConnection the database connection |
| #4 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/base/CComponent.php(111): CApplication->getDateFormatter() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
| #5 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/base/CModule.php(105): CComponent->__get("dateFormatter") 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 /** 109 * Checks if a property value is null. 110 * This method overrides the parent implementation by checking |
| #6 |
+
–
/home/bangsaonline/public_html/global.php(246): CModule->__get("dateFormatter") 241 if($data && $locale && $locale=='yes' ){ 242 $locale = " WIB"; 243 }else{ 244 $locale =""; 245 } 246 $time = Yii::app()->dateFormatter->formatDateTime($data, "full", "short").$locale; 247 248 return $time; 249 } 250 251 |
| #7 |
+
–
/home/bangsaonline/public_html/protected/views/front/berita/detail.php(298): get_time("2021-04-23 20:07:57", "dd MMMM yyyy | HH:MM", " WIB") 293 <?php if (!empty($data['sponsored'])) { ?><span>Sponsored by:</span> <span><?php echo $data['sponsored']; ?></span><?php } ?> 294 </div> 295 296 </div><!--./ entry-meta-author --> 297 <div class="entry-date"> 298 <span><?php echo get_time($data['news_date'], "dd MMMM yyyy | HH:MM", "yes"); ?></span> 299 </div><!--./ entry-date --> 300 301 </div><!--./ entry-meta-content --> 302 </div><!--./ content-entry-wrap --> 303 </div> |
| #8 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/CBaseController.php(126): require("/home/bangsaonline/public_html/protected/views/front/berita/deta...") 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/bangsaonline/public_html/azzamsource/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/bangsaonline/public_html/protected/views/front/berita/deta...", array("data" => array("news_id" => "89982", "news_title" => "Peduli Korban Gempa, SIG Salurkan Ribuan Sembako dan Semen", "news_content" => "<p><strong>TUBAN, BANGSAONLINE.com</strong> - Melalui Program <e...", "news_excerpt" => null, ...), "slugid" => "89982/peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen"), 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/bangsaonline/public_html/azzamsource/framework/web/CController.php(869): CBaseController->renderFile("/home/bangsaonline/public_html/protected/views/front/berita/deta...", array("data" => array("news_id" => "89982", "news_title" => "Peduli Korban Gempa, SIG Salurkan Ribuan Sembako dan Semen", "news_content" => "<p><strong>TUBAN, BANGSAONLINE.com</strong> - Melalui Program <e...", "news_excerpt" => null, ...), "slugid" => "89982/peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen"), true) 864 */ 865 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else |
| #11 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/CController.php(782): CController->renderPartial("detail", array("data" => array("news_id" => "89982", "news_title" => "Peduli Korban Gempa, SIG Salurkan Ribuan Sembako dan Semen", "news_content" => "<p><strong>TUBAN, BANGSAONLINE.com</strong> - Melalui Program <e...", "news_excerpt" => null, ...), "slugid" => "89982/peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen"), true) 777 */ 778 public function render($view,$data=null,$return=false) 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 |
| #12 |
+
–
/home/bangsaonline/public_html/protected/controllers/front/BeritaController.php(78): CController->render("detail", array("data" => array("news_id" => "89982", "news_title" => "Peduli Korban Gempa, SIG Salurkan Ribuan Sembako dan Semen", "news_content" => "<p><strong>TUBAN, BANGSAONLINE.com</strong> - Melalui Program <e...", "news_excerpt" => null, ...), "slugid" => "89982/peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen")) 73 } 74 75 $this->amp_url = get_link_berita_amp("berita",$dataReader['news_id'],$dataReader['news_slug']); 76 77 if(!empty($dataReader)){ 78 $this->render('detail', array('data' => $dataReader, 'slugid'=>$dataReader['news_id']."/".$dataReader['news_slug'])); 79 }else{ 80 $this->redirect('/', 301); 81 // throw new CHttpException(404,'Maaf, halaman yang anda cari tidak ditemukan.'); 82 } 83 |
| #13 |
unknown(0): BeritaController->actionDetail("89982", "peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen")
|
| #14 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(BeritaController, array("89982", "peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
| #15 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(BeritaController, ReflectionMethod, array("page" => "2", "id" => "89982", "slug" => "peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen")) 42 { 43 $methodName='action'.$this->getId(); 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 } |
| #16 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/CController.php(308): CInlineAction->runWithParams(array("page" => "2", "id" => "89982", "slug" => "peduli-korban-gempa-sig-salurkan-ribuan-sembako-dan-semen")) 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; |
| #17 |
+
–
/home/bangsaonline/public_html/azzamsource/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(); |
| #18 |
+
–
/home/bangsaonline/public_html/azzamsource/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); |
| #19 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/CWebApplication.php(282): CController->run("detail") 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))); |
| #20 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/web/CWebApplication.php(141): CWebApplication->runController("berita/detail") 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. |
| #21 |
+
–
/home/bangsaonline/public_html/azzamsource/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 /** |
| #22 |
+
–
/home/bangsaonline/public_html/protected/components/WebApplicationEndBehavior.php(25): CApplication->run() 20 // Attach the changeModulePaths event handler 21 // and raise it. 22 $this->onModuleCreate = array($this, 'changeModulePaths'); 23 $this->onModuleCreate(new CEvent($this->owner)); 24 25 $this->owner->run(); // Run application. 26 } 27 28 // This event should be raised when CWebApplication 29 // or CWebModule instances are being initialized. 30 public function onModuleCreate($event) |
| #23 |
+
–
/home/bangsaonline/public_html/azzamsource/framework/base/CComponent.php(261): WebApplicationEndBehavior->runEnd("front") 256 if($this->_m!==null) 257 { 258 foreach($this->_m as $object) 259 { 260 if($object->getEnabled() && method_exists($object,$name)) 261 return call_user_func_array(array($object,$name),$parameters); 262 } 263 } 264 if(class_exists('Closure', false) && $this->canGetProperty($name) && $this->$name instanceof Closure) 265 return call_user_func_array($this->$name, $parameters); 266 throw new CException(Yii::t('yii','{class} and its behaviors do not have a method or closure named "{name}".', |
| #24 |
+
–
/home/bangsaonline/public_html/index.php(24): CComponent->__call("runEnd", array("front")) 19 defined('YII_DEBUG_DISPLAY_TIME') or define('YII_DEBUG_DISPLAY_TIME', false); 20 if (YII_DEBUG_DISPLAY_TIME) 21 echo Yii::getLogger()->getExecutionTime(); 22 23 require_once($yii); 24 Yii::createWebApplication($config)->runEnd('front'); 25 //echo "Using ", memory_get_peak_usage(1), " bytes of ram."; 26 |