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.
|
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;
|
|
|
|
}
|
2008-04-15 11:21:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* As DatalessFields are not initialized with an ID/name,
|
|
|
|
* we keep the title for a unique reference.
|
|
|
|
*/
|
|
|
|
function Name() {
|
|
|
|
return $this->title;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
?>
|