/
home
/
assocoweys
/
comite
/
plugins
/
content
/
jce
/
Upload File
HOME
<?php /** * @copyright Copyright (C) 2015 - 2023 Ryan Demmer. All rights reserved * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved * @license GNU General Public License version 2 or later */ defined('JPATH_BASE') or die; use Joomla\CMS\Factory; use Joomla\CMS\Plugin\CMSPlugin; /** * JCE. * * @since 2.5.20 */ class PlgContentJce extends CMSPlugin { public function onContentPrepareForm($form, $data) { Factory::getApplication()->triggerEvent('onPlgSystemJceContentPrepareForm', array($form, $data)); } }