Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/andreassugianto.com/public_html/plugins/k2/jw_sigpro/ |
Upload File : |
<?php /** * @version $Id: jw_sigpro.php 2725 2013-04-06 17:05:49Z joomlaworks $ * @package Simple Image Gallery Pro * @author JoomlaWorks - http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved. * @license http://www.joomlaworks.net/license */ // no direct access defined('_JEXEC') or die ; JLoader::register('K2Plugin', JPATH_ADMINISTRATOR.'/components/com_k2/lib/k2plugin.php'); class plgK2Jw_SigPro extends K2Plugin { public function __construct(&$subject, $config) { parent::__construct($subject, $config); $this->pluginName = 'jw_sigpro'; $this->loadLanguage(); } function onAfterK2Save(&$item, $isNew) { jimport('joomla.filesystem.folder'); JLoader::register('SigProHelper', JPATH_ADMINISTRATOR.'/components/com_sigpro/helper.php'); $path = SigProHelper::getPath('k2'); $folder = JRequest::getCmd('sigProFolder'); if ($isNew && $folder && $folder != $item->id && JFolder::exists($path.'/'.$folder)) { JFolder::move($path.'/'.$folder, $path.'/'.$item->id); } if (JFolder::exists($path.'/'.$item->id) && $item->gallery == null) { $item->gallery = '{gallery}'.$item->id.'{/gallery}'; $item->store(); } } }