2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Abstract class for all fields without data.
|
|
|
|
* Labels, headings and the like should extend from this.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-dataless
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class DatalessField extends FormField {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-16 15:26:25 +02:00
|
|
|
/**
|
|
|
|
* @var bool $allowHTML
|
|
|
|
*/
|
|
|
|
protected $allowHTML;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2012-09-19 12:07:39 +02:00
|
|
|
* function that returns whether this field contains data.
|
2014-08-15 08:53:05 +02:00
|
|
|
* Always returns false.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function hasData() { return false; }
|
2011-12-22 13:10:57 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getAttributes() {
|
2011-12-22 13:10:57 +01:00
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array(
|
|
|
|
'type' => 'hidden',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Returns the field's representation in the form.
|
|
|
|
* For dataless fields, this defaults to $Field.
|
2015-06-20 12:11:08 +02:00
|
|
|
*
|
|
|
|
* @return HTMLText
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function FieldHolder($properties = array()) {
|
2012-04-11 08:07:55 +02:00
|
|
|
return $this->Field($properties);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the field's representation in a field group.
|
|
|
|
* For dataless fields, this defaults to $Field.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function SmallFieldHolder($properties = array()) {
|
2012-04-14 13:40:03 +02:00
|
|
|
return $this->Field($properties);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a readonly version of this field
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function performReadonlyTransformation() {
|
2008-12-04 23:38:32 +01:00
|
|
|
$clone = clone $this;
|
|
|
|
$clone->setReadonly(true);
|
|
|
|
return $clone;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-04-15 11:21:25 +02:00
|
|
|
/**
|
2008-10-16 15:26:25 +02:00
|
|
|
* @param bool $bool
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setAllowHTML($bool) {
|
2008-10-16 15:26:25 +02:00
|
|
|
$this->allowHTML = $bool;
|
2012-02-17 13:35:26 +01:00
|
|
|
return $this;
|
2008-10-16 15:26:25 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-16 15:26:25 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
2008-04-15 11:21:25 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getAllowHTML() {
|
2008-10-16 15:26:25 +02:00
|
|
|
return $this->allowHTML;
|
2008-04-15 11:21:25 +02:00
|
|
|
}
|
2011-03-23 05:12:25 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Type() {
|
2011-12-22 13:10:57 +01:00
|
|
|
return 'readonly';
|
|
|
|
}
|
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|