| 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/client/ |
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
$email_templates = $this->db->get('email_template')->result_array();
foreach ($email_templates as $row):
?>
<li class="<?php if ($row['email_template_id'] == $current_email_template_id)echo 'active';?>"><a href="#tab<?php echo $row['email_template_id'];?>"
data-toggle="tab">
<i class="entypo-right-dir"></i>
<?php echo get_phrase($row['task']);?>
</a></li>
<?php endforeach;?>
</ul>
<div class="tab-content" style="width:70%;">
<?php
foreach ($email_templates as $row):
?>
<div class="tab-pane <?php if ($row['email_template_id'] == $current_email_template_id)echo 'active';?>"
id="tab<?php echo $row['email_template_id'];?>">
<?php echo form_open(base_url() . 'index.php?admin/email_settings/do_update/' . $row['email_template_id']);?>
<b><?php echo get_phrase('email_subject');?> :</b>
<input type="text" class="form-control" name="subject" value="<?php echo $row['subject'];?>">
<hr>
<b><?php echo get_phrase('email_body');?> :</b>
<textarea class="form-control email_template_editors" rows="10" name="body" id="post_content<?php echo $row['email_template_id'];?>"
data-stylesheet-url="assets/css/wysihtml5-color.css"><?php echo $row['body'];?></textarea>
<br>
<b><?php echo get_phrase('instruction');?> :</b>
<?php echo $row['instruction'];?>
<hr>
<center>
<button type="submit" class="btn btn-info btn-icon icon-left">
<?php echo get_phrase('save_template');?>
<i class="entypo-floppy"></i>
</button>
</center>
<?php echo form_close();?>
</div>
<?php endforeach;?>
</div>
</div>
</div>
</div>