function matrix_theme in Matrix field 6
Same name and namespace in other branches
- 8.2 matrix.module \matrix_theme()
 - 6.2 matrix.module \matrix_theme()
 - 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,
      ),
    ),
  );
}