mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Addressbook - Univention Backend
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @package addressbook
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* Univention backend for addressbook
|
|
*
|
|
* Different mail attribute is only difference to LDAP backend
|
|
*/
|
|
class addressbook_univention extends addressbook_ldap
|
|
{
|
|
function __construct($ldap_config = null, $ds = null)
|
|
{
|
|
$this->schema2egw['univentionmail'] = array(
|
|
'email' => accounts_univention::MAIL_ATTR,
|
|
);
|
|
parent::__construct($ldap_config, $ds);
|
|
}
|
|
|
|
/**
|
|
* saves the content of data to the db
|
|
*
|
|
* @param array $keys if given $keys are copied to data before saveing => allows a save as
|
|
* @return int 0 on success and errno != 0 else
|
|
*/
|
|
function save($keys=null)
|
|
{
|
|
// UCS lowercases email when storing
|
|
$keys['email'] = strtolower(!empty($keys['email']) ? $keys['email'] : $this->data['email']);
|
|
|
|
return parent::save($keys);
|
|
}
|
|
}
|