class RealisticDummyContentTextWithSummaryField in Realistic Dummy Content 7
Represents the text with summary field, which must have a text format when part of an entity object. Node body is one example.
Hierarchy
Expanded class hierarchy of RealisticDummyContentTextWithSummaryField
2 string references to 'RealisticDummyContentTextWithSummaryField'
File
- api/
includes/ RealisticDummyContentTextWithSummaryField.inc, line 13 - Define RealisticDummyContentTextWithSummaryField autoload class.
View source
class RealisticDummyContentTextWithSummaryField extends RealisticDummyContentField {
/**
* {@inheritdoc}
*/
function ValueFromFile_($file) {
$value = $file
->Value();
// @TODO use the site's default, not filtered_html, as the default format.
$format = $file
->Attribute('format', 'filtered_html');
// If the value cannot be determined, which is different from an empty string.
if ($value === NULL) {
return NULL;
}
if ($value) {
return array(
LANGUAGE_NONE => array(
array(
'value' => $value,
'format' => $format,
),
),
);
}
else {
return array();
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RealisticDummyContentAttribute:: |
private | property | The entity is set on construction and is a subclass of RealisticDummyContentEntityBase. It contains information about the entity to which this field instance is attached. | |
RealisticDummyContentAttribute:: |
private | property | The name of this attribuet, for example title, picture, field_image... | |
RealisticDummyContentAttribute:: |
function | Changes this attribute by looking for data in files. | ||
RealisticDummyContentAttribute:: |
function | Given candidate files, change the value of this attribute based on one of them. | ||
RealisticDummyContentAttribute:: |
function | Returns the appropriate environment, real or testing. | ||
RealisticDummyContentAttribute:: |
function | Return a file object. | ||
RealisticDummyContentAttribute:: |
function | Gets the bundle of the associated entity. | ||
RealisticDummyContentAttribute:: |
function | Get all candidate files for a given field for this entity. | ||
RealisticDummyContentAttribute:: |
function | Getter for $this->entity | ||
RealisticDummyContentAttribute:: |
function | Get the entity type of the associated entity. | ||
RealisticDummyContentAttribute:: |
function | Get acceptable file extensions which contain data for this attribute. | 2 | |
RealisticDummyContentAttribute:: |
function | Return acceptable image file extensions. | ||
RealisticDummyContentAttribute:: |
function | Getter for $this->name | ||
RealisticDummyContentAttribute:: |
function | Return acceptable text file extensions. | ||
RealisticDummyContentAttribute:: |
function | Gets the UID of the associated entity. | ||
RealisticDummyContentAttribute:: |
function | Return an image file object if possible. | ||
RealisticDummyContentAttribute:: |
function | Returns a pseudo-random number. | ||
RealisticDummyContentAttribute:: |
function | Given a RealisticDummyContentFileGroup object, get structured property if extentions ok. | ||
RealisticDummyContentAttribute:: |
function | Given a list of files, return a value from one of them. | ||
RealisticDummyContentAttribute:: |
function | Constructor. | ||
RealisticDummyContentField:: |
function |
Returns the type of this attribute. Overrides RealisticDummyContentAttribute:: |
||
RealisticDummyContentTextWithSummaryField:: |
function |
Given a RealisticDummyContentFileGroup object, get a structured property Overrides RealisticDummyContentAttribute:: |