new module to show general information about LDAP entries

This commit is contained in:
Roland Gruber 2011-04-25 18:05:12 +00:00
parent acfb7e150d
commit 567e564579
2 changed files with 134 additions and 0 deletions

View File

@ -1,3 +1,9 @@
August 2011 3.5.0
- New module "General information": shows internal data about accounts (e.g. creation time)
- inetOrgPerson: New attributes
- LAM Pro:
-> Automount: allow to create automount maps
2011-04-25 3.4.0
- IMAP mailboxes:
-> support to read user name from uid attribute

View File

@ -0,0 +1,128 @@
<?php
/*
$Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2011 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Shows general information like the creation time of an account.
*
* @package modules
* @author Roland Gruber
*/
/**
* Shows general information like the creation time of an account.
*
* @package modules
*/
class generalInformation extends baseModule {
/**
* Returns meta data that is interpreted by parent class
*
* @return array array with meta data
*
* @see baseModule::get_metaData()
*/
public function get_metaData() {
$return = array();
// icon
$return['icon'] = 'info.png';
// manages all accounts
$return["account_types"] = getTypes();
// alias name
$return["alias"] = _("General information");
// module dependencies
$return['dependencies'] = array('depends' => array(), 'conflicts' => array());
// managed attributes
$return['attributes'] = array('creatorsName', 'createTimestamp', 'modifiersName',
'modifyTimestamp', 'hasSubordinates', 'memberOf', 'pwdChangedTime');
return $return;
}
/**
* Returns the HTML meta data for the main account page.
*
* @return htmlElement HTML meta data
*/
public function display_html_attributes() {
$return = new htmlTable();
// creation info
if (isset($this->attributes['creatorsName'][0])) {
$return->addElement(new htmlOutputText(_('Created by')));
$return->addElement(new htmlOutputText(getAbstractDN($this->attributes['creatorsName'][0])), true);
}
if (isset($this->attributes['createTimestamp'][0])) {
$return->addElement(new htmlOutputText(_('Creation time')));
$return->addElement(new htmlOutputText(formatLDAPTimestamp($this->attributes['createTimestamp'][0])), true);
}
if (isset($this->attributes['creatorsName'][0]) || isset($this->attributes['createTimestamp'][0])) {
$return->addElement(new htmlSpacer(null, '5px'), true);
}
// modification info
if (isset($this->attributes['modifiersName'][0])) {
$return->addElement(new htmlOutputText(_('Modified by')));
$return->addElement(new htmlOutputText(getAbstractDN($this->attributes['modifiersName'][0])), true);
}
if (isset($this->attributes['modifyTimestamp'][0])) {
$return->addElement(new htmlOutputText(_('Modification time')));
$return->addElement(new htmlOutputText(formatLDAPTimestamp($this->attributes['modifyTimestamp'][0])), true);
}
if (isset($this->attributes['modifiersName'][0]) || isset($this->attributes['modifyTimestamp'][0])) {
$return->addElement(new htmlSpacer(null, '5px'), true);
}
// children
if (isset($this->attributes['hasSubordinates'][0])) {
$hasChilds = _('no');
if ($this->attributes['hasSubordinates'][0] == 'TRUE') {
$hasChilds = _('yes');
}
$return->addElement(new htmlOutputText(_('Has children')));
$return->addElement(new htmlOutputText($hasChilds), true);
$return->addElement(new htmlSpacer(null, '5px'), true);
}
// group memberships
if (isset($this->attributes['memberOf'][0])) {
$groupLabel = new htmlOutputText(_('Groups'));
$groupLabel->alignment = htmlElement::ALIGN_TOP;
$return->addElement($groupLabel);
$groups = new htmlTable();
for ($i = 0; $i < sizeof($this->attributes['memberOf']); $i++) {
$groups->addElement(new htmlOutputText(getAbstractDN($this->attributes['memberOf'][$i])), true);
}
$return->addElement($groups);
}
return $return;
}
/**
* Processes user input of the primary module page.
* It checks if all input values are correct and updates the associated LDAP attributes.
*
* @return array list of info/error messages
*/
public function process_attributes() {
return array();
}
}
?>