brunoccast c7afe2f86c [TRANSLATION] Update Plugin POs vor 5 Jahren
..
actions ce65fe96ad Oembed bugs with thumbnail generation. vor 8 Jahren
classes 06b25f384a File_redirection->getFile could never get the file anyway if $redir->file_id was empty... vor 7 Jahren
css 1d791f81fa Attachment styling vor 8 Jahren
lib fb7f572eed Purify oembed html (again) vor 8 Jahren
locale c7afe2f86c [TRANSLATION] Update Plugin POs vor 5 Jahren
scripts b7edac2610 HTTPClient get $params array and oEmbedHelper uses it vor 9 Jahren
tests f5efbd8037 twitPic no longer exists/is active vor 9 Jahren
CONFIGURE 1776c90cb9 Moved oEmbed stuff out to a plugin (Oembed). vor 10 Jahren
OembedPlugin.php 46f98b3142 [VersionBump] 1.19.0, fairly late vor 5 Jahren
README a614205663 Add plugin READMEs vor 8 Jahren

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