You are here

function RealisticDummyContentTextProperty::ValueFromFile_ in Realistic Dummy Content 7

Given a RealisticDummyContentFileGroup object, get a structured property

This function is not meant to called directly; rather, call ValueFromFile(). This function must be overriden by subclasses.

Parameters

$file: An object of type RealisticDummyContentFileGroup.

Return value

Returns structured data to be added to the entity object, or NULL if such data can't be creatd.

Throws

Exception.

Overrides RealisticDummyContentAttribute::ValueFromFile_

File

api/includes/RealisticDummyContentTextProperty.inc, line 16
Define RealisticDummyContentTextProperty autoload class.

Class

RealisticDummyContentTextProperty
Represents a text property like a node title or user name.

Code

function ValueFromFile_($file) {
  return $file
    ->Value();
}