function mobile_tools_views_plugins in Mobile Tools 6.2
Same name and namespace in other branches
- 6.3 views/mobile_tools.views.inc \mobile_tools_views_plugins()
Implementation of hook_views_plugin()
File
- views/
mobile_tools.views.inc, line 10
Code
function mobile_tools_views_plugins() {
return array(
'module' => 'mobile_tools',
'access' => array(
'mobile_tools' => array(
'title' => t('Mobile Access Setting'),
'help' => t('Provide an access check for the accessing device'),
'handler' => 'mobile_tools_plugin_access_mobile',
'path' => drupal_get_path('module', 'mobile_tools') . '/views/plugins',
'uses options' => TRUE,
),
),
);
}