You are here

function entityreference_theme in Entity reference 7

Implements hook_theme().

File

./entityreference.module, line 100
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,
      ),
    ),
  );
}