mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
- Documentation :
-> Mise à jour au sujet de l'internationalisation (plus d'appel getText dans la configuration) -> Ajout d'infos sur la paramètre filter d'un LSobject
This commit is contained in:
parent
a8e83ac256
commit
c1ae0cea5a
4 changed files with 16 additions and 11 deletions
|
@ -16,8 +16,8 @@
|
|||
<![CDATA['attrs' => array (
|
||||
/* ----------- start -----------*/
|
||||
'attr1' => array (
|
||||
'label' => _('[label de l'attr1'),
|
||||
'help_info' => _('[Message d'aide sur l'attribut attr1'),
|
||||
'label' => '[label de l'attr1',
|
||||
'help_info' => '[Message d'aide sur l'attribut attr1',
|
||||
'ldap_type' => 'ldaptype1',
|
||||
'ldap_options' => array(
|
||||
// Options LDAP liées au type LDAP de l'attribut
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<citetitle>Structure</citetitle>...
|
||||
<![CDATA['check_data' => array (
|
||||
'[regle1]' => array(
|
||||
'msg' => _("[Message d'erreur]"),
|
||||
'msg' => "[Message d'erreur]",
|
||||
'params' => array(
|
||||
// Paramètres de la règle
|
||||
)
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
'after_create' => 'function3',
|
||||
'after_delete' => 'function4',
|
||||
|
||||
'label' => _('objet1'),
|
||||
'label' => 'objet1',
|
||||
|
||||
'display_name_format' => '[format]',
|
||||
'orderby' => 'displayName', // Valeurs possibles : 'displayName' ou 'subDn'
|
||||
|
@ -150,10 +150,6 @@
|
|||
<listitem>
|
||||
<simpara>Nom générique au pluriel qualifiant le type d'objet. Exemple :
|
||||
<emphasis>Utilisateurs</emphasis>.</simpara>
|
||||
<important><para>Si vous utilisez la fonctionnalité d'internationalisation, il faut
|
||||
utiliser ici la fonction de <application>gettext</application> pour que le
|
||||
texte soit traduit si vous n'êtes pas dans la langue de référence. Exemple :
|
||||
<programlisting>_('Utilisateurs')</programlisting></para></important>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
@ -204,6 +200,15 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>filter</term>
|
||||
<listitem>
|
||||
<simpara>Filtre de recherche LDAP applicable à tout les objets de ce type et
|
||||
qui sera utilisé lors de chaque recherche de ce type d'objet.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>attrs</term>
|
||||
<listitem>
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
<citetitle>Structure</citetitle>
|
||||
<![CDATA[$GLOBALS['LSobjects']['[nom du type d'LSobject]']['LSrelation'] = array (
|
||||
'relation1' => array(
|
||||
'label' => _('[label de la relation]'),
|
||||
'emptyText' => _("[texte affiché si aucune relation avec d'autres objets
|
||||
n'existe pour l'objet courant]"),
|
||||
'label' => '[label de la relation]',
|
||||
'emptyText' => "[texte affiché si aucune relation avec d'autres objets
|
||||
n'existe pour l'objet courant]",
|
||||
'LSobject' => '[le type d'LSobjet en relation]',
|
||||
'list_function' => '[méthode1]',
|
||||
'getkeyvalue_function' => '[methode2]',
|
||||
|
|
Loading…
Reference in a new issue