support-2.0.x-dev/modules/support_ticket/src/Plugin/Action/SaveSupportTicket.php
modules/support_ticket/src/Plugin/Action/SaveSupportTicket.php
<?php
namespace Drupal\support_ticket\Plugin\Action;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;
/**
* Provides an action that can save any entity.
*
* @Action(
* id = "support_ticket_save_action",
* label = @Translation("Save support ticket"),
* type = "support_ticket"
* )
*/
class SaveSupportTicket extends ActionBase {
/**
* {@inheritdoc}
*/
public function execute($entity = NULL) {
// We need to change at least one value, otherwise the changed timestamp
// will not be updated.
$entity->changed = 0;
$entity->save();
}
/**
* {@inheritdoc}
*/
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
/** @var \Drupal\support_ticket\SupportTicketInterface $object */
return $object->access('update', $account, $return_as_object);
}
}
