Your IP : 216.73.217.17


Current Path : /home/poliximo/public_html/plugins/system/yootheme/
Upload File :
Current File : /home/poliximo/public_html/plugins/system/yootheme/script.php

<?php

defined('_JEXEC') or die;

class plgSystemYOOthemeInstallerScript
{
    public function install($parent) {}

    public function uninstall($parent) {}

    public function update($parent) {}

    public function preflight($type, $parent) {}

    public function postflight($type, $parent) {

        if (in_array($type, ['install', 'update'])) {
            JFactory::getDBO()->setQuery(
                "UPDATE #__extensions SET "
                .($type == 'install' ? "enabled = 1, " : "")
                ."ordering = 0 WHERE type = 'plugin' AND folder = 'system' AND element = 'yootheme'"
            )->execute();
        }

    }
}