You are here

function matrix_widget_info in Matrix field 5

Same name and namespace in other branches
  1. 6.2 matrix.module \matrix_widget_info()
  2. 6 matrix.module \matrix_widget_info()

Implementation of hook_widget_info().

File

./matrix.module, line 126

Code

function matrix_widget_info() {
  return array(
    'matrix' => array(
      'label' => 'Textfields',
      'field types' => array(
        'matrix',
      ),
    ),
  );
}