
| Current Path : /var/www/html/rocksensor1/web/core/modules/media/src/Plugin/media/Source/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/media/src/Plugin/media/Source/OEmbedInterface.php |
<?php
namespace Drupal\media\Plugin\media\Source;
use Drupal\media\MediaSourceFieldConstraintsInterface;
/**
* Defines additional functionality for source plugins that use oEmbed.
*/
interface OEmbedInterface extends MediaSourceFieldConstraintsInterface {
/**
* Returns the oEmbed provider names.
*
* The allowed providers can be configured by the user. If it is not
* configured, all providers supported by the plugin are returned.
*
* @return string[]
* A list of oEmbed provider names.
*/
public function getProviders();
}