migrate_spip-1.0.0/modules/examples/src/Plugin/SpipRichText/MediaTacVideosYoutube.php
modules/examples/src/Plugin/SpipRichText/MediaTacVideosYoutube.php
<?php
declare(strict_types=1);
namespace Drupal\migrate_spip_examples\Plugin\SpipRichText;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\migrate_spip\Attribute\SpipRichText;
/**
* Manage SPIP TarteAuCitron videos for Youtube into media.
*
* Need to be executed before tables.
*/
#[SpipRichText(
id: 'media_tac_videos_youtube',
label: new TranslatableMarkup('Media TarteAuCitron videos for Youtube'),
weight: -40,
)]
final class MediaTacVideosYoutube extends MediaTacVideosBase {
/**
* {@inheritdoc}
*/
const PROVIDER = 'youtube';
}
