clipbucket/upload/admin_area/styles/cbv3/layout/msg.html
Arslan Hassan 5962836294 Added : template.php as template file
Added : function filters files replacing function hooks
Added : add_admin_menu a whole new function and replaced all existing functions with new
Added : New Admin Area with Bootstrap and new icons
Added : functions for widgets
Added : Sidebars and Widgets
2012-04-28 20:11:43 +00:00

35 lines
No EOL
756 B
HTML

{assign var=msg value=$eh->message_list}
{assign var=err value=$eh->error_list}
{assign var=war value=$eh->warning_list}
{if $err.0 neq '' || $err.1 neq ''}
<div class="msg error">
<ul>
{foreach from=$err item=show_msg}
<li><img src="{$imageurl}/cross.png" />{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}
{if $msg.0 neq ''}
<div class="msg blue">
<ul>
{foreach from=$msg item=show_msg}
<li><img src="{$imageurl}/ok.png" />{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}
{if $war.0 neq ''}
<div class="msg blue">
<ul>
{foreach from=$war item=show_msg}
<li><img src="{$imageurl}/error.png" />{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}