You are here

protected function Biblio::defaultUri in Bibliography Module 7.2

Override this in order to implement a custom default URI and specify 'entity_class_uri' as 'uri callback' hook_entity_info().

Overrides Entity::defaultUri

File

includes/biblio.controller.inc, line 11

Class

Biblio
Biblio class.

Code

protected function defaultUri() {
  return array(
    'path' => 'biblio/' . $this
      ->identifier(),
  );
}