You are here

public function webform_handler_field_node_link_edit::render_link in Webform 7.3

Same name and namespace in other branches
  1. 7.4 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 16
Views handler to display an edit link for Webform configuration.

Class

webform_handler_field_node_link_edit
Field handler to present a link node edit.

Code

public function render_link($node, $values) {

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