mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
829135a85a
API Broke out Injectable, Configurable, and Extensible from Object into traits BUG Fix missing extraDataObjects in tests
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Framework\Core;
|
|
|
|
use ClassInfo;
|
|
use Config;
|
|
use Extension;
|
|
use Injector;
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
}
|