/
home
/
assocoweys
/
avexp
/
plugins
/
editors
/
jckeditor
/
jckeditor
/
includes
/
ckeditor
/
plugins
/
filebrowser
/
Upload File
HOME
<?php /*------------------------------------------------------------------------ # Copyright (C) 2005-2012 WebxSolution Ltd. All Rights Reserved. # @license - GPLv2.0 # Author: WebxSolution Ltd # Websites: http://www.webxsolution.com # Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use # ------------------------------------------------------------------------*/ defined( '_JEXEC' ) or die( 'Restricted access' ); jimport('joomla.event.plugin'); class plgFilebrowserSimpleImageGallery extends JPlugin { function plgFilebrowserSimpleImageGallery(& $subject, $config) { parent::__construct($subject, $config); } function beforeSetFilePath(&$params) { $plugin = JPluginHelper::getPlugin('content','jw_sigpro'); if(empty($plugin)) $plugin = JPluginHelper::getPlugin('content','jw_sig'); if(empty($plugin)) $plugin = JPluginHelper::getPlugin('content','jw_simpleImageGallery'); if(empty($plugin) && !isset($plugin->params)) return; $sigParams = $plugin->params; $component = JComponentHelper::getComponent('com_sigpro',true); if($component->enabled) $sigParams = $sigParams->params; $sigParams = new JRegistry($sigParams); $pathOverride = $sigParams->get('galleries_rootfolder','images'); $pathOverride = preg_replace('/(^\/|\/$)/','',$pathOverride); //now set filepath $params->set('imagePath',$pathOverride); } }