mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
Fix templates PHP warning
This commit is contained in:
parent
43da89992a
commit
338c61838f
7 changed files with 42 additions and 40 deletions
|
@ -1,6 +1,6 @@
|
|||
<div id='LSjsConfig'>{$LSjsConfig}</div>
|
||||
|
||||
<div id='LSinfos_txt'>{if is_array($LSinfos) && !empty($LSinfos)}
|
||||
<div id='LSinfos_txt'>{if isset($LSinfos) && is_array($LSinfos) && !empty($LSinfos)}
|
||||
<ul>
|
||||
{foreach $LSinfos as $info}
|
||||
<li>{$info|escape:"htmlall"}</li>
|
||||
|
@ -8,9 +8,9 @@
|
|||
</ul>
|
||||
{/if}</div>
|
||||
|
||||
<div id='LSerror_txt'>{$LSerrors}</div>
|
||||
<div id='LSerror_txt'>{if isset($LSerrors) && $LSerrors}{$LSerrors}{/if}</div>
|
||||
|
||||
<div id='LSdebug_txt'>{if $LSdebug != ''}{$LSdebug}{/if}</div>
|
||||
<div id='LSdebug_txt'>{if isset($LSdebug) && $LSdebug}{$LSdebug}{/if}</div>
|
||||
|
||||
<div id="_smarty_console"></div>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<form action='{$LSform_action}' method='post' enctype="multipart/form-data" class='LSform'>
|
||||
{$LSform_header}
|
||||
{if $LSform_layout}
|
||||
{if isset($LSform_layout) && $LSform_layout}
|
||||
<!-- Tabs - Start Title -->
|
||||
<ul class='LSform_layout'>
|
||||
{foreach from=$LSform_layout item=tab key=tab_key}
|
||||
|
@ -14,9 +14,9 @@
|
|||
<a name='{$tab_key|escape:'htmlall'}'></a>
|
||||
<h2 class='LSform_layout'>{tr msg=$tab.label}</h2>
|
||||
<div class='LSform LSform_layout' id='LSform_layout_div_{$tab_key|escape:'htmlall'}'>
|
||||
{if $LSformElement_image!='' && $tab.img==1}
|
||||
<div class='LSformElement_image{if $LSformElement_image_errors} LSformElement_image_errors{/if}'>
|
||||
{if $LSformElement_image_actions!='' && !$LSformElement_image_errors}
|
||||
{if isset($LSformElement_image) && $LSformElement_image!='' && isset($tab['img']) && $tab.img==1}
|
||||
<div class='LSformElement_image{if isset($LSformElement_image_errors) && $LSformElement_image_errors} LSformElement_image_errors{/if}'>
|
||||
{if isset($LSformElement_image_actions) && $LSformElement_image_actions!='' && !(isset($LSformElement_image_errors) && $LSformElement_image_errors)}
|
||||
<ul class='LSformElement_image_actions'>
|
||||
<li><img src='{img name="zoom"}' class='LSformElement_image_actions LSformElement_image_action_zoom' id='LSformElement_image_action_zoom_{$LSformElement_image.id|escape:'htmlall'}' /></li>
|
||||
{foreach from=$LSformElement_image_actions item=item}
|
||||
|
@ -30,10 +30,10 @@
|
|||
|
||||
<dl class='LSform'>
|
||||
{foreach from=$tab.args item=arg}
|
||||
{if $LSform_fields[$arg]}
|
||||
<dt class='LSform{if $LSform_fields[$arg].errors != ''} LSform-errors{/if}'>{$LSform_fields[$arg].label}{if $LSform_fields[$arg].required} *{/if}{if $LSform_fields[$arg].help_info!=""} <img class='LStips' src="{img name='help'}" alt='?' title='{$LSform_fields[$arg].help_info|escape:'htmlall'}'/>{/if}</dt>
|
||||
<dd class='LSform'>{$LSform_fields[$arg].html}{if $LSform_fields[$arg].add != ''} <span class='LSform-addfield'>+ Ajouter un champ</span>{/if}</dd>
|
||||
{if $LSform_fields[$arg].errors != ''}
|
||||
{if isset($LSform_fields[$arg])}
|
||||
<dt class='LSform{if isset($LSform_fields[$arg]['errors']) && $LSform_fields[$arg]['errors']} LSform-errors{/if}'>{$LSform_fields[$arg].label}{if isset($LSform_fields[$arg]['required']) && $LSform_fields[$arg]['required']} *{/if}{if isset($LSform_fields[$arg]['help_info']) && $LSform_fields[$arg]['help_info']} <img class='LStips' src="{img name='help'}" alt='?' title='{$LSform_fields[$arg].help_info|escape:'htmlall'}'/>{/if}</dt>
|
||||
<dd class='LSform'>{$LSform_fields[$arg].html}{if isset($LSform_fields[$arg]['add']) && $LSform_fields[$arg]['add']} <span class='LSform-addfield'>+ Ajouter un champ</span>{/if}</dd>
|
||||
{if isset($LSform_fields[$arg]['errors']) && $LSform_fields[$arg]['errors']}
|
||||
{foreach from=$LSform_fields[$arg].errors item=error}
|
||||
<dd class='LSform LSform-errors'>{$error|escape:'htmlall'}</dd>
|
||||
{/foreach}
|
||||
|
@ -47,9 +47,9 @@
|
|||
{/foreach}
|
||||
<!-- Tabs - End Content -->
|
||||
{else}
|
||||
{if $LSformElement_image!=''}
|
||||
<div class='LSformElement_image{if $LSformElement_image_errors} LSformElement_image_errors{/if}'>
|
||||
{if $LSformElement_image_actions!='' && !$LSformElement_image_errors}
|
||||
{if isset($LSformElement_image) && $LSformElement_image!=''}
|
||||
<div class='LSformElement_image{if isset($LSformElement_image_errors) && $LSformElement_image_errors} LSformElement_image_errors{/if}'>
|
||||
{if isset($LSformElement_image_actions) && $LSformElement_image_actions!='' && !(isset($LSformElement_image_errors) && $LSformElement_image_errors)}
|
||||
<ul class='LSformElement_image_actions'>
|
||||
<li><img src='{img name='zoom'}' class='LSformElement_image_actions LSformElement_image_action_zoom' id='LSformElement_image_action_zoom_{$LSformElement_image.id|escape:'htmlall'}' /></li>
|
||||
{foreach from=$LSformElement_image_actions item=item}
|
||||
|
@ -64,9 +64,9 @@
|
|||
<div class='LSform'>
|
||||
<dl class='LSform'>
|
||||
{foreach from=$LSform_fields item=field}
|
||||
<dt class='LSform{if $field.errors != ''} LSform-errors{/if}'>{$field.label}{if $field.required} *{/if}{if $field.help_info!=""} <img class='LStips' src="{img name='help'}" alt='?' title='{$field.help_info|escape:'htmlall'}'/>{/if}</dt>
|
||||
<dd class='LSform'>{$field.html}{if $field.add != ''} <span class='LSform-addfield'>+ Ajouter un champ</span>{/if}</dd>
|
||||
{if $field.errors != ''}
|
||||
<dt class='LSform{if isset($field['errors']) && $field['errors']} LSform-errors{/if}'>{$field.label}{if isset($field['required']) && $field['required']} *{/if}{if isset($field['help_info']) && $field['help_info']} <img class='LStips' src="{img name='help'}" alt='?' title='{$field.help_info|escape:'htmlall'}'/>{/if}</dt>
|
||||
<dd class='LSform'>{$field.html}{if isset($field['add']) && $field['add']} <span class='LSform-addfield'>+ Ajouter un champ</span>{/if}</dd>
|
||||
{if isset($field['errors']) && $field['errors']}
|
||||
{foreach from=$field.errors item=error}
|
||||
<dd class='LSform LSform-errors'>{$error|escape:'htmlall'}</dd>
|
||||
{/foreach}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{if $freeze}
|
||||
<span class='LSformElement_text'>
|
||||
{if $value}
|
||||
<a class='{$uriClass|escape:"htmlall"}' href='{$uriPrefix|escape:"htmlall"}{$value|escape:"htmlall"}'{if $uriLinkTitle} title='{$uriLinkTitle|escape:"htmlall"}'{/if}{if $uriTarget} target='{$uriTarget|escape:"htmlall"}'{/if}>{$value|escape:"htmlall"}</a>
|
||||
<a class='{$uriClass|escape:"htmlall"}' href='{$uriPrefix|escape:"htmlall"}{$value|escape:"htmlall"}'{if isset($uriLinkTitle) && $uriLinkTitle} title='{$uriLinkTitle|escape:"htmlall"}'{/if}{if isset($uriTarget) && $uriTarget} target='{$uriTarget|escape:"htmlall"}'{/if}>{$value|escape:"htmlall"}</a>
|
||||
{else}
|
||||
{$noValueTxt|escape:"htmlall"}
|
||||
{/if}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<input type='hidden' name='LSform_objecttype' id='LSform_objecttype' value='{$LSform_object.type|escape:"htmlall"}'/>
|
||||
<input type='hidden' name='LSform_objectdn' id='LSform_objectdn' value='{$LSform_object.dn|escape:"htmlall"}'/>
|
||||
{if $LSform_layout}
|
||||
{if isset($LSform_layout) && $LSform_layout}
|
||||
<!-- Tabs - Start Title -->
|
||||
<ul class='LSform_layout'>
|
||||
{foreach from=$LSform_layout item=tab key=tab_key}
|
||||
|
@ -15,7 +15,7 @@
|
|||
<h2 class='LSform_layout'>{$tab.label|escape:"htmlall"}</h2>
|
||||
<div class='LSform LSform_layout' id='LSform_layout_div_{$tab_key|escape:"htmlall"}'>
|
||||
|
||||
{if $LSformElement_image!='' && $tab.img==1}
|
||||
{if isset($LSformElement_image) && $LSformElement_image!='' && isset($tab['img']) && $tab.img==1}
|
||||
<div class='LSformElement_image'>
|
||||
<a href='{$LSformElement_image.img|escape:"htmlall"}' rel='rien ici' title='comment' class='mb'><img src='{$LSformElement_image.img|escape:"htmlall"}' class='LSformElement_image LSsmoothbox' id='LSformElement_image_{$LSformElement_image.id|escape:"htmlall"}' /></a>
|
||||
</div>
|
||||
|
@ -24,7 +24,7 @@
|
|||
<dl class='LSform'>
|
||||
{assign var='field' value='non'}
|
||||
{foreach from=$tab.args item=arg}
|
||||
{if $LSform_fields[$arg]}
|
||||
{if isset($LSform_fields[$arg])}
|
||||
{assign var='field' value='oui'}
|
||||
<dt class='LSform'>{$LSform_fields[$arg].label|escape:"htmlall"}{if $LSform_fields[$arg].help_info_in_view && $LSform_fields[$arg].help_info!=""} <img class='LStips' src="{img name='help'}" alt='?' title='{$LSform_fields[$arg].help_info|escape:'htmlall'}'/>{/if}</dt>
|
||||
<dd class='LSform'>{$LSform_fields[$arg].html}</dd>
|
||||
|
@ -40,7 +40,7 @@
|
|||
<!-- Tabs - End Content -->
|
||||
{else}
|
||||
|
||||
{if $LSformElement_image!=''}
|
||||
{if isset($LSformElement_image) && $LSformElement_image!=''}
|
||||
<div class='LSformElement_image'>
|
||||
<a href='{$LSformElement_image.img|escape:"htmlall"}' rel='rien ici' title='comment' class='mb'><img src='{$LSformElement_image.img|escape:"htmlall"}' class='LSformElement_image LSsmoothbox' id='LSformElement_image_{$LSformElement_image.id|escape:"htmlall"}' /></a>
|
||||
</div>
|
||||
|
|
|
@ -7,9 +7,11 @@
|
|||
</ul>
|
||||
{/if}
|
||||
<ul id='LSrelation_ul_{$item.id|escape:"quotes"}' class='LSrelation'>
|
||||
{if isset($item['objectList']) && !empty($item.objectList)}
|
||||
{foreach from=$item.objectList item=object}
|
||||
<li class='LSrelation'><a href='object/{$item.LSobject|escape:"url"}/{$object.dn|escape:'url'}' class='LSrelation{if $object.canEdit} LSrelation_editable{/if}' id='LSrelation_{$item.id|escape:"quotes"}_{$object.dn|escape:"quotes"}'>{$object.text|escape:"htmlall"}</a></li>
|
||||
{foreachelse}
|
||||
<li class='LSrelation'>{$item.emptyText|escape:"htmlall"}</li>
|
||||
{/foreach}
|
||||
{else}
|
||||
<li class='LSrelation'>{$item.emptyText|escape:"htmlall"}</li>
|
||||
{/if}
|
||||
</ul>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<td rowspan=2 id='left'>
|
||||
<a href='index.php'><img src='{img name='logo'}' alt='Logo' id='logo'/></a>
|
||||
|
||||
{if $LSsession_subDn!=""}
|
||||
{if isset($LSsession_subDn) && $LSsession_subDn!=""}
|
||||
<form action="index.php" method='post' id='LSsession_topDn_form'>
|
||||
<label>{$label_level|escape:"htmlall"}
|
||||
<a href="index.php?LSsession_refresh"><img src='{img name='refresh'}' alt='{$_refresh|escape:"htmlall"}' title='{$_refresh|escape:"htmlall"}' /></a>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<ul class='LSview-actions'>
|
||||
{foreach from=$LSview_actions item=item}
|
||||
{if is_array($item)}
|
||||
<li class='LSview-actions'><a href='{$item.url}' class='LSview-actions{if $item.class} {$item.class|escape:"quotes"}{/if}{if $item.helpInfo || ($item.hideLabel && $item.label)} LStips{/if}' {if $item.helpInfo || ($item.hideLabel && $item.label)}title='{if $item.helpInfo}{$item.helpInfo|escape:"htmlall"}{else}{$item.label|escape:"htmlall"}{/if}'{/if}><img src="{img name=$item.action}" alt='{$item.label|escape:"htmlall"}' title='{$item.label|escape:"htmlall"}' />{if !isset($item.hideLabel) || !$item.hideLabel} {$item.label}{/if}</a></li>
|
||||
<li class='LSview-actions'><a href='{$item.url}' class='LSview-actions{if isset($item['class'])} {$item.class|escape:"quotes"}{/if}{if isset($item['helpInfo']) || (isset($item['hideLabel']) && $item.hideLabel && isset($item.label) && $item.label)} LStips{/if}' {if isset($item['helpInfo']) || (isset($item['hideLabel']) && $item.hideLabel && isset($item.label) && $item.label)}title='{if $item.helpInfo}{$item.helpInfo|escape:"htmlall"}{else}{$item.label|escape:"htmlall"}{/if}'{/if}><img src="{img name=$item.action}" alt='{$item.label|escape:"htmlall"}' title='{$item.label|escape:"htmlall"}' />{if !isset($item.hideLabel) || !$item.hideLabel} {$item.label}{/if}</a></li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
|
@ -12,7 +12,7 @@
|
|||
|
||||
{include file='ls:LSform_view.tpl'}
|
||||
|
||||
{if $LSrelations!=''}
|
||||
{if isset($LSrelations) && $LSrelations}
|
||||
{foreach from=$LSrelations item=item}
|
||||
{include file='ls:LSrelations.tpl'}
|
||||
{/foreach}
|
||||
|
|
Loading…
Reference in a new issue