<?php
/***************************************************************************
*
* CustomListe.php
* -------------------
*
* begin : Friday, Jul 5, 2002
* copyright : (C) 2002 The Kabramps Team
* email : hide@address.com,
* hide@address.com
*
*
*
***************************************************************************/
/***************************************************************************
*
* 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.
* (http://www.gnu.org/licenses/gpl.html)
*
***************************************************************************/
class CustomList extends Liste // List is a reserved name ;-)
{
var $jsfiles = array('templates/std/controls/CustomList/customlist.js');
function CustomList ()
{}
function get_edit_panel ()
{
global $options;
$tmpl = new TPLInterface();
$size = $this->attributeoptions["size"];
if ( ( $size == "" ) || ( $size < 2 ) ) $size = 2;
$textvalue = $this->utf8_LDAPdecode($this->value);
$tmpl->assign(array("ATTRIBLABEL" => $this->label,
"ATTRIBNAME" => $this->attribute,
"SIZE" => $size,
"WIDTH" => $this->attributeoptions["width"],
"MAXLENGTH" => $this->attributeoptions["maxlength"],
"ADDBUTTON" => gettext("add"),
"MODIFYBUTTON" => gettext("modify"),
"DELETEBUTTON" => gettext("delete"),
"ERRORMESSAGE" => $this->get_error_message(),
'OPTIONS' => $textvalue
));
return $tmpl->fetch($this->get_template('edit'));
}
function get_class_name()
{
return 'CustomList';
}
}
?>