mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Config;
|
|
|
|
/**
|
|
* Provides extensions to this object to integrate it with standard config API methods.
|
|
*
|
|
* Note that all classes can have configuration applied to it, regardless of whether it
|
|
* uses this trait.
|
|
*/
|
|
trait Configurable {
|
|
|
|
/**
|
|
* Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).
|
|
* @return Config_ForClass
|
|
*/
|
|
public static function config() {
|
|
return Config::inst()->forClass(get_called_class());
|
|
}
|
|
|
|
/**
|
|
* Gets the first set value for the given config option
|
|
*
|
|
* @param string $name
|
|
* @return mixed
|
|
*/
|
|
public function stat($name) {
|
|
return Config::inst()->get(get_class($this), $name, Config::FIRST_SET);
|
|
}
|
|
|
|
/**
|
|
* Update the config value for a given property
|
|
*
|
|
* @param string $name
|
|
* @param mixed $value
|
|
*/
|
|
public function set_stat($name, $value) {
|
|
Config::inst()->update(get_class($this), $name, $value);
|
|
}
|
|
|
|
/**
|
|
* Gets the uninherited value for the given config option
|
|
*
|
|
* @param string $name
|
|
* @return mixed
|
|
*/
|
|
public function uninherited($name) {
|
|
return Config::inst()->get(get_class($this), $name, Config::UNINHERITED);
|
|
}
|
|
}
|