heimrichhannot / contao-youtube-bundle
Youtube Content Element, with responsive support, preview image, play button and many more.
Installs: 2 785
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 6
Forks: 0
Open Issues: 0
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- contao/core-bundle: ^4.9
- heimrichhannot-contao-components/alertifyjs: 1.11.2
- heimrichhannot/contao-encore-contracts: ^1.0
- heimrichhannot/contao-request-bundle: ^1.2
- heimrichhannot/contao-utils-bundle: ^2.60
- symfony/service-contracts: ^1.0 || ^2.0 || ^3.0
- twig/twig: ^1.44.6 || ^2.14 || ^3.0
Requires (Dev)
- contao/manager-plugin: ^2.0
- contao/test-case: ^1.1
- friendsofphp/php-cs-fixer: ^2.2
- php-coveralls/php-coveralls: ^2.0
- php-http/guzzle6-adapter: ^1.1
- php-http/message-factory: ^1.0.2
- phpunit/phpunit: >=6.0 <6.5
- symfony/phpunit-bridge: ^3.2
Suggests
- heimrichhannot/contao-encore-bundle: Manage dependencies with Symfony Webpack Encore.
- dev-master
- v3.x-dev
- 3.10.3
- 3.10.2
- 3.10.1
- 3.10.0
- 3.9.12
- 3.9.11
- 3.9.10
- 3.9.9
- 3.9.8
- 3.9.7
- 3.9.6
- 3.9.5
- 3.9.4
- 3.9.3
- 3.9.2
- 3.9.1
- 3.9.0
- 3.8.0
- 3.7.10
- 3.7.9
- 3.7.8
- 3.7.7
- 3.7.6
- 3.7.5
- 3.7.4
- 3.7.3
- 3.7.2
- 3.7.1
- 3.7.0
- 3.6.1
- 3.6.0
- 3.5.2
- 3.5.1
- 3.5.0
- 3.4.1
- 3.4.0
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
- dev-feauture/encore_contracts
This package is auto-updated.
Last update: 2024-02-12 12:25:04 UTC
README
YouTube-Bundle is not actively maintained anymore, as we developed a successor bundle: Video Bundle.
YouTube bundle aims responsive youtube videos with preview images and better privacy control. It provides support for content elements and news items.
An valid Youtube Data API Key is required for automatic preview image support (enter on in contao system settings or on your root page).
If you upgrade from heimrichhannot/contao-youtube, see the upgrade notices.
Features
- Responsive youtube videos
- Preview image for youtube videos
- If no custom image is given, the preview image will be loaded from youtube and saved under 'files/media/youtube/'
- ConfigElements for List- and Readerbundle.
- Encore Bundle support
- Privacy mode
- In privacy mode the video is displayed, after the user accepted a privacy advice within a modal prompt
- The user can mark his selection as permanent with a checkbox (state will be saved in a cookie)
Technical instruction
Add to list and reader item templates
For usage with List- and Readerbundle you first need to add the config elements in List- and/or Reader config.
Afterwards you can add youtube to your template. The config elements add a formatted value youtubeVideos
containing an array for each youtube field add by an config element.
$templateData = [ // ... 'youtubeVideos' => [ 'youtubeField' => [ // The selected youtube field name from config element 'video' => '' // Generated default template, 'data' => [] // Video data for custom templates ] ] ]
Example custom template:
{% if raw.addYouTube == "1" and youtubeVideos.youtube|default%} {% include '@VendorMyBundle/youtube/youtube_video_custom.html.twig' with youtubeVideos.youtube.data %} {% endif %}
News template
Youtube videos can be added to news templates with ease. Just add the following code (for example: news_full.html5):
<?php if($this->youtube && $this->youtube->video): ?>
<?= $this->youtube->video; ?>
<?php endif; ?>
Preview images from YouTube
To use preview images from youtube, you have to generate an API key (https://developers.google.com/youtube/v3/getting-started) and place it in the contao settings.
Commands
Migration Command
Usage:
huh:youtube:migration [options]
Options:
--dry-run Performs a run without writing to database.
--migration=MIGRATION Do migration directly without interrupt. Options: module, database, both, none
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-e, --env=ENV The Environment name. [default: "prod"]
--no-debug Switches off debug mode.
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Help:
This command provide migration scripts to migrate from heimrichhannot/contao-youtube to heimrichhannot/contao-youtube-bundle.
Available migrations:
'module' updates default template names and field values
'database' updates database fields that can't be updated by the contao install tool.
'both' will run 'module' and 'database' migrations.
Developers
Events
Event | Event ID |
---|---|
Event to interact with AlertifyJs 'onshow' event | huh.youtube.event.alertify.onshow |
Event to interact with AlertifyJs 'onfocus' event | huh.youtube.event.alertify.onfocus |
Upgrade notice from heimrichhannot/contao-youtube
- Use
huh:youtube:migration
command to migrated the default template settings in root pages and relatedYoutubeNews database field - Declare an Youtube-API Key in tl_settings or tl_page (otherwise preview image download wont work)
- The modal windows for privacy dialog or modalvideo require additional css, that is not delivered by the bundle. Markup fits Bootstrap modal window css, so you are well-advised to use the css from that framework.
- If you were using custom youtube
.html5
templates, migrate them to.html.twig
templates, if you need help: check the default templates