Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 5 |
RevisionLinkRevert | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 5 |
getUrlInfo | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
getDefaultLabel | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\node\Plugin\views\field\RevisionLinkRevert. | |
*/ | |
namespace Drupal\node\Plugin\views\field; | |
use Drupal\Core\Url; | |
use Drupal\views\ResultRow; | |
/** | |
* Field handler to present a link to revert a node to a revision. | |
* | |
* @ingroup views_field_handlers | |
* | |
* @ViewsField("node_revision_link_revert") | |
*/ | |
class RevisionLinkRevert extends RevisionLink { | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function getUrlInfo(ResultRow $row) { | |
/** @var \Drupal\node\NodeInterface $node */ | |
$node = $this->getEntity($row); | |
return Url::fromRoute('node.revision_revert_confirm', ['node' => $node->id(), 'node_revision' => $node->getRevisionId()]); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function getDefaultLabel() { | |
return $this->t('Revert'); | |
} | |
} |