You are here

function panelizer_handler_field_link::construct in Panelizer 7.2

Same name and namespace in other branches
  1. 7.3 plugins/views/panelizer_handler_field_link.inc \panelizer_handler_field_link::construct()

Construct a new field handler.

Overrides views_handler_field::construct

File

plugins/views/panelizer_handler_field_link.inc, line 15

Class

panelizer_handler_field_link
Views field handler for rendering node links that point to panelizer tabs.

Code

function construct() {
  parent::construct();
  $this->tab_map = array(
    'settings' => t('Settings'),
    'context' => t('Context'),
    'layout' => t('Layout'),
    'content' => t('Content'),
  );
}