Diogo Peralta Cordeiro f088a3d54f [Embed] Apply encoding and increased type strictness patches from StoreRemoteMedia | 3 سال پیش | |
---|---|---|
.. | ||
actions | 3 سال پیش | |
classes | 5 سال پیش | |
lib | 5 سال پیش | |
locale | 4 سال پیش | |
scripts | 4 سال پیش | |
tests | 5 سال پیش | |
CONFIGURE | 5 سال پیش | |
EmbedPlugin.php | 3 سال پیش | |
README.md | 3 سال پیش |
The Embed plugin for using and representing both Open Graph and oEmbed data.
See: https://ogp.me/ and https://www.oembed.com/
This plugin is enabled by default.
domain_whitelist
: Array of regular expressions. Always escape your dots and end your strings.check_whitelist
: Whether to check the domain_whitelist.thumbnail_width
: Maximum width of the thumbnail in pixels. Defaults to 128. Setting as null
makes it use global [thumbnail][width]
.thumbnail_height
: Maximum height of the thumbnail in pixels. Defaults to 128. Setting as null
makes it use global [thumbnail][height]
.crop
: Crop to the size (not preserving aspect ratio). Defaults to true. Setting as null
makes it use global [thumbnail][crop]
.max_size
: Max media size. Anything bigger than this is rejected. Defaults to global [attachments][file_quota]
.[attachments][show_html]
: Whether to show HTML oEmbed data. Defaults to false.$config['attachments']['show_html'] = true;
addPlugin('Embed', [
'thumbnail_width' => 42,
'thumbnail_height' => 42,
'domain_whitelist' => [
'^i\d*\.ytimg\.com$' => 'YouTube',
'^i\d*\.vimeocdn\.com$' => 'Vimeo'
],
'check_whitelist' => true
]
);