You are here

function textformatter_theme in Text list formatter 6

Same name and namespace in other branches
  1. 8.2 textformatter.module \textformatter_theme()
  2. 7 textformatter.module \textformatter_theme()

Implementation of hook_theme().

File

./textformatter.module, line 38

Code

function textformatter_theme() {
  return array(
    'textformatter_formatter_text_comma' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_textformatter_formatter_text_comma',
    ),
    'textformatter_formatter_text_comma_and' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_textformatter_formatter_text_comma_and',
    ),
    'textformatter_formatter_text_comma_and_period' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_textformatter_formatter_text_comma_and_period',
    ),
    'textformatter_formatter_text_ordered_list' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_textformatter_formatter_text_orderedlist',
    ),
    'textformatter_formatter_text_unordered_list' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_textformatter_formatter_text_unorderedlist',
    ),
  );
}