Diogo Cordeiro f0a67a1df9 [PLUGINS] Removed GeoURL as the service doesn't exist anymore 5 лет назад
..
actions 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
classes 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
lib 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
locale f0a67a1df9 [PLUGINS] Removed GeoURL as the service doesn't exist anymore 5 лет назад
scripts 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
tests 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
CONFIGURE 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 лет назад
EmbedModule.php 82893824db [CORE] Refactor Plugin API to Module API 5 лет назад
README 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 лет назад

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