interface AcquiadamInterface in Media: Acquia DAM 8
Interface AcquiadamInterface.
Defines the Acquia dam interface.
Hierarchy
- interface \Drupal\media_acquiadam\AcquiadamInterface
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
File
- src/
AcquiadamInterface.php, line 10
Namespace
Drupal\media_acquiadamView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AcquiadamInterface:: |
public | function | Get a list of folders keyed by ID. | 1 |
AcquiadamInterface:: |
public | function | Passes method calls through to the DAM client object. | 1 |