mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSrelation: add display_name_format parameter
This commit is contained in:
parent
78de233321
commit
c45f884aa1
2 changed files with 15 additions and 4 deletions
|
@ -18,6 +18,7 @@
|
|||
'emptyText' => "[texte affiché si aucune relation avec d'autres objets
|
||||
n'existe pour l'objet courant]",
|
||||
'LSobject' => '[le type d'LSobjet en relation]',
|
||||
'display_name_format' => '[LSformat du nom d'affichage des LSobjet en relation]',
|
||||
|
||||
// Liaison simple
|
||||
'linkAttribute' => '[attribut de liaison]',
|
||||
|
@ -69,6 +70,13 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>display_name_format</term>
|
||||
<listitem>
|
||||
<simpara>&LSformat; du nom d'affichage des objets en relation.</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>linkAttribute</term>
|
||||
<listitem>
|
||||
|
|
|
@ -720,7 +720,10 @@ class LSrelation extends LSlog_staticLoggerClass {
|
|||
if (is_array($list)) {
|
||||
foreach($list as $o) {
|
||||
$return['objectList'][] = array(
|
||||
'text' => $o -> getDisplayName(NULL,true),
|
||||
'text' => $o -> getDisplayName(
|
||||
LSconfig :: get('display_name_format', null, null, $relationConf),
|
||||
true
|
||||
),
|
||||
'dn' => $o -> getDn(),
|
||||
'canEdit' => $relation -> canEditRelationWithObject($o)
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue