This commit is contained in:
2023-10-13 07:02:56 +02:00
parent 3d040fe5c2
commit b61d5477c2
8 changed files with 218 additions and 0 deletions

7
conf/default.php Normal file
View File

@ -0,0 +1,7 @@
<?php
/**
* Options for the Tile Plugin
*/
$conf['iconSize'] = 80; // the icon size
$conf['sampleDelai'] = 2*60*60;
?>

11
conf/metadata.php Normal file
View File

@ -0,0 +1,11 @@
<?php
/**
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
* @author Francois Merciol <dokuplugin@merciol.fr>
*
* Metadata for configuration manager plugin
* Additions for the tile plugin
*/
$meta['iconSize'] = array('numeric');
$meta['sampleDelai'] = array('numeric');
?>