You are here

function matrix_handler_cell::option_definition in Matrix field 6.2

File

./matrix_handler_cell.inc, line 15

Class

matrix_handler_cell
Cell handler to present a cell from the Matrix field to the user.

Code

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