You are here

function sms_track_views_api in SMS Framework 6.2

Same name and namespace in other branches
  1. 6 modules/sms_track/sms_track.module \sms_track_views_api()
  2. 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 283
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',
  );
}