/mnt/web410/e0/70/545781970/htdocs/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 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/YiiBase.php(403): include("/mnt/web410/e0/70/545781970/htdocs/framework/collections/CMap.ph...") 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 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/collections/CAttributeCollection.php(31): YiiBase::autoload("CMap") 26 * 27 * @author Qiang Xue <qiang.xue@gmail.com> 28 * @package system.collections 29 * @since 1.0 30 */ 31 class CAttributeCollection extends CMap 32 { 33 /** 34 * @var boolean whether the keys are case-sensitive. Defaults to false. 35 */ 36 public $caseSensitive=false; |
#2 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/YiiBase.php(403): include("/mnt/web410/e0/70/545781970/htdocs/framework/collections/CAttrib...") 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 { |
#3 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/base/CModule.php(178): YiiBase::autoload("CAttributeCollection") 173 { 174 if($this->_params!==null) 175 return $this->_params; 176 else 177 { 178 $this->_params=new CAttributeCollection; 179 $this->_params->caseSensitive=true; 180 return $this->_params; 181 } 182 } 183 |
#4 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/base/CModule.php(190): CModule->getParams() 185 * Sets user-defined parameters. 186 * @param array $value user-defined parameters. This should be in name-value pairs. 187 */ 188 public function setParams($value) 189 { 190 $params=$this->getParams(); 191 foreach($value as $k=>$v) 192 $params->add($k,$v); 193 } 194 195 /** |
#5 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/base/CComponent.php(152): CModule->setParams(array("version" => "1.0", "baseUrl" => "")) 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])) |
#6 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/base/CModule.php(513): CComponent->__set("params", array("version" => "1.0", "baseUrl" => "")) 508 public function configure($config) 509 { 510 if(is_array($config)) 511 { 512 foreach($config as $key=>$value) 513 $this->$key=$value; 514 } 515 } 516 517 /** 518 * Loads static application components. |
#7 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/base/CApplication.php(161): CModule->configure(array("params" => array("version" => "1.0", "baseUrl" => ""), "name" => "Pusan-Zaunbau", "defaultController" => "site", "theme" => "backend", ...)) 156 $this->preinit(); 157 158 $this->initSystemHandlers(); 159 $this->registerCoreComponents(); 160 161 $this->configure($config); 162 $this->attachBehaviors($this->behaviors); 163 $this->preloadComponents(); 164 165 $this->init(); 166 } |
#8 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/YiiBase.php(125): CApplication->__construct(array("params" => array("version" => "1.0", "baseUrl" => ""), "name" => "Pusan-Zaunbau", "defaultController" => "site", "theme" => "backend", ...)) 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. |
#9 |
+
–
/mnt/web410/e0/70/545781970/htdocs/framework/YiiBase.php(98): YiiBase::createApplication("CWebApplication", array("params" => array("version" => "1.0", "baseUrl" => ""), "name" => "Pusan-Zaunbau", "defaultController" => "site", "theme" => "backend", ...)) 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. |
#10 |
+
–
/mnt/web410/e0/70/545781970/htdocs/index.php(10): YiiBase::createWebApplication(array("params" => array("version" => "1.0", "baseUrl" => ""), "name" => "Pusan-Zaunbau", "defaultController" => "site", "theme" => "backend", ...)) 05 <?php 06 session_start(); 07 defined('YII_DEBUG') or define('YII_DEBUG', true); 08 require_once(dirname(__FILE__) . '/framework/yii.php'); 09 $config = require(dirname(__FILE__) . '/protected/config/main.php'); 10 $app = Yii::createWebApplication($config); 11 12 13 14 15 $app->run(); |