function sms_track_admin_view in SMS Framework 7
Same name and namespace in other branches
- 6.2 modules/sms_track/sms_track.admin.inc \sms_track_admin_view()
- 6 modules/sms_track/sms_track.admin.inc \sms_track_admin_view()
Provides the admin view page from the sms_track view in database.
Return value
string HTML content string.
1 string reference to 'sms_track_admin_view'
- sms_track_menu in modules/
sms_track/ sms_track.module - Implements hook_menu().
File
- modules/
sms_track/ sms_track.admin.inc, line 90 - Message tracking module: Admin settings form functions.
Code
function sms_track_admin_view() {
$content = views_embed_view('sms_track', $display_id = 'default');
return $content;
}