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

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