name = $meta_info['name']; $this->entrypoint = $meta_info['entrypoint']; $this->path = $meta_info['path']; $this->author = isset($meta_info['author']) ? $meta_info['author'] : ''; $this->description = isset($meta_info['description']) ? $meta_info['description'] : ''; $this->version = isset($meta_info['version']) ? $meta_info['version'] : '0.1'; $this->setType(isset($meta_info['type']) ? $meta_info['type'] : 'user'); $this->is_enabled = false; } /** * Used when installing an extension (e.g. update the database scheme). * * It must be redefined by child classes. */ public function install() {} /** * Used when uninstalling an extension (e.g. revert the database scheme to * cancel changes from install). * * It must be redefined by child classes. */ public function uninstall() {} /** * Call at the initialization of the extension (i.e. when the extension is * enabled by the extension manager). * * It must be redefined by child classes. */ public function init() {} /** * Set the current extension to enable. */ public function enable() { $this->is_enabled = true; } /** * Return if the extension is currently enabled. * * @return true if extension is enabled, false else. */ public function is_enabled() { return $this->is_enabled; } /** * Getters and setters. */ public function getName() { return $this->name; } public function getEntrypoint() { return $this->entrypoint; } public function getPath() { return $this->path; } public function getAuthor() { return $this->author; } public function getDescription() { return $this->description; } public function getVersion() { return $this->version; } public function getType() { return $this->type; } private function setType($type) { if (!in_array($type, self::$authorized_types)) { throw new Minz_ExtensionException('invalid `type` info', $this->name); } $this->type = $type; } /** * Return the url for a given file. * * @param $filename name of the file to serve. * @param $type the type (js or css) of the file to serve. * @return the url corresponding to the file. */ public function getFileUrl($filename, $type) { $dir = end(explode('/', $this->path)); $file_name_url = urlencode($dir . '/static/' . $filename); $absolute_path = $this->path . '/static/' . $filename; $mtime = @filemtime($absolute_path); $url = '/ext.php?f=' . $file_name_url . '&t=' . $type . '&' . $mtime; return Minz_Url::display($url); } /** * Register a controller in the Dispatcher. * * @param @base_name the base name of the controller. Final name will be: * FreshExtension__Controller. */ public function registerController($base_name) { Minz_Dispatcher::registerController($base_name, $this->path); } /** * Register the views in order to be accessible by the application. */ public function registerViews() { Minz_View::addBasePathname($this->path); } }