You are here

function views_customfield_handler_field_phpcode::option_definition in Views Custom Field 6

File

includes/views_customfield_handler_field_phpcode.inc, line 25
Contains the 'customfield' phpcode field handler.

Class

views_customfield_handler_field_phpcode

Code

function option_definition() {
  $options = parent::option_definition();
  $options['value'] = array(
    'default' => '',
  );
  $options['sortable'] = array(
    'default' => VIEWS_CUSTOMFIELD_SORTABLE_NO,
  );
  return $options;
}