2006-01-01 16:30:05 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
2009-10-27 18:47:12 +00:00
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2013-09-28 11:46:52 +00:00
|
|
|
Copyright (C) 2005 - 2013 Roland Gruber
|
2006-01-01 16:30:05 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file is the interface to the different account types.
|
|
|
|
*
|
|
|
|
* @package types
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** parent class of account types */
|
|
|
|
include_once("baseType.inc");
|
|
|
|
/** parent class of list views */
|
|
|
|
include_once("lists.inc");
|
2007-11-05 18:12:53 +00:00
|
|
|
/** Used to check if this is a LAM Pro release. */
|
|
|
|
include_once("selfService.inc");
|
2006-01-01 16:30:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This includes all type definitions.
|
|
|
|
*/
|
|
|
|
$typesINC_dirname = substr(__FILE__, 0, strlen(__FILE__) - 10) . "/types";
|
|
|
|
$typesINC_dir = dir($typesINC_dirname);
|
|
|
|
// get module names.
|
|
|
|
while ($entry = $typesINC_dir->read())
|
|
|
|
if ((substr($entry, strlen($entry) - 4, 4) == '.inc') && is_file($typesINC_dirname . '/'.$entry)) {
|
|
|
|
include_once($typesINC_dirname . '/'.$entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of available account types.
|
|
|
|
*
|
|
|
|
* @return array list of types
|
|
|
|
*/
|
|
|
|
function getTypes() {
|
|
|
|
$dirname = substr(__FILE__, 0, strlen(__FILE__) - 10) . "/types";
|
|
|
|
$dir = dir($dirname);
|
|
|
|
$return = array();
|
|
|
|
// get type names.
|
2014-04-20 13:15:37 +00:00
|
|
|
while ($entry = $dir->read()) {
|
2006-01-01 16:30:05 +00:00
|
|
|
if ((substr($entry, strlen($entry) - 4, 4) == '.inc') && is_file($dirname . '/'.$entry)) {
|
|
|
|
$entry = substr($entry, 0, strpos($entry, '.'));
|
|
|
|
$return[] = $entry;
|
|
|
|
}
|
2014-04-20 13:15:37 +00:00
|
|
|
}
|
|
|
|
$dir->close();
|
2006-01-01 16:30:05 +00:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the alias name of an account type.
|
|
|
|
*
|
|
|
|
* @param string $type type name
|
|
|
|
* @return string type alias
|
|
|
|
*/
|
|
|
|
function getTypeAlias($type) {
|
2013-09-28 11:46:52 +00:00
|
|
|
if (!empty($_SESSION['config'])) {
|
|
|
|
$typeSettings = $_SESSION['config']->get_typeSettings();
|
|
|
|
if (!empty($typeSettings['customLabel_' . $type])) {
|
|
|
|
return $typeSettings['customLabel_' . $type];
|
|
|
|
}
|
|
|
|
}
|
2006-01-01 16:30:05 +00:00
|
|
|
$obj = new $type();
|
|
|
|
return $obj->getAlias();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the description of an account type.
|
|
|
|
*
|
|
|
|
* @param string $type type name
|
|
|
|
* @return string type description
|
|
|
|
*/
|
|
|
|
function getTypeDescription($type) {
|
|
|
|
$obj = new $type();
|
|
|
|
return $obj->getDescription();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the class name for the list object.
|
|
|
|
*
|
|
|
|
* @param string $type account type
|
|
|
|
* @return string class name
|
|
|
|
*/
|
|
|
|
function getListClassName($type) {
|
|
|
|
$obj = new $type();
|
|
|
|
return $obj->getListClassName();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the default attribute list for an account type.
|
|
|
|
* It is used as default value for the configuration editor.
|
|
|
|
*
|
|
|
|
* @param string $type account type
|
|
|
|
* @return string attribute list
|
|
|
|
*/
|
|
|
|
function getDefaultListAttributes($type) {
|
|
|
|
$obj = new $type();
|
|
|
|
return $obj->getDefaultListAttributes();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of attributes which have a translated description.
|
|
|
|
* This is used for the head row in the list view.
|
|
|
|
*
|
|
|
|
* @param string $type account type
|
|
|
|
* @return array list of descriptions
|
|
|
|
*/
|
|
|
|
function getListAttributeDescriptions($type) {
|
|
|
|
$obj = new $type();
|
|
|
|
return $obj->getListAttributeDescriptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|