gnu-social/plugins/Oembed
Chimo a614205663 Add plugin READMEs 2016-02-08 17:48:37 +00:00
..
actions add a thumbnail to oembed response 2016-01-21 18:48:30 +00:00
classes File_oembed varchar to text changes 2015-12-27 12:11:29 +01:00
lib Purify oembed html (again) 2016-01-28 19:02:16 +01:00
locale Snapshot of the Transifex translation project - October 2015 2015-10-04 18:23:01 +02: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 Replace htmLawed with HTMLPurifier 2016-01-28 19:01:13 +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
));