mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
LScli :: show : show LSrelation
This commit is contained in:
parent
ff2ede7c36
commit
ddd6b265e3
1 changed files with 24 additions and 0 deletions
|
@ -1928,6 +1928,8 @@ class LSldapObject {
|
||||||
**/
|
**/
|
||||||
public function _cli_show($raw_values=false) {
|
public function _cli_show($raw_values=false) {
|
||||||
echo $this -> type_name." (".($this -> dn?$this -> dn:'new').") :\n";
|
echo $this -> type_name." (".($this -> dn?$this -> dn:'new').") :\n";
|
||||||
|
|
||||||
|
// Show attributes
|
||||||
if (is_array($this -> getConfig('LSform.layout'))) {
|
if (is_array($this -> getConfig('LSform.layout'))) {
|
||||||
foreach($this -> getConfig('LSform.layout') as $tab_name => $tab) {
|
foreach($this -> getConfig('LSform.layout') as $tab_name => $tab) {
|
||||||
echo " - ".(isset($tab['label'])?$tab['label']:$tab_name)." :\n";
|
echo " - ".(isset($tab['label'])?$tab['label']:$tab_name)." :\n";
|
||||||
|
@ -1941,6 +1943,28 @@ class LSldapObject {
|
||||||
foreach ($this -> attrs as $attr_name => $attr) {
|
foreach ($this -> attrs as $attr_name => $attr) {
|
||||||
$this -> _cli_show_attr($attr_name, $raw_values);
|
$this -> _cli_show_attr($attr_name, $raw_values);
|
||||||
}
|
}
|
||||||
|
echo "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show LSrelations
|
||||||
|
if (LSsession :: loadLSclass('LSrelation') && is_array($this -> getConfig('LSrelation'))) {
|
||||||
|
foreach ($this -> getConfig('LSrelation') as $rel_name => $rel_conf) {
|
||||||
|
echo " - ".(isset($rel_conf['label'])?$rel_conf['label']:$rel_name)." :\n";
|
||||||
|
$relation = new LSrelation($this, $rel_name);
|
||||||
|
$list = $relation -> listRelatedObjects();
|
||||||
|
if (is_array($list)) {
|
||||||
|
foreach($list as $o) {
|
||||||
|
echo " - ".$o -> getDisplayName(NULL,true)." (".$o -> getDn().")\n";
|
||||||
|
}
|
||||||
|
if (empty($list)) {
|
||||||
|
echo " => ".(isset($rel_conf['emptyText'])?$rel_conf['emptyText']:"No objects.")."\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
LSlog :: error("Fail to load related objects.");
|
||||||
|
}
|
||||||
|
echo "\n";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue