You are here

interface AcquiadamInterface in Media: Acquia DAM 8

Interface AcquiadamInterface.

Defines the Acquia dam interface.

Hierarchy

Expanded class hierarchy of AcquiadamInterface

All classes that implement AcquiadamInterface

6 files declare their use of AcquiadamInterface
Acquiadam.php in src/Plugin/EntityBrowser/Widget/Acquiadam.php
AcquiadamController.php in src/Controller/AcquiadamController.php
AssetFileEntityHelper.php in src/Service/AssetFileEntityHelper.php
AssetMediaFactoryTest.php in tests/src/Unit/AssetMediaFactoryTest.php
AssetMetadataHelper.php in src/Service/AssetMetadataHelper.php

... See full list

File

src/AcquiadamInterface.php, line 10

Namespace

Drupal\media_acquiadam
View source
interface AcquiadamInterface {

  /**
   * Get a list of folders keyed by ID.
   *
   * @param int $folder_id
   *   The folder ID to recurse into. This is mostly for internal use.
   *
   * @return array
   *   A list of folder names keyed by folder IDs.
   */
  public function getFlattenedFolderList($folder_id = NULL);

  /**
   * Passes method calls through to the DAM client object.
   *
   * @param string $name
   *   The name of the method to call.
   * @param array $arguments
   *   An array of arguments.
   *
   * @return mixed
   *   Returns whatever the dam client returns.
   */
  public function __call($name, array $arguments);

}

Members

Namesort descending Modifiers Type Description Overrides
AcquiadamInterface::getFlattenedFolderList public function Get a list of folders keyed by ID. 1
AcquiadamInterface::__call public function Passes method calls through to the DAM client object. 1