Add plugin READMEs
This commit is contained in:
22
plugins/StoreRemoteMedia/README
Normal file
22
plugins/StoreRemoteMedia/README
Normal file
@@ -0,0 +1,22 @@
|
||||
The StoreRemoteMedia plugin downloads remotely attached files to local server.
|
||||
|
||||
Installation
|
||||
============
|
||||
add "addPlugin('StoreRemoteMedia');"
|
||||
to the bottom of your config.php
|
||||
|
||||
Settings
|
||||
========
|
||||
domain_whitelist: Array of regular expressions. Always escape your dots and end your strings.
|
||||
check_whitelist: Whether to check the domain_whitelist.
|
||||
|
||||
Example
|
||||
=======
|
||||
addPlugin('StoreRemoteMedia', array(
|
||||
'domain_whitelist' => array(
|
||||
'^i\d*\.ytimg\.com$' => 'YouTube',
|
||||
'^i\d*\.vimeocdn\.com$' => 'Vimeo'
|
||||
),
|
||||
'check_whitelist' => true
|
||||
));
|
||||
|
Reference in New Issue
Block a user