You are here

function masked_input_theme in Masked Input 7.2

Same name and namespace in other branches
  1. 8 masked_input.module \masked_input_theme()

Implements hook_theme().

File

./masked_input.module, line 29
Provides a form element, Field widget, and simple API for using the Masked Input jQuery plugin.

Code

function masked_input_theme($existing, $type, $theme, $path) {
  return array(
    'masked_input_settings_definitions' => array(
      'render element' => 'form',
      'file' => 'masked_input.theme.inc',
    ),
  );
}