DeleteMedia.php in Media entity 8        
                          
                  
                        
  
  
  
  
File
  src/Plugin/Action/DeleteMedia.php
  
    View source  
  <?php
namespace Drupal\media_entity\Plugin\Action;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\user\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
class DeleteMedia extends ActionBase implements ContainerFactoryPluginInterface {
  
  protected $tempStore;
  
  protected $currentUser;
  
  public function __construct(array $configuration, $plugin_id, $plugin_definition, $temp_store_factory, AccountInterface $current_user) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->currentUser = $current_user;
    $this->tempStore = $temp_store_factory
      ->get('media_multiple_delete_confirm');
  }
  
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->has('tempstore.private') ? $container
      ->get('tempstore.private') : $container
      ->get('user.private_tempstore'), $container
      ->get('current_user'));
  }
  
  public function executeMultiple(array $entities) {
    $info = [];
    
    foreach ($entities as $media) {
      $langcode = $media
        ->language()
        ->getId();
      $info[$media
        ->id()][$langcode] = $langcode;
    }
    $this->tempStore
      ->set($this->currentUser
      ->id(), $info);
  }
  
  public function execute($object = NULL) {
    $this
      ->executeMultiple(array(
      $object,
    ));
  }
  
  public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
    
    return $object
      ->access('delete', $account, $return_as_object);
  }
}