2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-dataless
|
|
|
|
*/
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Abstract class for all fields without data.
|
|
|
|
* Labels, headings and the like should extend from this.
|
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 {
|
|
|
|
/**
|
|
|
|
* Function that returns whether this field contains data.
|
|
|
|
* Always returns false.
|
|
|
|
*/
|
|
|
|
function hasData() { return false; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the field's representation in the form.
|
|
|
|
* For dataless fields, this defaults to $Field.
|
|
|
|
*/
|
|
|
|
function FieldHolder() {
|
|
|
|
return $this->Field();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the field's representation in a field group.
|
|
|
|
* For dataless fields, this defaults to $Field.
|
|
|
|
*/
|
|
|
|
function SmallFieldHolder() {
|
|
|
|
return $this->Field();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a readonly version of this field
|
|
|
|
*/
|
|
|
|
function performReadonlyTransformation() {
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|