namespace = $namespace; $this->postfix = $postfix; } /** * Get the FQN of a plugin * * @param string $name Name of the plugin * * @return string */ protected function getFqn($name) { return $this->namespace . '\\' . ucfirst($name) . $this->postfix; } public function load($name) { $class = $this->getFqn($name); if (! class_exists($class)) { return false; } return $class; } }