AssetAddLog.php in farmOS 2.x
File
modules/core/log/src/Plugin/Action/AssetAddLog.php
View source
<?php
namespace Drupal\farm_log\Plugin\Action;
use Drupal\Core\Action\Plugin\Action\EntityActionBase;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\TempStore\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
class AssetAddLog extends EntityActionBase {
protected $tempStore;
protected $currentUser;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
$this->currentUser = $current_user;
$this->tempStore = $temp_store_factory
->get('asset_add_log_confirm');
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager);
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('tempstore.private'), $container
->get('current_user'));
}
public function executeMultiple(array $entities) {
$this->tempStore
->set($this->currentUser
->id(), $entities);
}
public function execute($object = NULL) {
$this
->executeMultiple([
$object,
]);
}
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
return $object
->access('update', $account, $return_as_object);
}
}