You are here

function entity_share_ui_client_theme in Entity Share 7

Implements hook_theme().

Defines the theming capabilities provided by this module.

File

modules/entity_share_ui/modules/entity_share_ui_client/entity_share_ui_client.module, line 171
Entity Share UI Client .module file.

Code

function entity_share_ui_client_theme() {
  return array(
    'entity_share_form_choose_endpoint_page' => array(
      'template' => 'templates/entity-share-form-choose-endpoint-page',
      'variables' => array(
        'nodes_table' => NULL,
        'form' => NULL,
      ),
    ),
  );
}