From c9fd571543726cffe4a5c8f6cbb969d5690751a9 Mon Sep 17 00:00:00 2001 From: xjm <xjm@65776.no-reply.drupal.org> Date: Sat, 20 Oct 2012 10:36:59 -0500 Subject: [PATCH] Issue #1808756 by xjm: Remove outdated information from hook_views_data() and hook_views_data_alter(). --- views.api.php | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/views.api.php b/views.api.php index 4479cd02bf15..5780ba0dcf89 100644 --- a/views.api.php +++ b/views.api.php @@ -288,14 +288,9 @@ */ /** - * Describes data tables (or the equivalent) to Views. + * Describe data tables (or the equivalent) to Views. * - * This hook should be placed in MODULENAME.views.inc and it will be - * auto-loaded. MODULENAME.views.inc must be in the directory specified by the - * 'path' key returned by MODULENAME_views_api(), or the same directory as the - * .module file, if 'path' is unspecified. - * - * @return + * @return array * An associative array describing the data structure. Primary key is the * name used internally by Views for the table(s) – usually the actual table * name. The values for the key entries are described in detail below. @@ -454,22 +449,15 @@ function hook_views_data() { } /** - * Alter table structure. - * - * You can add/edit/remove existing tables defined by hook_views_data(). - * - * This hook should be placed in MODULENAME.views.inc and it will be - * auto-loaded. MODULENAME.views.inc must be in the directory specified by the - * 'path' key returned by MODULENAME_views_api(), or the same directory as the - * .module file, if 'path' is unspecified. + * Alter the table structure defined by hook_views_data(). * - * @param $data + * @param array $data * An array of all Views data, passed by reference. See hook_views_data() for * structure. * * @see hook_views_data() */ -function hook_views_data_alter(&$data) { +function hook_views_data_alter(array &$data) { // This example alters the title of the node:nid field in the Views UI. $data['node']['nid']['title'] = t('Node-Nid'); -- GitLab