You are here

function domain_views_handler_field_domain_id::option_definition in Domain Access 6.2

File

domain_views/includes/domain_views_handler_field_domain_id.inc, line 23
Interface between domain_views.module and views.module.

Class

domain_views_handler_field_domain_id
Field handler to provide simple renderer that allows linking to a domain.

Code

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