www_archline_hu/deployed/mightysites/plugins/system/mightysites/mightysites.script.php
LÁZÁR Imre AI Agent 0e2d7a7410 feat(deployed): add MightySites (no-source, vetted live)
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
2026-07-16 11:24:44 +02:00

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!'));
}
}