Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kmadejski/ezplatform-youtube-fieldtype
YouTube Embed FieldType for eZPlatform
https://github.com/kmadejski/ezplatform-youtube-fieldtype
Last synced: 28 days ago
JSON representation
YouTube Embed FieldType for eZPlatform
- Host: GitHub
- URL: https://github.com/kmadejski/ezplatform-youtube-fieldtype
- Owner: kmadejski
- Created: 2017-03-17T08:58:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T10:08:49.000Z (almost 7 years ago)
- Last Synced: 2024-10-03T07:09:10.258Z (about 1 month ago)
- Language: PHP
- Size: 17.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ezplatform-youtube-fieldtype
Bundle provides YouTube Embed field type for eZPlatform 1.8 and higher.### Installation
Package is available in composer repository, so installation is very simple.1. Require package in composer:
```
composer require kmadejski/ezplatform-youtube-fieldtype:dev-master
```2. Register bundle in your `app/AppKernel.php`:
```
$bundles = array(
...
new EzSystems\YouTubeFieldTypeBundle\EzSystemsYouTubeFieldTypeBundle(),
...
);
```3. Install assets (from your project root):
```
php app/console assets:install --symlink --relative
```