You are here

function sms_theme in SMS Framework 6

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

Implementation of hook_theme().

File

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

Code

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