1<?php 2/** 3 * Metadata configuration for the DokuWiki Mermaid plugin. 4 * 5 * @package DokuWiki\Plugin\Mermaid 6 */ 7 8declare(strict_types=1); 9 10if (!defined('DOKU_INC')) { 11 die(); 12} 13 14require_once __DIR__ . '/config_keys.php'; 15 16$meta = [ 17 CONFIG_LOCATION => [ 18 'multichoice', 19 '_choices' => ['local', 'latest', 'remote1091', 'remote943'] 20 ], 21 CONFIG_THEME => [ 22 'multichoice', 23 '_choices' => ['default', 'neutral', 'dark', 'forest', 'base', 'mc', 'neo', 'neo-dark'] 24 ], 25 CONFIG_LOOK => [ 26 'multichoice', 27 '_choices' => ['classic', 'neo', 'handDrawn'] 28 ], 29 CONFIG_LOG_LEVEL => [ 30 'multichoice', 31 '_choices' => ['trace', 'debug', 'info', 'warn', 'error', 'fatal'] 32 ], 33 SHOW_SAVE_BUTTON => ['onoff'], 34 SHOW_LOCK_BUTTON => ['onoff'], 35];