mobile_tools.views.inc in Mobile Tools 6.2
Same filename and directory in other branches
File
views/mobile_tools.views.incView source
<?php
/**
* Views include file
*
*/
/**
* Implementation of hook_views_plugin()
*/
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,
),
),
);
}
Functions
Name | Description |
---|---|
mobile_tools_views_plugins | Implementation of hook_views_plugin() |