You are here

function sms_theme in SMS Framework 6.2

Same name and namespace in other branches
  1. 6 sms.module \sms_theme()
  2. 7 sms.module \sms_theme()

Implements hook_theme().

File

./sms.module, line 139
The core of the SMS Framework. Provides gateway managment and API for sending and receiving SMS messages.

Code

function sms_theme() {
  $items['sms_admin_default_form'] = $items['sms_carriers_admin_form'] = array(
    'arguments' => array(
      'form' => NULL,
    ),
    'file' => 'sms.admin.inc',
  );
  return $items;
}