mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
3e823a2b22
-> view/select => change to use it (php+template+js) -> LSattr_html_select_object/LSattr_html_select_list => change to use it -> LSldapObject : -> change listObjectsName() / searchObject() / getSelectArray() / listObjects() -> comment search() function -> Add triggers to clean cache -> LSpeople : Update search config -> LSsession : Change function to use it : - getSubDnLdapServer() - loadLSprofiles() - LSrelation : Deplace error codes declaration from LSsession in class file - LSldapObject : -> change getObjectFilter() / getLabel() / getSubDnValue() / getSubDnName() for can call then staticaly -> Add afterModify() function and trigger -> Change getObjectFilter() / listObjectsInRelation() to use Net_LDAP2_Filter -> Add __get() function -> Move one LSerror code for LSrelation function from LSsession class file -> Add a global variable to save cached data ($cache) -> Change subDn and subDnName access methods - LSauth : Move LSsession auth procedure in a dedicated class -> LSsession : Change startLSsession() to use it - LSsession : -> Add getRootDn() function -> Fix getTopDn() to return root DN if no topDn is currently defined -> Create dedicated functions to support recoveryPassword mecanism : - recoverPasswd() - recoverPasswdSendMail() - recoverPasswdFirstStep() - recoverPasswdSecondStep -> Customize LSdebug return and display (php+js) -> Clean unused error codes -> Move LSrelation error codes -> Comment ajax method
78 lines
3.4 KiB
Smarty
78 lines
3.4 KiB
Smarty
<table class='LSobject-list' id='LSselect-object' caption='{$LSsearch->LSobject}'>
|
|
<tr class='LSobject-list'>
|
|
<th class='LSobject-list LSobject-select-check'></th>
|
|
<th class='LSobject-list{if $LSsearch->sort} sortBy_displayName{/if}'>
|
|
{if $LSsearch->sortBy == 'displayName'}
|
|
<strong>{$LSsearch->label_objectName}</strong>
|
|
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
|
|
{else}
|
|
{$LSsearch->label_objectName}
|
|
{/if}
|
|
</th>
|
|
{if $LSsearch->displaySubDn}
|
|
<th class='LSobject-list LSobject-list-subdn{if $LSsearch->sort} sortBy_subDn{/if}'>
|
|
{if $LSsearch->sort}
|
|
{if $LSsearch->sortBy == 'subDn'}
|
|
<strong>{$LSsearch->label_level}</strong>
|
|
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
|
|
{else}
|
|
{$LSsearch->label_level}
|
|
{/if}
|
|
{else}
|
|
{$LSsearch->label_level}
|
|
{/if}
|
|
</th>
|
|
{/if}
|
|
</tr>
|
|
{foreach from=$page.list item=object}
|
|
<tr class='{cycle values="LSobject-list,LSobject-list LSobject-list-bis"}'>
|
|
<td class='LSobject-list LSobject-select-check'><input type='{if $searchForm.multiple}checkbox{else}radio{/if}' name='LSobjects_selected[]' value='{$object->dn}' {if $object->LSselect}checked="true"{/if} class='LSobject-select' /></td>
|
|
<td class='LSobject-list LSobject-select-names'>{$object->displayName}</td>
|
|
{if $LSsearch->displaySubDn}
|
|
<td class='LSobject-list LSobject-select-level'>{$object->subDn}</td>
|
|
{/if}
|
|
</tr>
|
|
{foreachelse}
|
|
<tr class='LSobject-list'>
|
|
<td colspan='3' class='LSobject-list-without-result'>{$LSsearch->label_no_result}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
|
|
|
|
{if $page.nbPages > 1}
|
|
<p class='LSobject-list-page'>
|
|
{if $page.nbPages > 10}
|
|
{php}$this->assign('range', range(0,10));{/php}
|
|
{if $page.nb > 5}
|
|
{if $page.nb > $page.nbPages-6}
|
|
{assign var=start value=$page.nbPages-12}
|
|
{else}
|
|
{assign var=start value=$page.nb-6}
|
|
{/if}
|
|
{else}
|
|
{assign var=start value=0}
|
|
{/if}
|
|
<a href='select.php?LSobject={$LSsearch->LSobject}&page=0&multiple={$searchForm.multiple}' class='LSobject-list-page'><</a>
|
|
{foreach from=$range item=i}
|
|
{if $page.nb==$start+$i}
|
|
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
|
|
{else}
|
|
<a href='select.php?LSobject={$LSsearch->LSobject}&page={$i+$start}&multiple={$searchForm.multiple}' class='LSobject-list-page'>{$i+$start+1}</a>
|
|
{/if}
|
|
{/foreach}
|
|
<a href='select.php?LSobject={$LSsearch->LSobject}&page={$page.nbPages-1}&multiple={$searchForm.multiple}' class='LSobject-list-page'>></a>
|
|
{else}
|
|
{section name=listpage loop=$page.nbPages step=1}
|
|
{if $page.nb == $smarty.section.listpage.index}
|
|
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
|
|
{else}
|
|
<a href='select.php?LSobject={$LSsearch->LSobject}&page={$smarty.section.listpage.index}&multiple={$searchForm.multiple}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a>
|
|
{/if}
|
|
{/section}
|
|
{/if}
|
|
</p>
|
|
{/if}
|
|
|
|
<div id='LSdebug_txt_ajax' style='display: none'>{$LSdebug_txt}</div>
|
|
<div id='LSerror_txt_ajax' style='display: none'>{$LSerror_txt}</div>
|