You are here

function matrix_theme in Matrix field 6

Same name and namespace in other branches
  1. 8.2 matrix.module \matrix_theme()
  2. 6.2 matrix.module \matrix_theme()
  3. 7.2 matrix.module \matrix_theme()

Implementation of hook_theme().

File

./matrix.module, line 145
Defines simple matrix field types.

Code

function matrix_theme() {
  return array(
    'matrix_field_settings' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'matrix_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'matrix_table_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}