/home/almajaliss/public_html/protected/vendor/yii24/framework/collections/CMap.php(81)
69 * @param boolean $value whether this list is read-only or not 70 */ 71 protected function setReadOnly($value) 72 { 73 $this->_r=$value; 74 } 75 76 /** 77 * Returns an iterator for traversing the items in the list. 78 * This method is required by the interface IteratorAggregate. 79 * @return CMapIterator an iterator for traversing the items in the list. 80 */ 81 public function getIterator() 82 { 83 return new CMapIterator($this->_d); 84 } 85 86 /** 87 * Returns the number of items in the map. 88 * This method is required by Countable interface. 89 * @return integer number of items in the map. 90 */ 91 public function count() 92 { 93 return $this->getCount();
#0 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/YiiBase.php(437): include("/home/almajaliss/public_html/protected/vendor/yii24/framework/co...") 432 433 // use include so that the error PHP file may appear 434 if(isset(self::$classMap[$className])) 435 include(self::$classMap[$className]); 436 elseif(isset(self::$_coreClasses[$className])) 437 include(YII_PATH.self::$_coreClasses[$className]); 438 elseif($classMapOnly) 439 return false; 440 else 441 { 442 // include class file relying on include_path |
#1 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/base/CModule.php(453): YiiBase::autoload("CMap") 448 $this->_componentConfig[$id]=$component; //we should ignore merge here 449 return; 450 } 451 452 if(isset($this->_componentConfig[$id]) && $merge) 453 $this->_componentConfig[$id]=CMap::mergeArray($this->_componentConfig[$id],$component); 454 else 455 $this->_componentConfig[$id]=$component; 456 } 457 458 /** |
#2 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/base/CModule.php(508): CModule->setComponent("assetManager", array("newDirMode" => 755), true) 503 * will be merged with the new configuration. If false, the existing configuration will be replaced completely. 504 */ 505 public function setComponents($components,$merge=true) 506 { 507 foreach($components as $id=>$component) 508 $this->setComponent($id,$component,$merge); 509 } 510 511 /** 512 * Configures the module with the specified configuration. 513 * @param array $config the configuration array |
#3 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/base/CComponent.php(152): CModule->setComponents(array("assetManager" => array("newDirMode" => 755), "geoip" => array("class" => "application.extensions.geoip.CGeoIP", "filename" => "/home/almajaliss/public_html/protected/config/../extensions/geoi...", "mode" => "STANDARD"), "image" => array("class" => "application.extensions.image.CImageComponent", "driver" => "GD"), "bootstrap" => array("class" => "bootstrap.components.TbApi"), ...)) 147 */ 148 public function __set($name,$value) 149 { 150 $setter='set'.$name; 151 if(method_exists($this,$setter)) 152 return $this->$setter($value); 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])) |
#4 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/base/CModule.php(520): CComponent->__set("components", array("assetManager" => array("newDirMode" => 755), "geoip" => array("class" => "application.extensions.geoip.CGeoIP", "filename" => "/home/almajaliss/public_html/protected/config/../extensions/geoi...", "mode" => "STANDARD"), "image" => array("class" => "application.extensions.image.CImageComponent", "driver" => "GD"), "bootstrap" => array("class" => "bootstrap.components.TbApi"), ...)) 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. |
#5 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/base/CApplication.php(166): CModule->configure(array("name" => "FlexCMS", "preload" => array("log", "options"), "sourceLanguage" => "en_us", "import" => array("application.models.*", "application.components.*", "application.controllers.questionnaire.*", "application.modules.admin.components.*", ...), ...)) 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 } |
#6 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/YiiBase.php(132): CApplication->__construct(array("name" => "FlexCMS", "preload" => array("log", "options"), "sourceLanguage" => "en_us", "import" => array("application.models.*", "application.components.*", "application.controllers.questionnaire.*", "application.modules.admin.components.*", ...), ...)) 127 * to the constructor of the application class. 128 * @return mixed the application instance 129 */ 130 public static function createApplication($class,$config=null) 131 { 132 return new $class($config); 133 } 134 135 /** 136 * Returns the application singleton or null if the singleton has not been created yet. 137 * @return CApplication the application singleton, null if the singleton has not been created yet. |
#7 |
+
–
/home/almajaliss/public_html/protected/vendor/yii24/framework/YiiBase.php(105): YiiBase::createApplication("CWebApplication", "/home/almajaliss/public_html/protected/config/main.php") 100 * If not, the directory will be defaulted to 'protected'. 101 * @return CWebApplication 102 */ 103 public static function createWebApplication($config=null) 104 { 105 return self::createApplication('CWebApplication',$config); 106 } 107 108 /** 109 * Creates a console application instance. 110 * @param mixed $config application configuration. |
#8 |
+
–
/home/almajaliss/public_html/index.php(293): YiiBase::createWebApplication("/home/almajaliss/public_html/protected/config/main.php") 288 defined('YII_DEBUG') or define('YII_DEBUG', true); 289 // specify how many levels of call stack should be shown in each log message 290 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 291 292 require_once($yii); 293 Yii::createWebApplication($config)->run(); 294 //echo '<pre dir="ltr">', var_dump(microtime(true) - $start), '</pre>'; |