You are here

public function webform_handler_field_node_link_edit::render_link in Webform 7.4

Same name and namespace in other branches
  1. 7.3 views/webform_handler_field_node_link_edit.inc \webform_handler_field_node_link_edit::render_link()

Renders the link.

Overrides views_handler_field_node_link::render_link

File

views/webform_handler_field_node_link_edit.inc, line 35

Class

webform_handler_field_node_link_edit
Views handler to display an edit link for Webform configuration.

Code

public function render_link($node, $values) {

  // Ensure node is webform-enabled and user has access to edit this node.
  if (!in_array($node->type, webform_node_types()) || !node_access('update', $node)) {
    return;
  }
  $this->options['alter']['make_link'] = TRUE;
  $this->options['alter']['path'] = "node/{$node->nid}/webform" . (strlen($this->options['subpath']) ? '/' . $this->options['subpath'] : '');
  $text = !empty($this->options['text']) ? $this->options['text'] : t('edit webform');
  return $text;
}