silverstripe-framework/src/Core/Config/Configurable.php

56 lines
1.3 KiB
PHP
Raw Normal View History

<?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.
*/
2016-11-29 00:31:16 +01:00
trait Configurable
{
2016-11-29 00:31:16 +01:00
/**
* 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());
}
2016-11-29 00:31:16 +01:00
/**
* 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);
}
2016-11-29 00:31:16 +01:00
/**
* 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);
}
2016-11-29 00:31:16 +01:00
/**
* 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);
}
}