You are here

function sms_user_user_categories in SMS Framework 7

Implements hook_user_categories().

File

modules/sms_user/sms_user.module, line 738
Provides integration between the SMS Framework and Drupal users.

Code

function sms_user_user_categories() {
  $categories['mobile'] = array(
    'name' => 'mobile',
    'title' => t('Mobile'),
    'weight' => 10,
  );
  return $categories;
}