gnu-social/plugins/Embed
Diogo Cordeiro 8c0601816f [CORE] Move core plugins to a new modules directory
For reference (raised by rozzin in IRC):

* http://foldoc.org/module
* http://foldoc.org/library
* http://foldoc.org/plugin

As noted by XRevan86, modules are not necessarily non-essential.
As we will keep the modules directory in GS root [therefore, near to
plugins/], it is evidenced the difference between both.

This is a simple yet fundamental structural change. It doesn't change
functionality but makes clearer the way we understand GNU social's
internals.
2019-08-22 03:13:58 +01:00
..
actions [PLUGINS] Fixed oEmbed dependents to use Embed 2019-08-03 17:49:06 +01:00
classes [Embed] Refactoring and bug fixing 2019-08-03 17:49:09 +01:00
lib [Embed] Removed old oEmbed and OpenGraph implementation 2019-08-03 17:49:09 +01:00
locale [CORE] Move core plugins to a new modules directory 2019-08-22 03:13:58 +01:00
scripts [Embed] Fixed use of undefined variable in fixup_files script 2019-08-03 17:49:36 +01:00
tests [Embed] Fixed Embed tests 2019-08-03 17:49:10 +01:00
CONFIGURE [OEmbed][Embed] Renamed OEmbed plugin to Embed 2019-08-03 17:48:26 +01:00
EmbedPlugin.php [Embed] Added support for inline images 2019-08-22 03:13:58 +01:00
README [OEmbed][Embed] Renamed OEmbed plugin to Embed 2019-08-03 17:48:26 +01: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
));