%PDF- %PDF-
Direktori : /home/lightco1/www/lightingrepublic.com.au/plugins/system/jqueryeasy/ |
Current File : /home/lightco1/www/lightingrepublic.com.au/plugins/system/jqueryeasy/installer.php |
<?php /** * @copyright Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or die; /** * Script file of the jQuery Easy plugin */ class plgsystemjqueryeasyInstallerScript { /** * Called before an install/update/uninstall method * * @param string $route Which action is happening (install|uninstall|discover_install) * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function preflight($type, $parent) { } /** * Called after an install/update/uninstall method * * @param string $route Which action is happening (install|uninstall|discover_install) * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function postflight($type, $parent) { echo '<dl>'; echo ' <dt>Change log</dt>'; echo ' <dd>ADDED: Dutch translation</dd>'; echo '</dl>'; return true; } /** * Called on installation * * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function install($parent) { } /** * Called on update * * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function update($parent) { } /** * Called on uninstallation * * @param JAdapterInstance $adapter The object responsible for running this script */ public function uninstall($parent) { } } ?>