function entityconnect_theme in Entity connect 7
Same name and namespace in other branches
- 8.2 entityconnect.module \entityconnect_theme()
 - 7.2 entityconnect.module \entityconnect_theme()
 
Implements hook_theme().
File
- ./
entityconnect.module, line 102  - Handles the main hooks used by entityconnect.
 
Code
function entityconnect_theme() {
  $items = array();
  $items['entityconnect_taxonomy_term_add_list'] = array(
    'arguments' => array(
      'items' => NULL,
    ),
    'file' => 'includes/entityconnect.pages.inc',
  );
  $items['entityconnect_entity_add_list'] = array(
    'arguments' => array(
      'items' => NULL,
      'cache id' => NULL,
    ),
    'file' => 'includes/entityconnect.pages.inc',
  );
  return $items;
}