function sms_track_views_api in SMS Framework 6
Same name and namespace in other branches
- 6.2 modules/sms_track/sms_track.module \sms_track_views_api()
- 7 modules/sms_track/sms_track.module \sms_track_views_api()
Implement hook_views_api()
Return value
Views API required information array
File
- modules/
sms_track/ sms_track.module, line 282 - Message tracking feature module for Drupal SMS Framework.
Code
function sms_track_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'sms_track') . '/views',
);
}