Miguel Dantas 506b42ad69 [Embed] Updated fixup_files.php script to be able to fix broken oEmbedinfo using the --broken-oembed flag hace 5 años
..
actions 49b6ca73e0 [PLUGINS] Fixed oEmbed dependents to use Embed hace 5 años
classes 76e3b8682c [Embed] Refactoring and bug fixing hace 5 años
lib ceb8640949 [Embed] Removed old oEmbed and OpenGraph implementation hace 5 años
locale d787d2cad1 [OEmbed][Embed] Renamed OEmbed plugin to Embed hace 5 años
scripts 506b42ad69 [Embed] Updated fixup_files.php script to be able to fix broken oEmbedinfo using the --broken-oembed flag hace 5 años
tests 36f0ecd678 [Embed] Fixed Embed tests hace 5 años
CONFIGURE d787d2cad1 [OEmbed][Embed] Renamed OEmbed plugin to Embed hace 5 años
EmbedPlugin.php e72f6d401c [Embed] Hide error from the UI and just don't display an image if the remote image is not valid hace 5 años
README d787d2cad1 [OEmbed][Embed] Renamed OEmbed plugin to Embed hace 5 años

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