This refactors the plugin from one mega syntax file into multiple classes. The plugin now focuses on one usecase: listing files that are external to the wiki and making them downloadable. All other usecases have been dropped. Also a bunch of other options have been dropped. A new dispatcher makes it possible to deliver files without the need to have the webserver pointing at them.
17 lines
370 B
PHP
17 lines
370 B
PHP
<?php
|
|
|
|
/**
|
|
* Metadata for configuration manager plugin
|
|
* Additions for the filelist plugin
|
|
*
|
|
* @author Gina Haeussge <osd@foosel.net>
|
|
*/
|
|
|
|
$meta['paths'] = array('');
|
|
|
|
$meta['allow_in_comments'] = array('onoff');
|
|
$meta['allowed_absolute_paths'] = array('');
|
|
$meta['web_paths'] = array('');
|
|
$meta['defaults'] = array('string');
|
|
$meta['extensions'] = array('string');
|