function sms_user_menu_alter in SMS Framework 7
Implements hook_menu_alter().
File
- modules/
sms_user/ sms_user.module, line 54 - Provides integration between the SMS Framework and Drupal users.
Code
function sms_user_menu_alter(&$callbacks) {
$callbacks['user/%user_category/edit/mobile']['page callback'] = 'sms_user_settings';
$callbacks['user/%user_category/edit/mobile']['page arguments'] = array(
1,
);
$callbacks['user/%user_category/edit/mobile']['module'] = 'sms_user';
$callbacks['user/%user_category/edit/mobile']['file'] = 'sms_user.module';
}