You are here

function sms_track_admin_view in SMS Framework 6

Same name and namespace in other branches
  1. 6.2 modules/sms_track/sms_track.admin.inc \sms_track_admin_view()
  2. 7 modules/sms_track/sms_track.admin.inc \sms_track_admin_view()

Admin View page

Return value

HTML content string

1 string reference to 'sms_track_admin_view'
sms_track_menu in modules/sms_track/sms_track.module
Implement hook_menu()

File

modules/sms_track/sms_track.admin.inc, line 81
Message tracking module: Admin settings form functions

Code

function sms_track_admin_view() {
  $content = views_embed_view('sms_track', $display_id = 'default');
  return $content;
}