From 97e344fc71919016cf493eae154e96a6476601c6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 7 Oct 2011 11:52:54 -0300 Subject: Adding views support --- muamba.module | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'muamba.module') diff --git a/muamba.module b/muamba.module index 840136d..0cfe977 100644 --- a/muamba.module +++ b/muamba.module @@ -269,3 +269,23 @@ function muamba_user_delete($account) { ->condition('owner', $account->uid) ->execute(); } + +/** + * Register View API information. This is required for your module to have + * its include files loaded; for example, when implementing + * hook_views_default_views(). + * + * @return + * An array with the following possible keys: + * - api: (required) The version of the Views API the module implements. + * - path: (optional) If includes are stored somewhere other than within + * the root module directory, specify its path here. + * - template path: (optional) A path where the module has stored it's views template files. + * When you have specificed this key views automatically uses the template files for the views. + * You can use the same naming conventions like for normal views template files. + */ +function muamba_views_api() { + return array( + 'api' => 3, + ); +} -- cgit v1.2.3