WebformSubmissionStickyAction.php in Webform 8.5
Same filename and directory in other branches
Namespace
Drupal\webform\Plugin\ActionFile
src/Plugin/Action/WebformSubmissionStickyAction.phpView source
<?php
namespace Drupal\webform\Plugin\Action;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;
/**
* Makes a webform submission sticky.
*
* @Action(
* id = "webform_submission_make_sticky_action",
* label = @Translation("Star/Flag submission"),
* type = "webform_submission"
* )
*/
class WebformSubmissionStickyAction extends ActionBase {
/**
* {@inheritdoc}
*/
public function execute($entity = NULL) {
/** @var \Drupal\webform\WebformSubmissionInterface $entity */
$entity
->setSticky(TRUE)
->save();
}
/**
* {@inheritdoc}
*/
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
/** @var \Drupal\webform\WebformSubmissionInterface $object */
$result = $object->sticky
->access('edit', $account, TRUE)
->andIf($object
->access('update', $account, TRUE));
return $return_as_object ? $result : $result
->isAllowed();
}
}
Classes
Name![]() |
Description |
---|---|
WebformSubmissionStickyAction | Makes a webform submission sticky. |