You are here

function views_handler_field_node_link_clone::render_link in Node clone 8

Renders the link.

File

src/views_handler_field_node_link_clone.php, line 15

Class

views_handler_field_node_link_clone
Field handler to present a clone node link.

Namespace

Drupal\node_clone

Code

function render_link($node, $values) {
  if (!node_clone_access_cloning($node)) {
    return;
  }
  $this->options['alter']['make_link'] = TRUE;
  $this->options['alter']['path'] = "node/{$node->nid}/clone/" . node_clone_get_token($node->nid);

  // @FIXME
  // // @FIXME
  // // This looks like another module's variable. You'll need to rewrite this call
  // // to ensure that it uses the correct configuration object.
  // $method = variable_get('clone_method', 'prepopulate');
  $destination = drupal_get_destination();
  if ($method == 'prepopulate') {
    $this->options['alter']['query'] = $destination;
  }
  elseif (!empty($destination['destination'])) {
    $this->options['alter']['query']['node-clone-destination'] = $destination['destination'];
  }
  $text = !empty($this->options['text']) ? $this->options['text'] : t('clone');
  return $text;
}