1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00
dokuwiki_ynh/sources/lib/plugins/gallery/conf/metadata.php
2014-07-20 13:52:54 +02:00

16 lines
563 B
PHP

<?php
/**
* Options for the gallery plugin
*
* @author Dmitry Baikov <dsbaikov@gmail.com>
*/
$meta['thumbnail_width'] = array('numeric');
$meta['thumbnail_height'] = array('numeric');
$meta['image_width'] = array('numeric');
$meta['image_height'] = array('numeric');
$meta['cols'] = array('numeric');
$meta['sort'] = array('multichoice', '_choices' => array('file','mod','date','title'));
$meta['options'] = array('multicheckbox', '_choices' => array('cache','crop','direct','lightbox','random','reverse','showname','showtitle'));