/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/collections/CList.php(88)
076 * @param boolean $value whether this list is read-only or not 077 */ 078 protected function setReadOnly($value) 079 { 080 $this->_r=$value; 081 } 082 083 /** 084 * Returns an iterator for traversing the items in the list. 085 * This method is required by the interface IteratorAggregate. 086 * @return Iterator an iterator for traversing the items in the list. 087 */ 088 public function getIterator() 089 { 090 return new CListIterator($this->_d); 091 } 092 093 /** 094 * Returns the number of items in the list. 095 * This method is required by Countable interface. 096 * @return integer number of items in the list. 097 */ 098 public function count() 099 { 100 return $this->getCount();
#0 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/YiiBase.php(406): include("/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/coll...") 401 { 402 // use include so that the error PHP file may appear 403 if(isset(self::$classMap[$className])) 404 include(self::$classMap[$className]); 405 elseif(isset(self::$_coreClasses[$className])) 406 include(YII_PATH.self::$_coreClasses[$className]); 407 elseif($classMapOnly) 408 return false; 409 else 410 { 411 // include class file relying on include_path |
#1 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/base/CComponent.php(158): YiiBase::autoload("CList") 153 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 154 { 155 // duplicating getEventHandlers() here for performance 156 $name=strtolower($name); 157 if(!isset($this->_e[$name])) 158 $this->_e[$name]=new CList; 159 return $this->_e[$name]->add($value); 160 } 161 elseif(is_array($this->_m)) 162 { 163 foreach($this->_m as $object) |
#2 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/base/CModule.php(520): CComponent->__set("onbeginrequest", array("ModuleLoader", "loadModules")) 515 public function configure($config) 516 { 517 if(is_array($config)) 518 { 519 foreach($config as $key=>$value) 520 $this->$key=$value; 521 } 522 } 523 524 /** 525 * Loads static application components. |
#3 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/base/CApplication.php(166): CModule->configure(array("name" => "Abhinav Software - Epaper CMS", "defaultController" => "main", "preload" => array("log"), "onBeginRequest" => array("ModuleLoader", "loadModules"), ...)) 161 $this->preinit(); 162 163 $this->initSystemHandlers(); 164 $this->registerCoreComponents(); 165 166 $this->configure($config); 167 $this->attachBehaviors($this->behaviors); 168 $this->preloadComponents(); 169 170 $this->init(); 171 } |
#4 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/YiiBase.php(125): CApplication->__construct(array("name" => "Abhinav Software - Epaper CMS", "defaultController" => "main", "preload" => array("log"), "onBeginRequest" => array("ModuleLoader", "loadModules"), ...)) 120 * to the constructor of the application class. 121 * @return mixed the application instance 122 */ 123 public static function createApplication($class,$config=null) 124 { 125 return new $class($config); 126 } 127 128 /** 129 * Returns the application singleton or null if the singleton has not been created yet. 130 * @return CApplication the application singleton, null if the singleton has not been created yet. |
#5 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/framework/YiiBase.php(98): YiiBase::createApplication("CWebApplication", "/home/dainikba/epaper.dainikbanglarnabokantha.com/protected/conf...") 093 * If not, the directory will be defaulted to 'protected'. 094 * @return CWebApplication 095 */ 096 public static function createWebApplication($config=null) 097 { 098 return self::createApplication('CWebApplication',$config); 099 } 100 101 /** 102 * Creates a console application instance. 103 * @param mixed $config application configuration. |
#6 |
+
–
/home/dainikba/epaper.dainikbanglarnabokantha.com/index.php(22): YiiBase::createWebApplication("/home/dainikba/epaper.dainikbanglarnabokantha.com/protected/conf...") 17 defined('YII_DEBUG') or define('YII_DEBUG',true); 18 // specify how many levels of call stack should be shown in each log message 19 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 20 21 require_once($yii); 22 Yii::createWebApplication($config)->run(); 23 |