You are here

function editablefields_theme in Editable Fields 6

Same name and namespace in other branches
  1. 6.3 editablefields.module \editablefields_theme()
  2. 6.2 editablefields.module \editablefields_theme()

Implementation of hook_theme().

File

./editablefields.module, line 35
Editable fields module.

Code

function editablefields_theme() {
  return array(
    'editablefields_formatter_editable' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_editablefields_formatter_editable',
    ),
    'editablefields_formatter_clicktoedit' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_editablefields_formatter_editable',
    ),
  );
}