You are here

biblio.metadata.inc in Bibliography Module 7.3

Provides Entity metadata integration.

File

includes/biblio.metadata.inc
View source
<?php

/**
 * @file
 * Provides Entity metadata integration.
 */

/**
 * Extend the defaults.
 */
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;
  }

}

Classes

Namesort descending Description
BiblioMetadataController Extend the defaults.