%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/extrafieldsgroups/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 == 'remove') { if (confirm('".JText::_('K2_WARNING_ARE_YOU_SURE_YOU_WANT_TO_DELETE_SELECTED_EXTRA_FIELDS_GROUPS_DELETING_THE_GROUPS_WILL_ALSO_DELETE_THE_ASSIGNED_EXTRA_FIELDS', true)."')){ submitform( pressbutton ); } } else { submitform( pressbutton ); } } "); ?> <form action="index.php" method="post" name="adminForm" id="adminForm"> <table class="adminlist table table-striped"> <thead> <tr> <th class="center hidden-phone">#</th> <th class="center"><input id="jToggler" type="checkbox" name="toggle" value="" /></th> <th><?php echo JText::_('K2_GROUP_NAME'); ?></th> <th class="hidden-phone"><?php echo JText::_('K2_ASSIGNED_CATEGORIES'); ?></th> </tr> </thead> <tfoot> <tr> <td colspan="4"> <?php if(K2_JVERSION == '30'): ?> <div class="k2LimitBox"> <?php echo $this->page->getLimitBox(); ?> </div> <?php endif; ?> <?php echo $this->page->getListFooter(); ?> </td> </tr> </tfoot> <tbody> <?php foreach ($this->rows as $key=>$row): ?> <tr class="row<?php echo ($key%2); ?>"> <td class="k2Center center hidden-phone"><?php echo $key+1; ?></td> <td class="k2Center center"><?php $row->checked_out = 0; echo @JHTML::_('grid.checkedout', $row, $key ); ?></td> <td><a href="<?php echo JRoute::_('index.php?option=com_k2&view=extrafieldsgroup&cid='.$row->id); ?>"><?php echo $row->name; ?></a></td> <td class="hidden-phone"><?php echo $row->categories; ?></td> </tr> <?php endforeach; ?> </tbody> </table> <input type="hidden" name="option" value="com_k2" /> <input type="hidden" name="view" value="<?php echo JRequest::getVar('view'); ?>" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <?php echo JHTML::_( 'form.token' ); ?> </form>