You are here

function crm_core_contact_handler_field_contact_type::option_definition in CRM Core 7

Options definitions.

Overrides views_handler_field::option_definition

File

modules/crm_core_contact/includes/views/handlers/crm_core_contact_handler_field_contact_type.inc, line 15
Field handler to provide simple renderer that allows linking to a contact.

Class

crm_core_contact_handler_field_contact_type
Handler class.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['link_to_contact_type'] = array(
    'default' => FALSE,
  );
  $options['machine_name'] = array(
    'default' => FALSE,
  );
  return $options;
}