1<?php 2/** 3 * Metadata configuration for the DokuWiki Vega-Lite plugin. 4 * 5 * @package DokuWiki\Plugin\VegaLite 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'] 20 ] 21];