Server IP : 184.154.167.98 / Your IP : 3.145.110.128 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/include/staff/templates/ |
Upload File : |
<?php /** * Calling conventions * * $column - <QueueColumn> instance for this column */ $sortid = $sort->getId(); $advanced = in_array('extra', $sort::getMeta()->getFieldNames()); ?> <h3 class="drag-handle"><?php echo __('Manage Sort Options'); ?> — <?php echo $sort->get('name') ?></h3> <a class="close" href=""><i class="icon-remove-circle"></i></a> <hr/> <form method="post" action="#tickets/search/sort/edit/<?php echo $sortid; ?>"> <?php if ($advanced) { ?> <ul class="clean tabs"> <li class="active"><a href="#fields"><i class="icon-columns"></i> <?php echo __('Fields'); ?></a></li> <li><a href="#advanced"><i class="icon-cog"></i> <?php echo __('Advanced'); ?></a></li> </ul> <div class="tab_content" id="fields"> <?php } ?> <?php include 'queue-sorting.tmpl.php'; ?> <?php if ($advanced) { ?> </div> <div class="hidden tab_content" id="advanced"> <?php echo $sort->getAdvancedConfigForm()->asTable(); ?> </div> <?php } ?> <hr> <p class="full-width"> <span class="buttons pull-left"> <input type="reset" value="<?php echo __('Reset'); ?>"> <input type="button" value="<?php echo __('Cancel'); ?>" class="close"> </span> <span class="buttons pull-right"> <input type="submit" value="<?php echo __('Save'); ?>"> </span> </p> </form>