You are here

public function BiblioMetadataController::entityPropertyInfo in Bibliography Module 7.3

Overrides EntityDefaultMetadataController::entityPropertyInfo

File

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

Class

BiblioMetadataController
Extend the defaults.

Code

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