芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/resupres/system/classes/kohana/config.php
attach($reader); // Try first * $config->attach($reader, FALSE); // Try last * * @param object Config_Reader instance * @param boolean add the reader as the first used object * @return $this */ public function attach(Config_Reader $reader, $first = TRUE) { if ($first === TRUE) { // Place the log reader at the top of the stack array_unshift($this->_readers, $reader); } else { // Place the reader at the bottom of the stack $this->_readers[] = $reader; } return $this; } /** * Detach a configuration reader. * * $config->detach($reader); * * @param object Config_Reader instance * @return $this */ public function detach(Config_Reader $reader) { if (($key = array_search($reader, $this->_readers)) !== FALSE) { // Remove the writer unset($this->_readers[$key]); } return $this; } /** * Load a configuration group. Searches the readers in order until the * group is found. If the group does not exist, an empty configuration * array will be loaded using the first reader. * * $array = $config->load($name); * * @param string configuration group name * @return Config_Reader * @throws Kohana_Exception */ public function load($group) { foreach ($this->_readers as $reader) { if ($config = $reader->load($group)) { // Found a reader for this configuration group return $config; } } // Reset the iterator reset($this->_readers); if ( ! is_object($config = current($this->_readers))) { throw new Kohana_Exception('No configuration readers attached'); } // Load the reader as an empty array return $config->load($group, array()); } /** * Copy one configuration group to all of the other readers. * * $config->copy($name); * * @param string configuration group name * @return $this */ public function copy($group) { // Load the configuration group $config = $this->load($group); foreach ($this->_readers as $reader) { if ($config instanceof $reader) { // Do not copy the config to the same group continue; } // Load the configuration object $object = $reader->load($group, array()); foreach ($config as $key => $value) { // Copy each value in the config $object->offsetSet($key, $value); } } return $this; } } // End Kohana_Config