You are here

function sms_valid_theme in SMS Framework 6

Same name and namespace in other branches
  1. 6.2 modules/sms_valid/sms_valid.module \sms_valid_theme()
  2. 7 modules/sms_valid/sms_valid.module \sms_valid_theme()

Implementation of hook_theme()

Return value

Array of Drupal theme items.

File

modules/sms_valid/sms_valid.module, line 120
Number validation feature module for Drupal SMS Framework.

Code

function sms_valid_theme() {
  return array(
    'sms_valid_admin_rulesets_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'sms_valid.admin.inc',
    ),
    'sms_valid_admin_ruleset_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'sms_valid.admin.inc',
    ),
  );
}