Download the PHP package phile/youtube without Composer
On this page you can find all versions of the php package phile/youtube. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download phile/youtube
More information about phile/youtube
Files in phile/youtube
Package youtube
Short Description A plugin that generates Youtube videos based on IDs. It can be used in your theme, or in your Markdown.
License MIT
Homepage http://philecms.com
Informations about the package youtube
phileYoutube
A plugin that generates Youtube videos based on IDs. It can be used in your theme, or in your Markdown.
Features
- use in Markdown
- use in templates with Twig
- auto grab the title
1.1 Installation (composer)
1.2 Installation (Download)
- Install Phile
- Clone this repo into
plugins/phile/youtube
2. Activation
After you have installed the plugin. You need to add the following line to your config.php
file:
- add
$config['plugins']['phile\\youtube'] = array('active' => true);
to yourconfig.php
Markdown Usage
You can use this plugin in your Markdown files. It allows videos to be easy rendered without using any HTML in your Markdown.
Basic Examples:
Put the code in there. Watch the HTML spew out.
Make sure you left a break line before and after the code if your video is not showing up
You can add a start point in seconds too like this
Output:
Theme Usage
There will now be a new twig function called youtube
. It takes a YouTube ID, and renders the HTML for the video!
Basic Examples:
Put the code in there. Watch the HTML spew out. Assumes you have set Video: 8GLMe371RuI
in your pages meta.
Output:
Config
Here are the settings. See the above output for where everything goes.
Fixed heights and widths?
Because clients are crazy and will try to add a video at a bad size. I like to control what they are doing in the theme. I know what size will work better than they do.
Why Use?
Clients are crazy. You want to make sure the HTML output is good and not a huge mess. Also autofetching the title is sweet.