* @return mixed */ public function load() { // load the constants from the manifest if ($this->extension->getId() != "generis") { foreach ($this->extension->getConstants() as $key => $value) { if (!defined($key) && !is_array($value)) { define($key, $value); } } } } }