The Vimeo Plugin for Grav CMS converts markdown video links into the Vimeo Universal Embed Code.
- Simply embed Vimeo videos and configure the player
- Override the player parameters for each page
- Button to add Vimeo videos in the content editor
- Twig functions to embed Vimeo videos in your templates
- Multi-Language Support
Installing the Vimeo plugin can be done in one of two ways. The GPM (Grav Package Manager) installation method enables you to quickly and easily install the plugin with a simple terminal command, while the manual method enables you to do so via a zip file.
The simplest way to install this plugin is via the Grav Package Manager (GPM) through your system's terminal (also called the command line). From the root of your Grav install type:
bin/gpm install vimeo
This will install the Vimeo plugin into your /user/plugins
directory within Grav. Its files can be found under /your/site/grav/user/plugins/vimeo
.
To install this plugin, just download the zip version of this repository and unzip it under /your/site/grav/user/plugins
. Then, rename the folder to vimeo
. You can find these files on GitHub or via GetGrav.org.
You should now have all the plugin files under
/your/site/grav/user/plugins/vimeo
NOTE: This plugin is a modular component for Grav which requires Grav and the Error and Problems to operate.
Before configuring this plugin, you should copy the user/plugins/vimeo/vimeo.yaml
to user/config/plugins/vimeo.yaml
and only edit that copy.
Here is the default configuration and an explanation of available options:
enabled: true
plugin_css: true
editor_button: true
player_parameters:
autopause: true
autoplay: false
byline: true
color: "#00adef"
loop: false
player_id: ""
portrait: true
title: true
enabled
Toggles if the Vimeo plugin is turned on or off.plugin_css
Toggles if the built in CSS for a responsive layout is used or not.editor_button
Allows you to easily add Vimeo videos in the page content editor.autopause
Enables or disables pausing this video when another video is played.autoplay
Plays the video automatically on load. Note that this won’t work on some devices.byline
Shows the user’s byline on the video.color
Specifies the color of the video controls.loop
Plays the video again when it reaches the end.player_id
A unique id for the player that will be passed back with all Javascript Vimeo API responses.portrait
Shows the user’s portrait on the video.title
Shows the title on the video.
NOTE: If the owner of the video is a Plus member,
byline
,color
,portrait
andtitle
may be overridden by their preferences..
You can also set any of these settings on a per-page basis by adding them under a vimeo:
setting in your page header. For example:
---
title: Example page
vimeo:
player_parameters:
autoplay: true
---
[plugin:vimeo](https://vimeo.com/123456789)
This will embed a video and play it automatically on load.
To use this plugin you simply need to include a vimeo URL in markdown link such as:
[plugin:vimeo](https://vimeo/123456789)
This will be converted into the following embeded HTML:
<div class="grav-vimeo">
<iframe src="//player.vimeo.com/video/123456789" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
This plugin offers two Twig functions that can be used. vimeo_embed_url()
and vimeo_embed_video()
This function builds and returns the Vimeo embed URL like //player.vimeo.com/video/123456789?autoplay=1
video_id
: The Vimeo video IDparameters
: An optionalarray
of player parameters. Seeplayer_parameters
in the configuration file.
This function builds and returns the full Vimeo embed iframe snippet.
video_id
: The Vimeo video IDparameters
: An optionalarray
of player parameters. Seeplayer_parameters
in the configuration file.div
: If set totrue
, the iframe HTML code will be surrounded by a div element with the classgrav-vimeo
.
The Vimeo Grav Plugin follows the GitFlow branching model, from development to release. The master
branch always reflects a production-ready state while the latest development is taking place in the develop
branch.
Each time you want to work on a fix or a new feature, create a new branch based on the develop
branch: git checkout -b BRANCH_NAME develop
. Only pull requests to the develop
branch will be merged.
Copyright © 2017 Christian Worreschk under the MIT Licence. See README.