MightySites (AlterBrains, com 3.2.5 / plg 2.1.5); subscription-only, no public download -> deployed files. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
24 lines
691 B
PHP
24 lines
691 B
PHP
<?php
|
|
/**
|
|
* @package MightySites
|
|
* @copyright Copyright (C) 2009-2013 AlterBrains.com. All rights reserved.
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
|
*/
|
|
|
|
defined('JPATH_BASE') or die;
|
|
|
|
class plgSystemMightysitesInstallerScript {
|
|
|
|
function install($parent) {
|
|
JFactory::getApplication()->enqueueMessage(JText::_('Successfully installed "System - MightySites" plugin!'));
|
|
}
|
|
|
|
function uninstall($parent) {
|
|
JFactory::getApplication()->enqueueMessage(JText::_('Successfully uninstalled "System - MightySites" plugin!'));
|
|
}
|
|
|
|
function update($parent) {
|
|
JFactory::getApplication()->enqueueMessage(JText::_('Successfully updated "System - MightySites" plugin!'));
|
|
}
|
|
|
|
} |