Kohana v3.3.2

This commit is contained in:
Deon George
2014-09-06 23:43:07 +10:00
parent f96694b18f
commit 8888719653
236 changed files with 1685 additions and 996 deletions

View File

@@ -9,7 +9,7 @@
* @copyright (c) 2009-2012 Kohana Team
* @license http://kohanaframework.org/license
*/
class Kohana_Config_File extends Kohana_Config_File_Reader
class Kohana_Config_File extends Kohana_Config_File_Reader
{
// @see Kohana_Config_File_Reader
}

View File

@@ -1,4 +1,4 @@
<?php
<?php defined('SYSPATH') OR die('No direct script access.');
/**
* File-based configuration reader. Multiple configuration directories can be
* used by attaching multiple instances of this class to [Kohana_Config].
@@ -53,4 +53,4 @@ class Kohana_Config_File_Reader implements Kohana_Config_Reader {
return $config;
}
} // End Kohana_Config
}

View File

@@ -4,15 +4,15 @@
* The group wrapper acts as an interface to all the config directives
* gathered from across the system.
*
* This is the object returned from Kohana_Config::load
* This is the object returned from Kohana_Config::load
*
* Any modifications to configuration items should be done through an instance of this object
*
* @package Kohana
* @category Configuration
* @author Kohana Team
* @copyright (c) 2012 Kohana Team
* @license http://kohanaphp.com/license
* @copyright (c) 2012-2014 Kohana Team
* @license http://kohanaframework.org/license
*/
class Kohana_Config_Group extends ArrayObject {
@@ -31,7 +31,7 @@ class Kohana_Config_Group extends ArrayObject {
protected $_group_name = '';
/**
* Constructs the group object. Kohana_Config passes the config group
* Constructs the group object. Kohana_Config passes the config group
* and its config items to the object here.
*
* @param Kohana_Config $instance "Owning" instance of Kohana_Config
@@ -77,7 +77,7 @@ class Kohana_Config_Group extends ArrayObject {
{
return $this->_group_name;
}
/**
* Get a variable from the configuration or return the default value.
*
@@ -110,7 +110,7 @@ class Kohana_Config_Group extends ArrayObject {
/**
* Overrides ArrayObject::offsetSet()
* This method is called when config is changed via
* This method is called when config is changed via
*
* $config->var = 'asd';
*
@@ -127,4 +127,5 @@ class Kohana_Config_Group extends ArrayObject {
return parent::offsetSet($key, $value);
}
}

View File

@@ -11,9 +11,9 @@
*/
interface Kohana_Config_Reader extends Kohana_Config_Source
{
/**
* Tries to load the specificed configuration group
* Tries to load the specified configuration group
*
* Returns FALSE if group does not exist or an array if it does
*
@@ -21,5 +21,5 @@ interface Kohana_Config_Reader extends Kohana_Config_Source
* @return boolean|array
*/
public function load($group);
}

View File

@@ -7,8 +7,8 @@
* @package Kohana
* @category Configuration
* @author Kohana Team
* @copyright (c) 2012 Kohana Team
* @license http://kohanaphp.com/license
* @copyright (c) 2012-2014 Kohana Team
* @license http://kohanaframework.org/license
*/
interface Kohana_Config_Source {}

View File

@@ -3,19 +3,19 @@
/**
* Interface for config writers
*
* Specifies the methods that a config writer must implement
*
* Specifies the methods that a config writer must implement
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2012 Kohana Team
* @license http://kohanaphp.com/license
* @copyright (c) 2008-2014 Kohana Team
* @license http://kohanaframework.org/license
*/
interface Kohana_Config_Writer extends Kohana_Config_Source
{
/**
* Writes the passed config for $group
*
* Returns chainable instance on success or throws
* Returns chainable instance on success or throws
* Kohana_Config_Exception on failure
*
* @param string $group The config group
@@ -24,4 +24,5 @@ interface Kohana_Config_Writer extends Kohana_Config_Source
* @return boolean
*/
public function write($group, $key, $config);
}