themeCore = greyDragonCore::Instance(GDTHEME_VERSION); } /** * Plugin installation */ function install($plugin_version, &$errors=array()) { $this->themeCore->update("0.0", $plugin_version); } /** * Plugin (auto)update */ function update($old_version, $new_version, &$errors=array()) { $this->themeCore->update($old_version, $new_version); } /** * Plugin uninstallation */ function uninstall() { $this->themeCore->uninstall(); } }