File Manager

Current Directory: /home/astoriaah/www/plugins/system/widgetkit_k2
Viewing File: /home/astoriaah/www/plugins/system/widgetkit_k2/script.php
<?php defined('_JEXEC') or die; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Factory; class plgSystemWidgetkit_k2InstallerScript { public function install($parent) { // enable plugin only if K2 installed and enabled if (file_exists(JPATH_ADMINISTRATOR . '/components/com_k2/k2.xml') && ComponentHelper::getComponent('com_k2', true)->enabled) { Factory::getDBO()->setQuery("UPDATE `#__extensions` SET `enabled` = 1 WHERE `type` = 'plugin' AND `element` = 'widgetkit_k2'")->execute(); } } public function uninstall($parent) {} public function update($parent) {} public function preflight($type, $parent) {} public function postflight($type, $parent) {} }