Miguel Dantas 52310a8ad8 [Embed] Fixed error related to oembed action 4 years ago
..
actions b25632ebc4 [PLUGINS] Fixed oEmbed dependents to use Embed 4 years ago
classes 0c20d35206 [Embed] Refactoring and bug fixing 4 years ago
lib a244f3ba4d [Embed] Removed old oEmbed and OpenGraph implementation 4 years ago
locale 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 4 years ago
scripts dbde8383c9 [Embed] Fixed use of undefined variable in fixup_files script 4 years ago
tests 22c8c96249 [Embed] Fixed Embed tests 4 years ago
CONFIGURE 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 4 years ago
EmbedPlugin.php 52310a8ad8 [Embed] Fixed error related to oembed action 4 years ago
README 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 4 years ago

README

The Oembed plugin for using and representing oEmbed data.

See: http://www.oembed.com/

Installation
============
This plugin is enabled by default

Settings
========
width: Maximum width of the thumbnail in pixels.
height: Maximum height of the thumbnail in pixels.
show_html: Whether to show HTML oEmbed data.
domain_whitelist: Array of regular expressions. Always escape your dots and end your strings.
check_whitelist: Whether to check the domain_whitelist.

Example
=======
$config['thumbnail']['width'] = 42;
$config['thumbnail']['height'] = 42;
$config['attachments']['show_html'] = true;
addPlugin('Oembed', array(
'domain_whitelist' => array(
'^i\d*\.ytimg\.com$' => 'YouTube',
'^i\d*\.vimeocdn\.com$' => 'Vimeo'
),
'check_whitelist' => true
));