LDAPAccountManager/lam/lib/types/asteriskExt.inc

147 lines
4.0 KiB
PHP
Raw Normal View History

2009-11-14 18:31:39 +00:00
<?php
/*
$Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
2012-02-05 19:03:25 +00:00
Copyright (C) 2009 Pozdnyak Pavel
2010 - 2012 Roland Gruber
2009-11-14 18:31:39 +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
*/
/**
* The account type for Asterisk extensions.
*
* @package types
* @author Pozdnyak Pavel
2012-02-05 19:03:25 +00:00
* @author Roland Gruber
2009-11-14 18:31:39 +00:00
*/
/**
* The account type for Asterisk extensions.
*
* @package types
*/
class asteriskExt extends baseType {
/**
* Constructs a new domain type object.
*/
public function __construct() {
parent::__construct();
$this->LABEL_CREATE_ANOTHER_ACCOUNT = _('Create another extension');
$this->LABEL_BACK_TO_ACCOUNT_LIST = _('Back to extensions list');
}
/**
* Returns the alias name of this account type.
*
* @return string alias name
*/
function getAlias() {
return _("Asterisk extensions");
}
/**
* Returns the description of this account type.
*
* @return string description
*/
function getDescription() {
return _("Asterisk extensions entries");
}
/**
* Returns the class name for the list object.
*
* @return string class name
*/
function getListClassName() {
return "lamAsteriskExtList";
}
/**
* Returns the default attribute list for this account type.
*
* @return string attribute list
*/
function getDefaultListAttributes() {
return "#cn;#AstExtension;#AstPriority";
}
/**
* Returns a list of attributes which have a translated description.
* This is used for the head row in the list view.
*
* @return array list of descriptions
*/
function getListAttributeDescriptions() {
return array(
"cn" => _("Extension name"),
"astextension" => _("Label"),
"astpriority" => _("Priority")
);
}
2010-12-14 21:16:21 +00:00
/**
* Returns the the title text for the title bar on the new/edit page.
*
* @param array $attributes list of LDAP attributes for the displayed account (null, if new account)
* @return String title text
*/
public function getTitleBarTitle($attributes) {
if ($attributes == null) {
return _("New extension");
}
// check if a common name is set
if (isset($attributes['cn'][0])) {
return htmlspecialchars($attributes['cn'][0]);
}
// fall back to default
return parent::getTitleBarTitle($attributes);
}
2009-11-14 18:31:39 +00:00
}
/**
* Generates the list view.
*
* @package lists
* @author Pozdnyak Pavel
*
*/
class lamAsteriskExtList extends lamList {
/**
* Constructor
*
* @param string $type account type
* @return lamList list object
*/
function __construct($type) {
parent::__construct($type);
$this->labels = array(
2012-02-09 17:08:39 +00:00
'nav' => _("Extension count: %s"),
2012-02-05 19:03:25 +00:00
'error_noneFound' => _("No Asterisk extensions found."),
2009-11-14 18:31:39 +00:00
'newEntry' => _("New extension"),
2012-02-05 19:03:25 +00:00
'deleteEntry' => _("Delete selected extensions"));
2009-11-14 18:31:39 +00:00
}
}
?>