You are here

function text_theme in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6 examples/simple_field.php \text_theme()
  2. 6 examples/example_field.php \text_theme()
  3. 6 modules/text/text.module \text_theme()
  4. 6.2 modules/text/text.module \text_theme()

Implementation of hook_theme().

File

modules/text/text.module, line 16
Defines simple text field types.

Code

function text_theme() {
  return array(
    'text_textarea' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'text_textfield' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'text_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'text_formatter_plain' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'text_formatter_trimmed' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'text_formatter_foo' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}