/[drupal]/contributions/modules/simple_access/simple_access.views.inc
ViewVC logotype

Contents of /contributions/modules/simple_access/simple_access.views.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Wed Oct 7 03:21:56 2009 UTC (7 weeks, 2 days ago) by gordon
Branch: MAIN
CVS Tags: DRUPAL-7--2-0-ALPHA1, HEAD
Changes since 1.2: +3 -3 lines
File MIME type: text/x-php
* Fix up all the issues identified by Coder
1 <?php
2 // $Id: simple_access.views.inc,v 1.2 2009/10/06 05:45:53 gordon Exp $
3 /**
4 * @file
5 * Provide Simple Access security method for views.
6 */
7
8 /**
9 * Implements hook_views_plugins().
10 */
11 function simple_access_views_plugins() {
12 return array(
13 'access' => array(
14 'simple_access' => array(
15 'title' => t('Simple access group'),
16 'help' => t('Will only make the views available if the user is apart of the specificed group.'),
17 'handler' => 'simple_access_views_plugin_group',
18 'uses options' => TRUE,
19 'path' => drupal_get_path('module', 'simple_access') . '/views',
20 ),
21 ),
22 );
23 }

  ViewVC Help
Powered by ViewVC 1.1.2