You are here

function biblio_entities in Bibliography Module 7.2

Very simply returns an array of all the entity types that biblio creates.

Return value

array Iterative array containing the biblio entity types

2 calls to biblio_entities()
biblio_combined_bundle_load in ./biblio.module
Get an individual publication type definition object. Necessary for the %biblio_bundle menu placeholder to work in hook_menu().
biblio_wrapper in ./biblio.module
Helper function to get a wrapper object, built by the Entity API, to help ease the pain of getting/setting field data. Fields for entities can be get and set using the following syntax: @example // set biblio field data (in this case, the…

File

./biblio.module, line 2783

Code

function biblio_entities() {
  return array(
    'biblio',
    'biblio_contributor',
  );
}