You are here

class BiblioMetadataController in Bibliography Module 7.3

Extend the defaults.

Hierarchy

Expanded class hierarchy of BiblioMetadataController

1 string reference to 'BiblioMetadataController'
biblio_entity_info in ./biblio.module
Implements hook_entity_info().

File

includes/biblio.metadata.inc, line 11
Provides Entity metadata integration.

View source
class BiblioMetadataController extends EntityDefaultMetadataController {
  public function entityPropertyInfo() {
    $info = parent::entityPropertyInfo();
    $properties =& $info[$this->type]['properties'];
    $properties['title']['setter callback'] = 'entity_property_verbatim_set';
    return $info;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BiblioMetadataController::entityPropertyInfo public function Overrides EntityDefaultMetadataController::entityPropertyInfo
EntityDefaultMetadataController::$type protected property
EntityDefaultMetadataController::bundleOptionsList public static function A options list callback returning all bundles for an entity type.
EntityDefaultMetadataController::convertSchema protected function Return a set of properties for an entity based on the schema definition
EntityDefaultMetadataController::__construct public function