gnu-social/plugins/Oembed
brunoccast c7afe2f86c [TRANSLATION] Update Plugin POs 2019-06-09 16:10:03 +01:00
..
actions Oembed bugs with thumbnail generation. 2016-04-18 15:33:20 +02:00
classes File_redirection->getFile could never get the file anyway if $redir->file_id was empty... 2017-05-02 09:07:00 +02:00
css Attachment styling 2016-08-21 09:31:26 +02:00
lib Purify oembed html (again) 2016-01-28 19:02:16 +01:00
locale [TRANSLATION] Update Plugin POs 2019-06-09 16:10:03 +01:00
scripts HTTPClient get $params array and oEmbedHelper uses it 2015-11-30 01:28:18 +01:00
tests twitPic no longer exists/is active 2015-01-17 12:07:57 +01:00
CONFIGURE Moved oEmbed stuff out to a plugin (Oembed). 2014-05-06 23:32:13 +02:00
OembedPlugin.php [VersionBump] 1.19.0, fairly late 2019-06-07 15:02:08 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

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