You are here

function connector_theme in Connector 6

Same name and namespace in other branches
  1. 7 connector.module \connector_theme()

Implementation of hook_theme().

File

./connector.module, line 26
Connector module

Code

function connector_theme() {
  return array(
    'connector_buttons' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'connector_connections_list_tableselect' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}