www_archline_hu/deployed/acym/plugins/system/jceacym/jceacym.php
LÁZÁR Imre AI Agent 236e3bf5b6 feat(deployed): add AcyMailing 6.2.0 (no-source, vetted live)
AcyMailing (Acyba); installed 6.2.0 is on an EOL branch, only 7.7.5+ published -> 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

26 lines
616 B
PHP

<?php
/**
* @package AcyMailing for Joomla
* @version 6.2.0
* @author acyba.com
* @copyright (C) 2009-2019 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class plgSystemJceacym extends JPlugin
{
function onBeforeWfEditorRender(&$settings)
{
if (empty($_REQUEST['option']) || $_REQUEST['option'] != 'com_acym') {
return;
}
if (!empty($_REQUEST['acycssfile'])) {
$settings['content_css'] = $_REQUEST['acycssfile'];
}
}
}