Miguel Dantas 574deaaa9f TEMP 5 rokov pred
..
actions 10db68cc82 [PLUGINS] Fixed oEmbed dependents to use Embed 5 rokov pred
classes 93d31eddb1 [Embed][StoreRemoteMedia] Refactoring and small bug fixes 5 rokov pred
lib 8fe237392a [Embed] Removed old oEmbed and OpenGraph implementation 5 rokov pred
locale 2bd9aebbde [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 rokov pred
scripts f0baf70556 [Embed] Using oscarotero/Embed as first attempt to get oEmbed/OpenGraph data, fallback 5 rokov pred
tests f0baf70556 [Embed] Using oscarotero/Embed as first attempt to get oEmbed/OpenGraph data, fallback 5 rokov pred
CONFIGURE 2bd9aebbde [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 rokov pred
EmbedPlugin.php 574deaaa9f TEMP 5 rokov pred
README 2bd9aebbde [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 rokov pred

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
));