Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 7 |
StickyNode | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 7 |
execute | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
access | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 4 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\node\Plugin\Action\StickyNode. | |
*/ | |
namespace Drupal\node\Plugin\Action; | |
use Drupal\Core\Action\ActionBase; | |
use Drupal\Core\Session\AccountInterface; | |
/** | |
* Makes a node sticky. | |
* | |
* @Action( | |
* id = "node_make_sticky_action", | |
* label = @Translation("Make selected content sticky"), | |
* type = "node" | |
* ) | |
*/ | |
class StickyNode extends ActionBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function execute($entity = NULL) { | |
$entity->sticky = NODE_STICKY; | |
$entity->save(); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) { | |
/** @var \Drupal\node\NodeInterface $object */ | |
$access = $object->access('update', $account, TRUE) | |
->andif($object->sticky->access('edit', $account, TRUE)); | |
return $return_as_object ? $access : $access->isAllowed(); | |
} | |
} |