1<?php 2 3namespace ComboStrap; 4 5class DokuWiki 6{ 7 8 /** 9 * When using dokuwiki template as background, 10 * there may be conflict, they are resolved 11 * with the dokuwiki.css stylesheet 12 */ 13 public const DOKUWIKI_STYLESHEET_ID = "dokuwiki"; 14 15 /** 16 * Just to list the unsupported feature back 17 */ 18 public const RUN_UNSUPPORTED_DOKUWIKI_FEATURE = false; 19} 20