LinkDelete.php in Views (for Drupal 7) 8.3
Same filename in this branch
Definition of Views\node\Plugin\views\field\LinkDelete.
Namespace
Views\node\Plugin\views\fieldFile
lib/Views/node/Plugin/views/field/LinkDelete.phpView source
<?php
/**
* @file
* Definition of Views\node\Plugin\views\field\LinkDelete.
*/
namespace Views\node\Plugin\views\field;
use Views\node\Plugin\views\field\Link;
use Drupal\Core\Annotation\Plugin;
/**
* Field handler to present a link to delete a node.
*
* @ingroup views_field_handlers
*
* @Plugin(
* id = "node_link_delete",
* module = "node"
* )
*/
class LinkDelete extends Link {
/**
* Renders the link.
*/
function render_link($node, $values) {
// Ensure user has access to delete this node.
if (!node_access('delete', $node)) {
return;
}
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = "node/{$node->nid}/delete";
$this->options['alter']['query'] = drupal_get_destination();
$text = !empty($this->options['text']) ? $this->options['text'] : t('delete');
return $text;
}
}
Classes
Name | Description |
---|---|
LinkDelete | Field handler to present a link to delete a node. |