/home2/usrimmeublesmt01/framework/yii-1.1.14/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 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/YiiBase.php(403): include("/home2/usrimmeublesmt01/framework/yii-1.1.14/collections/CList.p...") 398 { 399 // use include so that the error PHP file may appear 400 if(isset(self::$classMap[$className])) 401 include(self::$classMap[$className]); 402 elseif(isset(self::$_coreClasses[$className])) 403 include(YII_PATH.self::$_coreClasses[$className]); 404 else 405 { 406 // include class file relying on include_path 407 if(strpos($className,'\\')===false) // class without namespace 408 { |
#1 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/base/CComponent.php(474): YiiBase::autoload("CList") 469 { 470 if($this->hasEvent($name)) 471 { 472 $name=strtolower($name); 473 if(!isset($this->_e[$name])) 474 $this->_e[$name]=new CList; 475 return $this->_e[$name]; 476 } 477 else 478 throw new CException(Yii::t('yii','Event "{class}.{event}" is not defined.', 479 array('{class}'=>get_class($this), '{event}'=>$name))); |
#2 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/base/CComponent.php(516): CComponent->getEventHandlers("onflush") 511 * @throws CException if the event is not defined 512 * @see detachEventHandler 513 */ 514 public function attachEventHandler($name,$handler) 515 { 516 $this->getEventHandlers($name)->add($handler); 517 } 518 519 /** 520 * Detaches an existing event handler. 521 * This method is the opposite of {@link attachEventHandler}. |
#3 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/logging/CLogRouter.php(69): CComponent->attachEventHandler("onFlush", array(CLogRouter, "collectLogs")) 64 { 65 $route=Yii::createComponent($route); 66 $route->init(); 67 $this->_routes[$name]=$route; 68 } 69 Yii::getLogger()->attachEventHandler('onFlush',array($this,'collectLogs')); 70 Yii::app()->attachEventHandler('onEndRequest',array($this,'processLogs')); 71 } 72 73 /** 74 * @return array the currently initialized routes |
#4 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/base/CModule.php(387): CLogRouter->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 |
#5 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/base/CModule.php(523): CModule->getComponent("log") 518 * Loads static application components. 519 */ 520 protected function preloadComponents() 521 { 522 foreach($this->preload as $id) 523 $this->getComponent($id); 524 } 525 526 /** 527 * Preinitializes the module. 528 * This method is called at the beginning of the module constructor. |
#6 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/base/CApplication.php(163): CModule->preloadComponents() 158 $this->initSystemHandlers(); 159 $this->registerCoreComponents(); 160 161 $this->configure($config); 162 $this->attachBehaviors($this->behaviors); 163 $this->preloadComponents(); 164 165 $this->init(); 166 } 167 168 |
#7 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/YiiBase.php(125): CApplication->__construct(array("name" => "Les immeubles mon toit - Agence immobilière", "sourceLanguage" => "fr", "language" => "fr", "defaultController" => "page", ...)) 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. |
#8 |
+
–
/home2/usrimmeublesmt01/framework/yii-1.1.14/YiiBase.php(98): YiiBase::createApplication("CWebApplication", array("basePath" => "/home2/usrimmeublesmt01/public_html/protected/config/..", "name" => "Les immeubles mon toit - Agence immobilière", "sourceLanguage" => "fr", "language" => "fr", ...)) 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. |
#9 |
+
–
/home2/usrimmeublesmt01/public_html/index.php(59): YiiBase::createWebApplication(array("basePath" => "/home2/usrimmeublesmt01/public_html/protected/config/..", "name" => "Les immeubles mon toit - Agence immobilière", "sourceLanguage" => "fr", "language" => "fr", ...)) 54 55 //merger les configs du core avec les configs de l'application 56 $config = CMap::mergeArray(require($config),require(dirname(__FILE__).'/protected/config/'.$config2.'.php')); 57 58 59 Yii::createWebApplication($config)->run(); |