summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r--modules/drupal/drupal.module11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 2eb7570d0..acdc64584 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -46,6 +46,17 @@ print drupal_client_page();
}
}
+/**
+ * Implementation of hook_theme()
+ */
+function drupal_theme() {
+ return array(
+ 'client_list' => array(
+ 'arguments' => array('clients' => NULL),
+ ),
+ );
+}
+
function drupal_sites_registry_settings() {
// Check if all required fields are present
if ((variable_get('site_name', 'Drupal') == 'Drupal') || (variable_get('site_name', 'Drupal') == '')) {