You are here

function matrix_handler_field::option_definition in Matrix field 6.2

File

./matrix_handler_field.inc, line 13

Class

matrix_handler_field
Field handler to present the Matrix field to the user.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['label'] = array(
    'default' => 'Matrix',
    'translatable' => TRUE,
  );
  return $options;
}