22 lines
573 B
PHP
22 lines
573 B
PHP
<?php
|
|
|
|
/**
|
|
* Options for the luxtools plugin
|
|
*/
|
|
|
|
$conf['paths'] = '';
|
|
$conf['scratchpad_paths'] = '';
|
|
$conf['allow_in_comments'] = 0;
|
|
$conf['defaults'] = '';
|
|
$conf['extensions'] = '';
|
|
|
|
// MediaManager ID for gallery thumbnail placeholder
|
|
$conf['thumb_placeholder'] = ':wiki:thumb-placeholder.png';
|
|
|
|
// Multiplier for gallery thumbnail generation size (1 = 150x150, 2 = 300x300).
|
|
// Thumbnails are still displayed as 150x150 on the page.
|
|
$conf['gallery_thumb_scale'] = 1;
|
|
|
|
// Local client service used by {{open>...}}.
|
|
$conf['open_service_url'] = 'http://127.0.0.1:8765';
|