2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-10 16:03:34 +01:00
|
|
|
* Simple label tag. This can be used to add extra text in your forms.
|
|
|
|
* Consider using a {@link ReadonlyField} if you need to display a label
|
|
|
|
* AND a value.
|
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-dataless
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class LabelField extends DatalessField {
|
|
|
|
|
|
|
|
/**
|
2008-10-16 15:26:25 +02:00
|
|
|
* @param string $name
|
|
|
|
* @param string $title
|
|
|
|
* @param Form $form
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2011-03-17 00:03:54 +01:00
|
|
|
function __construct($name, $title, $form = null) {
|
2008-10-16 15:26:25 +02:00
|
|
|
// legacy handling for old parameters: $title, $heading, ...
|
|
|
|
// instead of new handling: $name, $title, $heading, ...
|
|
|
|
$args = func_get_args();
|
|
|
|
if(!isset($args[1])) {
|
|
|
|
$title = (isset($args[0])) ? $args[0] : null;
|
|
|
|
$name = $title;
|
|
|
|
$form = (isset($args[3])) ? $args[3] : null;
|
|
|
|
}
|
|
|
|
|
2011-03-17 00:07:56 +01:00
|
|
|
parent::__construct($name, $title, $form);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a label containing the title, and an HTML class if given.
|
|
|
|
*/
|
|
|
|
function Field() {
|
2008-10-16 15:26:25 +02:00
|
|
|
$attributes = array(
|
|
|
|
'class' => $this->extraClass(),
|
2010-04-12 05:31:02 +02:00
|
|
|
'id' => $this->id()
|
2008-10-16 15:26:25 +02:00
|
|
|
);
|
|
|
|
return $this->createTag(
|
|
|
|
'label',
|
|
|
|
$attributes,
|
2010-12-16 09:12:21 +01:00
|
|
|
($this->getAllowHTML() ? $this->title : Convert::raw2xml($this->title))
|
2008-10-16 15:26:25 +02:00
|
|
|
);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|