You are here

function select_or_other_theme in Select (or other) 6

Same name and namespace in other branches
  1. 6.2 select_or_other.module \select_or_other_theme()
  2. 7.3 select_or_other.module \select_or_other_theme()
  3. 7.2 select_or_other.module \select_or_other_theme()

Implementation of hook_theme().

File

./select_or_other.module, line 11
The Select (or other) module.

Code

function select_or_other_theme() {
  return array(
    'select_or_other' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'select_or_other_none' => array(
      'arguments' => array(
        'field' => NULL,
      ),
    ),
  );
}