%PDF- %PDF-
Direktori : /home/lightco1/luminero.com.au/administrator/components/com_pagebuilder/ |
Current File : /home/lightco1/luminero.com.au/administrator/components/com_pagebuilder/subinstall.php |
<?php /** * @version $Id$ * @package JSN_PageBuilder * @author JoomlaShine Team <support@joomlashine.com> * @copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved. * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html * * Websites: http://www.joomlashine.com * Technical Support: Feedback - http://www.joomlashine.com/contact-us/get-support.html */ // No direct access to this file. defined('_JEXEC') || die('Restricted access'); // Get path to JSN Installer class file is_readable($base = dirname(__FILE__) . '/admin/jsninstaller.php') OR is_readable($base = dirname(__FILE__) . '/jsninstaller.php') OR is_readable($base = JPATH_COMPONENT_ADMINISTRATOR . '/jsninstaller.php') OR $base = null; if ( ! empty($base)) { require_once $base; } /** * Class for finalizing JSN Sample installation. * * @package JSN_PageBuilder * @since 1.0.0 */ class Com_PagebuilderInstallerScript extends JSNInstallerScript { public function postflight($type, $parent){ parent::postflight($type, $parent); $db = JFactory::getDbo(); $query = $db->getQuery(true); $query->update('#__extensions'); $query->set('enabled = 1'); $query->where("folder = 'pagebuilder'"); $db->setQuery($query); $db->execute(); } }