You are here

function sms_theme in SMS Framework 7

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

Implements hook_theme().

File

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

Code

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