1<?php 2 3/** 4 * Configuration metadata for the annotations plugin. 5 * 6 * Describes each $conf key for the Configuration Manager. Labels live in 7 * lang/<iso>/settings.php. No require_once here. 8 */ 9 10$meta['color_open'] = ['string', '_pattern' => '/^#[0-9a-fA-F]{6}$/']; 11$meta['color_resolved'] = ['string', '_pattern' => '/^#[0-9a-fA-F]{6}$/']; 12$meta['embed_max_bytes'] = ['numeric', '_min' => 1024]; 13$meta['context_length'] = ['numeric', '_min' => 0, '_max' => 1000]; 14$meta['body_cap'] = ['numeric', '_min' => 100]; 15$meta['entries_per_page'] = ['numeric', '_min' => 0]; 16