You are here

interface MediaTypePersistenceManagerInterface in Gutenberg 8

Same name and namespace in other branches
  1. 8.2 src/Persistence/MediaTypePersistenceManagerInterface.php \Drupal\gutenberg\Persistence\MediaTypePersistenceManagerInterface

Handles media type persistence process.

@package Drupal\gutenberg\Persistence

Hierarchy

Expanded class hierarchy of MediaTypePersistenceManagerInterface

All classes that implement MediaTypePersistenceManagerInterface

File

src/Persistence/MediaTypePersistenceManagerInterface.php, line 12

Namespace

Drupal\gutenberg\Persistence
View source
interface MediaTypePersistenceManagerInterface {

  /**
   * Perform saving process of an uploaded file as media entity.
   *
   * @param string $media_type
   *   Media type machine name.
   * @param \Drupal\file\Entity\File $file_entity
   *   File entity instance.
   *
   * @return \Drupal\media\Entity\Media|null
   *   Created media type or null if failed.
   *
   * @throws \Exception
   */
  public function save(string $media_type, File $file_entity);

}

Members

Namesort descending Modifiers Type Description Overrides
MediaTypePersistenceManagerInterface::save public function Perform saving process of an uploaded file as media entity. 1