%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_k2/views/usergroup/tmpl/ |
Upload File : |
<?php /** * @version 2.6.x * @package K2 * @author JoomlaWorks http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; $document = JFactory::getDocument(); $document->addScriptDeclaration(" Joomla.submitbutton = function(pressbutton){ if (pressbutton == 'cancel') { submitform( pressbutton ); return; } if (\$K2.trim(\$K2('#name').val()) == '') { alert( '".JText::_('K2_GROUP_NAME_CANNOT_BE_EMPTY', true)."' ); } else { submitform( pressbutton ); } } "); ?> <form action="index.php" method="post" name="adminForm" id="adminForm"> <div class="xmlParamsFields"> <table class="admintable table"> <tr> <td class="key"><?php echo JText::_('K2_GROUP_NAME'); ?></td> <td><input class="text_area k2TitleBox" type="text" name="name" id="name" value="<?php echo $this->row->name; ?>" size="50" maxlength="250" /></td> </tr> </table> </div> <div class="xmlParamsFields"> <h2 class="paramHeader"><?php echo JText::_('K2_ASSIGN_PERMISSIONS_FOR_THIS_GROUP'); ?></h2> <?php if(K2_JVERSION == '15'): ?> <?php echo $this->form->render('params'); ?> <?php else: ?> <fieldset class="panelform"> <ul class="adminformlist"> <?php foreach($this->form->getFieldset('user-permissions') as $field): ?> <li> <?php if($field->type=='header'): ?> <div class="paramValueHeader"><?php echo $field->input; ?></div> <?php elseif($field->type=='Spacer'): ?> <div class="paramValueSpacer"> </div> <div class="clr"></div> <?php else: ?> <div class="paramLabel"><?php echo $field->label; ?></div> <div class="paramValue"><?php echo $field->input; ?></div> <div class="clr"></div> <?php endif; ?> </li> <?php endforeach; ?> </ul> </fieldset> <?php endif; ?> </div> <div class="xmlParamsFields"> <h2 class="paramHeader"><?php echo JText::_('K2_ASSIGN_GROUP_PERMISSIONS_TO_THESE_CATEGORIES'); ?></h2> <fieldset class="panelform"> <ul class="adminformlist"> <li> <div class="paramLabel"><?php echo JText::_('K2_FILTER'); ?></div> <div class="paramValue"> <input id="categories-all" type="radio" name="categories" value="all"<?php if($this->categories == 'all') echo ' checked="checked"'; ?> /> <label for="categories-all"><?php echo JText::_('K2_ALL'); ?></label> <input id="categories-none" type="radio" name="categories" value="none"<?php if($this->categories == 'none') echo ' checked="checked"'; ?> /> <label for="categories-none"><?php echo JText::_('K2_NONE'); ?></label> <input id="categories-select" type="radio" name="categories" value="select" <?php if($this->categories != 'all' && $this->categories != 'none') echo ' checked="checked"'; ?> /> <label for="categories-select"><?php echo JText::_('K2_SELECT_FROM_LIST'); ?></label> </div> <div class="clr"></div> </li> <li> <div class="paramLabel"><span class="editlinktip"><label for="paramscategories" id="paramscategories-lbl"><?php echo JText::_('K2_CATEGORIES'); ?></label></span></div> <div class="paramValue"><?php echo $this->lists['categories']; ?></div> <div class="clr"></div> </li> <li> <div class="paramLabel"><span class="editlinktip"><label for="paramsinheritance" id="paramsinheritanceh-lbl"><?php echo JText::_('K2_AUTOMATICALLY_ASSIGN_GROUP_PERMISSIONS_TO_THE_CHILDREN_OF_SELECTED_CATEGORIES'); ?></label></span></div> <div class="paramValue"><?php echo $this->lists['inheritance']; ?></div> <div class="clr"></div> </li> </ul> </fieldset> </div> <input type="hidden" name="id" value="<?php echo $this->row->id; ?>" /> <input type="hidden" name="option" value="com_k2" /> <input type="hidden" name="view" value="usergroup" /> <input type="hidden" name="task" value="<?php echo JRequest::getVar('task'); ?>" /> <?php echo JHTML::_('form.token'); ?> </form>