%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/administrator/components/com_sigpro/views/info/ |
Upload File : |
<?php /** * @version $Id: view.html.php 3161 2013-06-03 16:53:25Z lefteris.kavadas $ * @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 ; class SigProViewInfo extends SigProView { public function display($tpl = null) { $info = array(); if (version_compare(JVERSION, '1.6.0', 'ge')) { $info['plg_content_sigpro'] = JFile::exists(JPATH_PLUGINS.'/content/jw_sigpro/jw_sigpro.php'); $info['plg_k2_sigpro'] = JFile::exists(JPATH_PLUGINS.'/k2/jw_sigpro/jw_sigpro.php'); $info['plg_editors-xtd_sigpro'] = JFile::exists(JPATH_PLUGINS.'/editors-xtd/jw_sigpro/jw_sigpro.php'); } else { $info['plg_content_sigpro'] = JFile::exists(JPATH_PLUGINS.'/content/jw_sigpro.php'); $info['plg_k2_sigpro'] = JFile::exists(JPATH_PLUGINS.'/k2/jw_sigpro.php'); $info['plg_editors-xtd_sigpro'] = JFile::exists(JPATH_PLUGINS.'/editors-xtd/jw_sigpro.php'); } $info['plg_content_sigpro_enabled'] = JPluginHelper::isEnabled('content', 'jw_sigpro'); $info['plg_k2_sigpro_enabled'] = JPluginHelper::isEnabled('k2', 'jw_sigpro'); $info['plg_editors-xtd_sigpro_enabled'] = JPluginHelper::isEnabled('editors-xtd', 'jw_sigpro'); $info['php'] = phpversion(); if (extension_loaded('gd')) { $gdinfo = gd_info(); $info['gd'] = $gdinfo["GD Version"]; } else { $info['gd'] = false; } $info['upload'] = ini_get('upload_max_filesize'); $info['memory'] = ini_get('memory_limit'); $info['permissions'] = array(); $info['permissions']['cache'] = is_writable(JPATH_SITE.'/cache'); if (file_exists(JPATH_SITE.'/cache/jw_sigpro')) { $info['permissions']['cache/jw_sigpro'] = is_writable(JPATH_SITE.'/cache/jw_sigpro'); } if (file_exists(JPATH_SITE.'/media/jw_sigpro/users')) { $info['permissions']['media/jw_sigpro/users'] = is_writable(JPATH_SITE.'/media/jw_sigpro/users'); } $params = JComponentHelper::getParams('com_sigpro'); if (version_compare(JVERSION, '1.6.0', 'ge')) { $defaultImagePath = 'images'; } else { $defaultImagePath = 'images/stories'; } $path = $params->get('galleries_rootfolder', $defaultImagePath); if ($path) { $info['permissions'][$path] = is_writable(SigProHelper::getPath('site')); } $K2Path = SigProHelper::getPath('k2'); if (JFolder::exists($K2Path)) { $info['permissions']['media/k2/galleries'] = is_writable($K2Path); } $this->assignRef('info', $info); parent::display($tpl); } }