You are here

function commerce_customer_handler_field_customer_profile_link::construct in Commerce Core 7

Construct a new field handler.

Overrides views_handler_field::construct

2 calls to commerce_customer_handler_field_customer_profile_link::construct()
commerce_customer_handler_field_customer_profile_link_delete::construct in modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_delete.inc
Construct a new field handler.
commerce_customer_handler_field_customer_profile_link_edit::construct in modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_edit.inc
Construct a new field handler.
2 methods override commerce_customer_handler_field_customer_profile_link::construct()
commerce_customer_handler_field_customer_profile_link_delete::construct in modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_delete.inc
Construct a new field handler.
commerce_customer_handler_field_customer_profile_link_edit::construct in modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_edit.inc
Construct a new field handler.

File

modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link.inc, line 7

Class

commerce_customer_handler_field_customer_profile_link
Field handler to present a link to a customer profile.

Code

function construct() {
  parent::construct();
  $this->additional_fields['profile_id'] = 'profile_id';
}