You are here

function services_client_theme in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client.module \services_client_theme()

Implements hook_theme().

File

./services_client.module, line 198
Services client module allows to push different types of objects on different types of events such as node_save, user_save to remote masters.

Code

function services_client_theme() {
  return array(
    'services_client_admin_list' => array(
      'render element' => 'element',
      'file' => 'services_client.theme.inc',
    ),
  );
}