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); } }