You are here

DeleteMedia.php in Media entity 8

Same filename and directory in other branches
  1. 8.2 src/Plugin/Action/DeleteMedia.php

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;

/**
 * Redirects to a media deletion form.
 *
 * @Action(
 *   id = "media_delete_action",
 *   label = @Translation("Delete media"),
 *   type = "media",
 *   confirm_form_route_name = "entity.media.multiple_delete_confirm"
 * )
 */
class DeleteMedia extends ActionBase implements ContainerFactoryPluginInterface {

  /**
   * The tempstore object.
   *
   * @var \Drupal\Core\TempStore\PrivateTempStoreFactory|\Drupal\user\PrivateTempStoreFactory
   */
  protected $tempStore;

  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $currentUser;

  /**
   * Constructs a new DeleteMedia object.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin ID for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory|\Drupal\user\PrivateTempStoreFactory $temp_store_factory
   *   The tempstore factory.
   * @param AccountInterface $current_user
   *   Current user.
   */
  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');
  }

  /**
   * {@inheritdoc}
   */
  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'));
  }

  /**
   * {@inheritdoc}
   */
  public function executeMultiple(array $entities) {
    $info = [];

    /** @var \Drupal\media_entity\MediaInterface $media */
    foreach ($entities as $media) {
      $langcode = $media
        ->language()
        ->getId();
      $info[$media
        ->id()][$langcode] = $langcode;
    }
    $this->tempStore
      ->set($this->currentUser
      ->id(), $info);
  }

  /**
   * {@inheritdoc}
   */
  public function execute($object = NULL) {
    $this
      ->executeMultiple(array(
      $object,
    ));
  }

  /**
   * {@inheritdoc}
   */
  public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {

    /** @var \Drupal\media_entity\MediaInterface $object */
    return $object
      ->access('delete', $account, $return_as_object);
  }

}

Classes

Namesort descending Description
DeleteMedia Redirects to a media deletion form.