lolautruche / embedtag-bundle
Collection of custom tags for eZ Publish, to embed external content like from YouTube, DailyMotion or Vimeo
Installs: 5 203
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 5
Forks: 5
Open Issues: 1
Requires
- ezsystems/ezpublish-kernel: ^5.3.0|^6.0|^7.0|>=2014.03
- lolautruche/embedtag-ls: ~1.0
This package is auto-updated.
Last update: 2024-10-18 20:38:24 UTC
README
eZ Publish 5 bundle providing custom tags for XmlText FieldType, allowing to embed external content. It is compatible with eZ Publish 5.3 / 2014.03 and superior.
Features
Current implementation provides custom tags support for:
- YouTube
- Vimeo
- DailyMotion
Custom tags can be edited in the admin interface.
Installation
This bundle is available on Packagist. You can install it using Composer:
$ composer require lolautruche/embedtag-bundle:@stable
Then add the bundle to your application:
<?php // ezpublish/EzPublishKernel.php public function registerBundles() { $bundles = array( // ... new Lolart\Bundle\EmbedTagBundle\LolartEmbedTagBundle(), // ... ); }