%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_kunena/template/joomla25/plugin/ |
Upload File : |
<?php /** * @package Joomla.Administrator * @subpackage com_plugins * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::addIncludePath(JPATH_ADMINISTRATOR.'/components/com_plugins/helpers/html'); JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); $this->fieldsets = $this->form->getFieldsets('params'); ?> <script type="text/javascript"> Joomla.submitbutton = function(task) { if (task == 'plugin.cancel' || document.formvalidator.isValid(document.id('style-form'))) { Joomla.submitform(task, document.getElementById('style-form')); } } </script> <div id="kunena" class="admin override"> <div class="container-fluid"> <div class="row-fluid"> <div class="span12"> <div id="j-sidebar-container" class="span2"> <div id="sidebar"> <div class="sidebar-nav"><?php include KPATH_ADMIN.'/template/joomla25/common/menu.php'; ?></div> </div> </div> <div id="j-main-container" class="span10"> <form action="<?php echo KunenaRoute::_('administrator/index.php?option=com_kunena&view=plugin&layout=edit&extension_id='.(int) $this->item->extension_id); ?>" method="post" name="adminForm" id="style-form" class="form-validate form-horizontal"> <fieldset> <ul class="nav nav-tabs"> <li class="active"><a href="#details" data-toggle="tab"><?php echo JText::_('JDETAILS');?></a></li> <?php if (count($this->fieldsets)) : ?> <?php foreach ($this->fieldsets as $fieldset) : ?> <?php $label = !empty($fieldset->label) ? JText::_($fieldset->label) : JText::_('COM_PLUGINS_'.$fieldset->name.'_FIELDSET_LABEL');?> <li><a href="#options-<?php echo $fieldset->name; ?>" data-toggle="tab"><?php echo $label ?></a></li> <?php endforeach; ?> <?php endif; ?> </ul> <div class="tab-content"> <div id="details" class="tab-pane active"> <table class="table table-striped"> <thead> <tr> <th width="25%"><?php echo JText::_('COM_KUNENA_TABLEHEAD_TITLE') ?></th> <th><?php echo JText::_('COM_KUNENA_TABLEHEAD_OPTION') ?></th> </tr> </thead> <tbody> <tr> <td> <?php echo $this->form->getLabel('name'); ?> </td> <td> <?php echo $this->form->getInput('name'); ?> <span class="readonly plg-name"><?php echo JText::_($this->item->name);?></span> </td> </tr> <tr> <td> <?php echo $this->form->getLabel('enabled'); ?> </td> <td> <?php echo $this->form->getInput('enabled'); ?> </td> </tr> <tr> <td> <?php echo $this->form->getLabel('access'); ?> </td> <td> <?php echo $this->form->getInput('access'); ?> </td> </tr> <tr> <td> <?php echo $this->form->getLabel('ordering'); ?> </td> <td> <?php echo $this->form->getInput('ordering'); ?> </td> </tr> <tr> <td> <?php echo $this->form->getLabel('folder'); ?> </td> <td> <?php echo $this->form->getInput('folder'); ?> </td> </tr> <tr> <td> <?php echo $this->form->getLabel('element'); ?> </td> <td> <?php echo $this->form->getInput('element'); ?> </td> </tr> <?php if ($this->item->extension_id) : ?> <tr> <td> <?php echo $this->form->getLabel('extension_id'); ?> </td> <td> <?php echo $this->form->getInput('extension_id'); ?> </td> </tr> <?php endif; ?> <!-- Plugin metadata --> <?php if ($this->item->xml) : ?> <?php if (($text = trim($this->item->xml->description))) : ?> <tr> <td> <?php echo JText::_('JGLOBAL_DESCRIPTION'); ?> </td> <td> <?php echo JText::_($text); ?> </td> </tr> <?php endif; ?> <?php else : ?> <div class="alert alert-error"> <?php echo JText::_('COM_PLUGINS_XML_ERR'); ?> </div> <?php endif; ?> </tbody> </table> </div> <?php echo $this->loadTemplate('options'); ?> </div> </fieldset> <input type="hidden" name="task" value="" /> <?php echo JHtml::_('form.token'); ?> </form> </div> <div class="pull-right small"> <?php echo KunenaVersion::getLongVersionHTML (); ?> </div> </div> </div> </div> </div>