gnu-social/plugins/Oembed
brunoccast 5c0a3102ff [ROUTES] Allow accept-header specification during router creation
Router:
- Fix calls to connect, most of them were misusing the function's params

URLMapper:
- Minor fixes
- Documentation
- Add support for accept-header specification

Plugins/*:
- Fix calls to connect
2019-08-03 17:47:16 +01:00
..
actions [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
classes [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
css Attachment styling 2016-08-21 09:31:26 +02:00
lib [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
locale [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
scripts [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
tests [Oembed] Refactoring and some improvements (namely documentation) 2019-08-03 17:30:52 +01:00
CONFIGURE Moved oEmbed stuff out to a plugin (Oembed). 2014-05-06 23:32:13 +02:00
OembedPlugin.php [ROUTES] Allow accept-header specification during router creation 2019-08-03 17:47:16 +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
));