Archived
1
0

Add new "legal" properties for affected plugins.

Disable subtome by default.
This commit is contained in:
Garvin Hicking
2018-04-03 11:16:41 +02:00
parent 02b70e2266
commit d10aaf8ffd
7 changed files with 151 additions and 1 deletions
@@ -286,6 +286,28 @@ class serendipity_plugin_remoterss extends serendipity_plugin
));
$propbag->add('configuration', array('sidebartitle', 'feedtype', 'template', 'rssuri', 'show_rss_element', 'smarty', 'number', 'use_rss_link', 'escape_rss', 'displaydate', 'dateformat', 'charset', 'target', 'cachetime', 'bulletimg', 'markup'));
$propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES'));
$propbag->add('legal', array(
'services' => array(
'any' => array(
'url' => '#',
'desc' => 'Any configured URL will be called to fetch RSS/OPML data from'
),
),
'frontend' => array(
'To display RSS/OPML feeds, the server can connect to any other server. No specific user data is transmitted.',
),
'backend' => array(
),
'cookies' => array(
),
'stores_user_input' => false,
'stores_ip' => false,
'uses_ip' => false,
'transmits_user_input' => false
));
}
function introspect_config_item($name, &$propbag)