function panelizer_handler_field_node_link::construct in Panelizer 7
Same name and namespace in other branches
- 6 plugins/views/panelizer_handler_field_node_link.inc \panelizer_handler_field_node_link::construct()
Construct a new field handler.
Overrides views_handler_field::construct
File
- plugins/views/ panelizer_handler_field_node_link.inc, line 15 
Class
- panelizer_handler_field_node_link
- Views field handler for rendering node links that point to panelizer tabs.
Code
function construct() {
  parent::construct();
  $this->tab_map = array(
    'panelizer' => t('Settings'),
    'panelizer/context' => t('Context'),
    'panelizer/layout' => t('Layout'),
    'panelizer/content' => t('Content'),
  );
}