2007-03-29 18:10:14 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base d'un type d'attribut HTML
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
class LSattr_html {
|
|
|
|
|
|
|
|
var $name;
|
|
|
|
var $config;
|
2007-11-15 19:07:24 +01:00
|
|
|
var $attribute;
|
2008-10-15 20:54:05 +02:00
|
|
|
var $LSformElement_type = false;
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructeur
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette methode construit l'objet et définis la configuration.
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @param[in] $name string Nom de l'attribut ldap
|
|
|
|
* @param[in] $config array Configuration de l'objet
|
2008-02-08 18:39:24 +01:00
|
|
|
* @param[in] &$attribute LSattribute L'objet LSattribut parent
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval boolean Retourne true.
|
|
|
|
*/
|
|
|
|
function LSattr_html ($name,$config,&$attribute) {
|
2007-03-29 18:10:14 +02:00
|
|
|
$this -> name = $name;
|
|
|
|
$this -> config = $config;
|
2015-04-14 15:10:40 +02:00
|
|
|
$this -> attribute =& $attribute;
|
2007-03-29 18:10:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
/**
|
|
|
|
* Retourne le label de l'attribut
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Retourne le label de l'attribut ou son nom si aucun label n'est défini
|
2008-02-08 18:39:24 +01:00
|
|
|
* dans la configuration.
|
|
|
|
*
|
|
|
|
* @retval string Le label de l'attribut.
|
|
|
|
*/
|
2007-03-29 18:10:14 +02:00
|
|
|
function getLabel() {
|
2008-02-08 18:39:24 +01:00
|
|
|
if ( $this -> config['label'] != '' ) {
|
2009-03-19 18:42:51 +01:00
|
|
|
return __($this -> config['label']);
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-03-19 18:42:51 +01:00
|
|
|
return __($this -> name);
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Ajoute l'attribut au formualaire passer en paramètre
|
2008-02-08 18:39:24 +01:00
|
|
|
*
|
|
|
|
* @param[in] &$form LSform Le formulaire
|
|
|
|
* @param[in] $idForm L'identifiant du formulaire
|
|
|
|
* @param[in] $data Valeur du champs du formulaire
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval LSformElement L'element du formulaire ajouté
|
2008-02-08 18:39:24 +01:00
|
|
|
*/
|
2007-11-15 19:07:24 +01:00
|
|
|
function addToForm (&$form,$idForm,$data=NULL) {
|
2008-10-15 20:54:05 +02:00
|
|
|
if (!$this -> LSformElement_type) {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSattr_html_01',$this -> name);
|
2008-10-15 20:54:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$element=$form -> addElement($this -> LSformElement_type, $this -> name, $this -> config['label'],$this -> config, $this);
|
|
|
|
if(!$element) {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSform_06',$this -> name);
|
2008-10-15 20:54:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($data) {
|
|
|
|
$element -> setValue($data);
|
|
|
|
}
|
|
|
|
return $element;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
2008-02-26 18:40:05 +01:00
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Effectue les tâches nécéssaires au moment du rafraichissement du formulaire
|
2008-02-26 18:40:05 +01:00
|
|
|
*
|
|
|
|
* @param[in] $data mixed La valeur de l'attribut
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval mixed La valeur formatée de l'attribut
|
2008-02-26 18:40:05 +01:00
|
|
|
**/
|
|
|
|
function refreshForm($data) {
|
|
|
|
return $data;
|
|
|
|
}
|
2011-01-20 12:14:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the values to be displayed in the LSform
|
|
|
|
*
|
|
|
|
* @param[in] $data The values of attribute
|
|
|
|
*
|
|
|
|
* @retval array The values to be displayed in the LSform
|
|
|
|
**/
|
|
|
|
function getFormVal($data) {
|
|
|
|
return $this -> attribute -> getDisplayValue();
|
|
|
|
}
|
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
2009-01-02 17:00:25 +01:00
|
|
|
/*
|
|
|
|
* Error Codes
|
|
|
|
*/
|
2009-01-25 15:37:03 +01:00
|
|
|
LSerror :: defineError('LSattr_html_01',
|
|
|
|
_("LSattr_html : The method addToForm() of the HTML type of the attribute %{attr} is not defined.")
|
2009-01-02 17:00:25 +01:00
|
|
|
);
|
|
|
|
// 02 : not yet used
|
2009-01-25 15:37:03 +01:00
|
|
|
LSerror :: defineError('LSattr_html_03',
|
2009-02-14 00:06:58 +01:00
|
|
|
_("LSattr_html_%{type} : Multiple data are not supported for this field type.")
|
2009-01-02 17:00:25 +01:00
|
|
|
);
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
?>
|