You are here

function views_handler_field_system_info_project::option_definition in Views System 6.2

Same name and namespace in other branches
  1. 6.3 views/handlers/views_handler_field_system_info_project.inc \views_handler_field_system_info_project::option_definition()
  2. 7.3 views/handlers/views_handler_field_system_info_project.inc \views_handler_field_system_info_project::option_definition()

File

views/handlers/views_handler_field_system_info_project.inc, line 17
Views field handler for the views_system module.

Class

views_handler_field_system_info_project
Provides display options and renders the project field of the system item.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['system_info_project_link'] = array(
    'default' => FALSE,
  );
  $options['system_info_project_link_path'] = array(
    'default' => 'http://drupal.org/project/[project]',
  );
  return $options;
}