| Server IP : 162.214.74.102 / Your IP : 216.73.217.114 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/team/application/views/backend/admin/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="tabs-horizontal-env">
<ul class="nav tabs-vertical" style="width:30%;"><!-- available classes "right-aligned" -->
<?php
$canned_message = $this->db->get('support_canned_message')->result_array();
foreach ($canned_message as $row):
?>
<li class="<?php if ($row['support_canned_message_id'] == $current_canned_message_id)echo 'active';?>"><a href="#tab<?php echo $row['support_canned_message_id'];?>"
data-toggle="tab">
<i class="entypo-right-dir"></i>
<?php echo get_phrase($row['title']);?>
</a></li>
<?php endforeach;?>
</ul>
<div class="tab-content" style="width:70%;">
<?php
foreach ($canned_message as $row):
?>
<div class="tab-pane <?php if ($row['support_canned_message_id'] == $current_canned_message_id)echo 'active';?>"
id="tab<?php echo $row['support_canned_message_id'];?>">
<?php echo form_open(base_url() . 'index.php?admin/support_canned_message/do_update/' . $row['support_canned_message_id']);?>
<b><?php echo get_phrase('title');?> :</b>
<input type="text" class="form-control" name="title" value="<?php echo $row['title'];?>">
<hr>
<b><?php echo get_phrase('description');?> :</b>
<textarea class="form-control email_template_editors" rows="10" name="description" id="post_content<?php echo $row['support_canned_message_id'];?>"
data-stylesheet-url="assets/css/wysihtml5-color.css"><?php echo $row['description'];?></textarea>
<br>
<hr>
<center>
<button type="submit" class="btn btn-info btn-icon icon-left">
<?php echo get_phrase('update');?>
<i class="entypo-floppy"></i>
</button>
</center>
<?php echo form_close();?>
</div>
<?php endforeach;?>
</div>
</div>
</div>
</div>