%PDF-1.7 GIF89;
Server IP : 5.161.254.237 / Your IP : 216.73.216.17 Web Server : Apache System : Linux diamond.sialwebvps.com 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64 User : stellasp ( 1131) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/stellasp/www/application/views/admin/ |
Upload File : |
<?php include('header.php'); $f_id = form_hidden('id', set_value('id', $id)); $f_name = form_input('name', set_value('name', $name), 'class="gc_tf1"'); $f_discount = form_input('discount', set_value('discount', $discount), 'class="gc_tf1"'); $f_discount_type = form_dropdown('discount_type', array('percent'=>'percent','fixed'=>'fixed'), set_value('discount_type', $discount_type)); echo form_open($this->config->item('admin_folder').'/customers/edit_group/'.$id); ?> <div class="button_set"> <input type="submit" value="<?php echo lang('save');?>" /> </div> <div id="gc_tabs"> <ul> <li><a href="#gc_coupon_attributes"><?php echo lang('attributes');?></a></li> </ul> <div id="attributes"> <h2></h2> <table> <tr> <td><?php echo lang('group_name');?> </td> <td> <?php echo $f_id; echo $f_name; ?> </td> </tr> <tr> <td><?php echo lang('discount');?> </td> <td> <?php echo $f_discount ?> </td> </tr> <tr> <td><?php echo lang('discount_type');?></td> <td> <?php echo $f_discount_type ?> </td> </tr> </table> <br/> </div> </div> </form> <script> $(function(){ $('#gc_tabs').tabs(); }); </script> <?php include('footer.php') ?>