1<?php 2 3//configuration metadata describe properties of the settings as used by the Configuration Manager 4//https://www.dokuwiki.org/devel:configuration#configuration_metadata 5 6 7$meta['footer'] = array('string', 8 "_caution" => "warning", // Show a warning 9 "_pattern" => "/[a-zA-Z0-9]*/" // Only Accept alphanumeric characters 10); 11 12$meta['header'] = array('string', 13 "_caution" => "warning", // Show a warning 14 "_pattern" => "/[a-zA-Z0-9]*/" // Only Accept alphanumeric characters 15); 16 17// Do we use CDN when posible 18$meta['cdn'] = array('onoff'); 19 20?> 21