You are here

SaveMedia.php in Media entity 8

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

File

src/Plugin/Action/SaveMedia.php
View source
<?php

namespace Drupal\media_entity\Plugin\Action;

use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;

/**
 * Provides an action that can save any entity.
 *
 * @Action(
 *   id = "media_save_action",
 *   label = @Translation("Save media"),
 *   type = "media"
 * )
 */
class SaveMedia 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\media_entity\MediaInterface $object */
    return $object
      ->access('update', $account, $return_as_object);
  }

}

Classes

Namesort descending Description
SaveMedia Provides an action that can save any entity.