%PDF- %PDF-
| Direktori : /home/lightco1/www/lightcolab.com/plugins/system/jqueryeasy/ |
| Current File : /home/lightco1/www/lightcolab.com/plugins/system/jqueryeasy/installer.php |
<?php
/**
* @copyright Copyright (C) 2012 - 2013 Qubesys Technologies Pvt.Ltd. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
// 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 ' <dd>ADDED: restriction on jQuery UI CSS file paths</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) {
}
}
?>