1 entityreference.module entityreference_theme($existing, $type, $theme, $path)

Implements hook_theme().

File

core/modules/entityreference/entityreference.module, line 53
Entityreference primary module file.

Code

function entityreference_theme($existing, $type, $theme, $path) {
  return array(
    'entityreference_label' => array(
      'variables' => array('label' => NULL, 'item' => NULL, 'settings' => NULL, 'uri' => NULL),
    ),
    'entityreference_entity_id' => array(
      'variables' => array('item' => NULL, 'settings' => NULL),
    ),
  );
}