| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 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/public_html/lrsys_apps/dialogo/application/plugins/module_stock/views/ |
Upload File : |
{include file="sections/header.tpl"}
<div class="row">
<div class="col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>{$_L['Notifications List']}</h5>
</div>
<div class="ibox-content">
<table class="table table-striped table-bordered table-notifications">
<th>#</th>
<th>{$_L['Notification Type']}</th>
<th>{$_L['Notify by Email']}</th>
<th>{$_L['Notify by SMS']}</th>
<th>{$_L['System Alert']}</th>
{foreach $notifications_users as $notif}
{if $notif['method']}
{assign var="method" value=json_decode($notif['method'], true)}
{else}
{assign var="method" value=0}
{/if}
<tr data-id="{$notif['id']}">
<td>{$notif['id']}</td>
<td>{$notif['description']}</td>
<td>
<input name="email" type="checkbox" class="btn btn-primary btn-xs" value="email"
data-toggle="toggle" data-size="small" data-on="{$_L['Yes']}" data-off="{$_L['No']}"
{if isset($method['email'])}checked{/if}>
</td>
<td>
<input name="sms" type="checkbox" class="btn btn-primary btn-xs" value="sms"
data-toggle="toggle" data-size="small" data-on="{$_L['Yes']}" data-off="{$_L['No']}"
{if isset($method['sms'])}checked{/if}>
</td>
<td>
<input name="system" type="checkbox" class="btn btn-primary btn-xs" value="system"
data-toggle="toggle" data-size="small" data-on="{$_L['Yes']}" data-off="{$_L['No']}"
{if isset($method['system'])}checked{/if}>
</td>
</tr>
{/foreach}
</table>
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"}