gnu-social/plugins/Embed
Alexei Sorokin 9efbef720d Avoid use of assignments bare inside statements
Either use them in a subroutine call or put parentheses around the assignment.
2021-07-16 19:44:41 +01:00
..
actions Avoid use of assignments bare inside statements 2021-07-16 19:44:41 +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 [VersionBump] 2.0.0alpha0 2021-07-16 19:44:38 +01:00
scripts [DATABASE] Fix use of ORDER BY with DISTINCT 2021-07-16 19:44:41 +01:00
tests [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 2021-07-16 19:44:36 +01:00
CONFIGURE [OEmbed][Embed] Renamed OEmbed plugin to Embed 2019-08-03 17:48:26 +01:00
EmbedPlugin.php [File] Fix file deletion violating foreign keys 2021-07-16 19:44:40 +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
));