Current File : /home/pacjaorg/public_html/kmm/plugins/djclassifieds/leaflet/script.leaflet.php |
<?php
/**
* @package DJ-Classifieds
* @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
*/
defined ( '_JEXEC' ) or die ( 'Restricted access' );
class plgDjclassifiedsLeafletInstallerScript
{
function postflight($type, $parent)
{
if($type == 'install' || $type == 'update'){
$db = JFactory::getDBO();
$query = "UPDATE #__extensions SET enabled=1 WHERE type='plugin' AND folder='djclassifieds' AND element='leaflet'";
$db->setQuery($query);
$db->execute();
}
}
}