FileSetTemporary.php in File Entity (fieldable files) 8.2
Namespace
Drupal\file_entity\Plugin\ActionFile
src/Plugin/Action/FileSetTemporary.phpView source
<?php
namespace Drupal\file_entity\Plugin\Action;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;
use Drupal\file\FileInterface;
use Drupal\file_entity\Entity\FileEntity;
/**
 * Sets the file status to temporary.
 *
 * @Action(
 *   id = "file_temporary_action",
 *   label = @Translation("Set file status to temporary"),
 *   type = "file"
 * )
 */
class FileSetTemporary extends ActionBase {
  /**
   * {@inheritdoc}
   */
  public function execute($entity = NULL) {
    /** @var FileEntity $entity */
    $entity
      ->setTemporary();
    $entity
      ->save();
  }
  /**
   * {@inheritdoc}
   */
  public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
    $result = AccessResult::allowedIf($object instanceof FileInterface)
      ->andIf(AccessResult::allowedIf($object
      ->access('delete')));
    return $return_as_object ? $result : $result
      ->isAllowed();
  }
}Classes
| 
            Name | 
                  Description | 
|---|---|
| FileSetTemporary | Sets the file status to temporary. |