You are here

function registration_handler_field_registration_link::option_definition in Entity Registration 8.2

Same name in this branch
  1. 8.2 src/registration_handler_field_registration_link.php \Drupal\registration\registration_handler_field_registration_link::option_definition()
  2. 8.2 modules/registration_views/includes/registration_handler_field_registration_link.inc \registration_handler_field_registration_link::option_definition()
  3. 8.2 modules/registration_views/src/registration_handler_field_registration_link.php \Drupal\registration_views\registration_handler_field_registration_link::option_definition()
Same name and namespace in other branches
  1. 8 src/registration_handler_field_registration_link.php \Drupal\registration\registration_handler_field_registration_link::option_definition()

File

src/registration_handler_field_registration_link.php, line 10
Field handler to render a link to a registration.

Class

registration_handler_field_registration_link
@file Field handler to render a link to a registration.

Namespace

Drupal\registration

Code

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