Server IP : 184.154.167.98 / Your IP : 3.145.1.182 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 global $cfg; $form = $form ?: TransferForm::instantiate($info); ?> <h3 class="drag-handle"><?php echo $info[':title']; ?></h3> <b><a class="close" href="#"><i class="icon-remove-circle"></i></a></b> <div class="clear"></div> <hr/> <?php if ($info['error']) { echo sprintf('<p id="msg_error">%s</p>', $info['error']); } elseif ($info['warn']) { echo sprintf('<p id="msg_warning">%s</p>', $info['warn']); } elseif ($info['msg']) { echo sprintf('<p id="msg_notice">%s</p>', $info['msg']); } elseif ($info['notice']) { echo sprintf('<p id="msg_info"><i class="icon-info-sign"></i> %s</p>', $info['notice']); } $action = $info[':action'] ?: ('#'); ?> <div style="display:block; margin:5px;"> <form method="post" name="transfer" id="transfer" class="mass-action" action="<?php echo $action; ?>"> <table width="100%"> <?php if ($info[':extra']) { ?> <tbody> <tr><td colspan="2"><strong><?php echo $info[':extra']; ?></strong></td> </tr> </tbody> <?php } ?> <tbody> <tr><td colspan=2> <?php $options = array('template' => 'simple', 'form_id' => 'transfer'); $form->render($options); ?> </td> </tr> </tbody> </table> <hr> <p class="full-width"> <span class="buttons pull-left"> <input type="reset" value="<?php echo __('Reset'); ?>"> <input type="button" name="cancel" class="close" value="<?php echo __('Cancel'); ?>"> </span> <span class="buttons pull-right"> <input type="submit" value="<?php echo $verb ?: __('Transfer'); ?>"> </span> </p> </form> </div> <div class="clear"></div>