1007225e5Sgerardnico<?php 2007225e5Sgerardnico 36db3ebb3Sgerardnico/** 46db3ebb3Sgerardnico * Load all class via Plugin Utility 56db3ebb3Sgerardnico */ 637748cd8SNickeaurequire_once(__DIR__ . '/../ComboStrap/PluginUtility.php'); 76db3ebb3Sgerardnico 8c3437056SNickeauuse ComboStrap\AdsUtility; 9c3437056SNickeauuse ComboStrap\Canonical; 10c3437056SNickeauuse ComboStrap\FloatAttribute; 11c3437056SNickeauuse ComboStrap\Icon; 12c3437056SNickeauuse ComboStrap\Identity; 13c3437056SNickeauuse ComboStrap\LazyLoad; 14c3437056SNickeauuse ComboStrap\LinkUtility; 15c3437056SNickeauuse ComboStrap\LowQualityPage; 16c3437056SNickeauuse ComboStrap\MediaLink; 17c3437056SNickeauuse ComboStrap\PageImages; 18c3437056SNickeauuse ComboStrap\PageProtection; 19c3437056SNickeauuse ComboStrap\PagePublicationDate; 20c3437056SNickeauuse ComboStrap\PageType; 21c3437056SNickeauuse ComboStrap\PageUrlType; 22c3437056SNickeauuse ComboStrap\Prism; 23c3437056SNickeauuse ComboStrap\RasterImageLink; 24c3437056SNickeauuse ComboStrap\Region; 25c3437056SNickeauuse ComboStrap\Shadow; 26c3437056SNickeauuse ComboStrap\SvgDocument; 27c3437056SNickeauuse ComboStrap\SvgImageLink; 28c3437056SNickeauuse ComboStrap\UrlManagerBestEndPage; 29c3437056SNickeau 306db3ebb3Sgerardnico 31007225e5Sgerardnicorequire_once(__DIR__ . '/../syntax/related.php'); 32007225e5Sgerardnico 33007225e5Sgerardnico 34007225e5Sgerardnico// https://www.dokuwiki.org/devel:configuration 35007225e5Sgerardnico$meta[syntax_plugin_combo_related::MAX_LINKS_CONF] = array('numeric'); 36007225e5Sgerardnico$meta[syntax_plugin_combo_related::EXTRA_PATTERN_CONF] = array('string'); 37007225e5Sgerardnico 38007225e5Sgerardnico/** 39007225e5Sgerardnico * Disqus 40007225e5Sgerardnico */ 41007225e5Sgerardnicorequire_once(__DIR__ . '/../syntax/disqus.php'); 42007225e5Sgerardnico$meta[syntax_plugin_combo_disqus::CONF_DEFAULT_ATTRIBUTES] = array('string'); 43007225e5Sgerardnico 44007225e5Sgerardnico 45007225e5Sgerardnico/** 46007225e5Sgerardnico * Url Manager 47007225e5Sgerardnico */ 48c3437056SNickeau$meta[action_plugin_combo_router::ROUTER_ENABLE_CONF] = array('onoff'); 49007225e5Sgerardnico$meta['ShowPageNameIsNotUnique'] = array('onoff'); 50007225e5Sgerardnico$meta['ShowMessageClassic'] = array('onoff'); 51007225e5Sgerardnico 52007225e5Sgerardnico$actionChoices = array('multichoice', '_choices' => array( 53c3437056SNickeau action_plugin_combo_router::NOTHING, 54c3437056SNickeau action_plugin_combo_router::GO_TO_BEST_END_PAGE_NAME, 55c3437056SNickeau action_plugin_combo_router::GO_TO_NS_START_PAGE, 56c3437056SNickeau action_plugin_combo_router::GO_TO_BEST_PAGE_NAME, 57c3437056SNickeau action_plugin_combo_router::GO_TO_BEST_NAMESPACE, 58c3437056SNickeau action_plugin_combo_router::GO_TO_SEARCH_ENGINE 59007225e5Sgerardnico)); 60007225e5Sgerardnico$meta['GoToEditMode'] = array('onoff'); 61007225e5Sgerardnico$meta['ActionReaderFirst'] = $actionChoices; 62007225e5Sgerardnico$meta['ActionReaderSecond'] = $actionChoices; 63007225e5Sgerardnico$meta['ActionReaderThird'] = $actionChoices; 64007225e5Sgerardnico$meta['WeightFactorForSamePageName'] = array('string'); 65007225e5Sgerardnico$meta['WeightFactorForStartPage'] = array('string'); 66007225e5Sgerardnico$meta['WeightFactorForSameNamespace'] = array('string'); 67c3437056SNickeau 68007225e5Sgerardnico$meta[UrlManagerBestEndPage::CONF_MINIMAL_SCORE_FOR_REDIRECT] = array('string'); 69007225e5Sgerardnico 70c3437056SNickeau$meta[Canonical::CONF_CANONICAL_LAST_NAMES_COUNT] = array('string'); 71*370d7a6cSgerardnico$meta[action_plugin_combo_canonical::CONF_CANONICAL_FOR_GA_PAGE_VIEW] = array('onoff'); 72007225e5Sgerardnico 73007225e5Sgerardnico/** 74007225e5Sgerardnico * Icon namespace where the downloaded icon are stored 75007225e5Sgerardnico */ 76007225e5Sgerardnicorequire_once(__DIR__ . '/../syntax/icon.php'); 7721913ab3SNickeau$meta[Icon::CONF_ICONS_MEDIA_NAMESPACE] = array('string'); 78c3437056SNickeau$meta[Icon::CONF_DEFAULT_ICON_LIBRARY] = array('multichoice', '_choices' => array_keys(Icon::PUBLIC_LIBRARY_ACRONYM)); 7921913ab3SNickeau 80007225e5Sgerardnico 81007225e5Sgerardnico/** 82007225e5Sgerardnico * Css optimization 83007225e5Sgerardnico */ 84007225e5Sgerardnico$meta[action_plugin_combo_css::CONF_ENABLE_MINIMAL_FRONTEND_STYLESHEET] = array('onoff'); 85007225e5Sgerardnico$meta[action_plugin_combo_css::CONF_DISABLE_DOKUWIKI_STYLESHEET] = array('onoff'); 86007225e5Sgerardnico 87007225e5Sgerardnico/** 88007225e5Sgerardnico * Metadata Viewer 89007225e5Sgerardnico */ 90c3437056SNickeau$meta[syntax_plugin_combo_metadata::CONF_METADATA_DEFAULT_ATTRIBUTES] = array('string'); 91007225e5Sgerardnico 92007225e5Sgerardnico/** 93007225e5Sgerardnico * Badge 94007225e5Sgerardnico */ 95007225e5Sgerardnico$meta[syntax_plugin_combo_badge::CONF_DEFAULT_ATTRIBUTES_KEY] = array('string'); 96007225e5Sgerardnico 97007225e5Sgerardnico/** 98007225e5Sgerardnico * Ads 99007225e5Sgerardnico */ 10037748cd8SNickeaurequire_once(__DIR__ . '/../ComboStrap/AdsUtility.php'); 101007225e5Sgerardnico$meta[AdsUtility::CONF_IN_ARTICLE_PLACEHOLDER] = array('onoff'); 102007225e5Sgerardnico 103007225e5Sgerardnico/** 104007225e5Sgerardnico * Code / File / Console 105007225e5Sgerardnico */ 106007225e5Sgerardnico$meta[syntax_plugin_combo_code::CONF_CODE_ENABLE] = array('onoff'); 107007225e5Sgerardnico$meta[Prism::CONF_PRISM_THEME] = array('multichoice', '_choices' => array_keys(Prism::THEMES_INTEGRITY)); 108007225e5Sgerardnico$meta[Prism::CONF_BASH_PROMPT] = array('string'); 109007225e5Sgerardnico$meta[Prism::CONF_BATCH_PROMPT] = array('string'); 110007225e5Sgerardnico$meta[Prism::CONF_POWERSHELL_PROMPT] = array('string'); 111007225e5Sgerardnico$meta[syntax_plugin_combo_file::CONF_FILE_ENABLE] = array('onoff'); 112007225e5Sgerardnico 113007225e5Sgerardnico/** 114007225e5Sgerardnico * Quality (SEO) 115007225e5Sgerardnico */ 11637748cd8SNickeaurequire_once(__DIR__ . '/../ComboStrap/LowQualityPage.php'); 117007225e5Sgerardnico$meta[LowQualityPage::CONF_LOW_QUALITY_PAGE_PROTECTION_ENABLE] = array('onoff'); 11885e82846SNickeau$meta[LowQualityPage::CONF_LOW_QUALITY_PAGE_PROTECTION_MODE] = array('multichoice', '_choices' => array( 11985e82846SNickeau PageProtection::CONF_VALUE_ROBOT, 12085e82846SNickeau PageProtection::CONF_VALUE_FEED, 1215f891b7eSNickeau PageProtection::CONF_VALUE_ACL, 1225f891b7eSNickeau PageProtection::CONF_VALUE_HIDDEN 123007225e5Sgerardnico)); 12485e82846SNickeau$meta[LowQualityPage::CONF_LOW_QUALITY_PAGE_LINK_TYPE] = array('multichoice', '_choices' => array( 12585e82846SNickeau PageProtection::PAGE_PROTECTION_LINK_NORMAL, 12685e82846SNickeau PageProtection::PAGE_PROTECTION_LINK_WARNING, 12785e82846SNickeau PageProtection::PAGE_PROTECTION_LINK_LOGIN, 12885e82846SNickeau)); 129007225e5Sgerardnico 130007225e5Sgerardnico/** 131007225e5Sgerardnico * Preformatted mode enable 132007225e5Sgerardnico */ 133007225e5Sgerardnico$meta[syntax_plugin_combo_preformatted::CONF_PREFORMATTED_ENABLE] = array('onoff'); 13421913ab3SNickeau$meta[syntax_plugin_combo_preformatted::CONF_PREFORMATTED_EMPTY_CONTENT_NOT_PRINTED_ENABLE] = array('onoff'); 135007225e5Sgerardnico 136007225e5Sgerardnico/** 137007225e5Sgerardnico * The mandatory rules 138007225e5Sgerardnico */ 139aa3cb38fSgerardnico$meta[renderer_plugin_combo_analytics::CONF_MANDATORY_QUALITY_RULES] = array('multicheckbox', '_choices' => renderer_plugin_combo_analytics::QUALITY_RULES); 140c25e802bSgerardnico 141c25e802bSgerardnico/** 142aa3cb38fSgerardnico * The quality rules excluded from monitoring 143aa3cb38fSgerardnico */ 1445f891b7eSNickeau$meta[action_plugin_combo_qualitymessage::CONF_DISABLE_QUALITY_MONITORING] = array('onoff'); 145aa3cb38fSgerardnico$meta[action_plugin_combo_qualitymessage::CONF_EXCLUDED_QUALITY_RULES_FROM_DYNAMIC_MONITORING] = array('multicheckbox', '_choices' => renderer_plugin_combo_analytics::QUALITY_RULES); 1465f891b7eSNickeau 1475f891b7eSNickeau/** 14821913ab3SNickeau * Link 1495f891b7eSNickeau */ 1505f891b7eSNickeau$meta[LinkUtility::CONF_USE_DOKUWIKI_CLASS_NAME] = array('onoff'); 15185e82846SNickeau$meta[LinkUtility::CONF_PREVIEW_LINK] = array('onoff'); 15221913ab3SNickeau$meta[syntax_plugin_combo_link::CONF_DISABLE_LINK] = array('onoff'); 1535f891b7eSNickeau 1545f891b7eSNickeau/** 1555f891b7eSNickeau * Twitter 1565f891b7eSNickeau */ 1575f891b7eSNickeau$meta[action_plugin_combo_metatwitter::CONF_TWITTER_SITE_HANDLE] = array('string'); 1585f891b7eSNickeau$meta[action_plugin_combo_metatwitter::CONF_TWITTER_SITE_ID] = array('string'); 1595f891b7eSNickeau$meta[action_plugin_combo_metatwitter::CONF_DEFAULT_TWITTER_IMAGE] = array('string'); 1605f891b7eSNickeau$meta[action_plugin_combo_metatwitter::CONF_DONT_NOT_TRACK] = array('multichoice', '_choices' => array( 1615f891b7eSNickeau action_plugin_combo_metatwitter::CONF_ON, 1625f891b7eSNickeau action_plugin_combo_metatwitter::CONF_OFF 1635f891b7eSNickeau)); 1645f891b7eSNickeau$meta[syntax_plugin_combo_blockquote::CONF_TWEET_WIDGETS_THEME] = array('string'); 1655f891b7eSNickeau$meta[syntax_plugin_combo_blockquote::CONF_TWEET_WIDGETS_BORDER] = array('string'); 1665f891b7eSNickeau 1675f891b7eSNickeau/** 1685f891b7eSNickeau * Page Image 1695f891b7eSNickeau */ 170c3437056SNickeau$meta[PageImages::CONF_DISABLE_FIRST_IMAGE_AS_PAGE_IMAGE] = array('onoff'); 1715f891b7eSNickeau 1725f891b7eSNickeau/** 1735f891b7eSNickeau * Facebook 1745f891b7eSNickeau */ 1755f891b7eSNickeau$meta[action_plugin_combo_metafacebook::CONF_DEFAULT_FACEBOOK_IMAGE] = array('string'); 1765f891b7eSNickeau 1775f891b7eSNickeau/** 178c3437056SNickeau * Language region 1795f891b7eSNickeau */ 180c3437056SNickeau$meta[Region::CONF_SITE_LANGUAGE_REGION] = array("string"); 1815f891b7eSNickeau 1825f891b7eSNickeau/** 1835f891b7eSNickeau * Late publication protection 1845f891b7eSNickeau */ 185c3437056SNickeau$meta[PagePublicationDate::CONF_LATE_PUBLICATION_PROTECTION_ENABLE] = array('onoff'); 186c3437056SNickeau$meta[PagePublicationDate::CONF_LATE_PUBLICATION_PROTECTION_MODE] = array('multichoice', '_choices' => array( 18785e82846SNickeau PageProtection::CONF_VALUE_ROBOT, 18885e82846SNickeau PageProtection::CONF_VALUE_FEED, 18985e82846SNickeau PageProtection::CONF_VALUE_ACL, 19085e82846SNickeau PageProtection::CONF_VALUE_HIDDEN 19185e82846SNickeau)); 1925f891b7eSNickeau 1935f891b7eSNickeau/** 1945f891b7eSNickeau * Default Page Type 1955f891b7eSNickeau */ 196c3437056SNickeau$meta[PageType::CONF_DEFAULT_PAGE_TYPE] = array("string"); 19721913ab3SNickeau 19821913ab3SNickeau/** 19921913ab3SNickeau * Default Shadow level 20021913ab3SNickeau */ 20121913ab3SNickeau$meta[Shadow::CONF_DEFAULT_VALUE] = array('multichoice', '_choices' => array( 20221913ab3SNickeau Shadow::CONF_SMALL_LEVEL_VALUE, 20321913ab3SNickeau Shadow::CONF_MEDIUM_LEVEL_VALUE, 20421913ab3SNickeau Shadow::CONF_LARGE_LEVEL_VALUE, 20521913ab3SNickeau Shadow::CONF_EXTRA_LARGE_LEVEL_VALUE 20621913ab3SNickeau)); 20721913ab3SNickeau 20821913ab3SNickeau 20921913ab3SNickeau/** 21021913ab3SNickeau * Big Svg Lazy load 21121913ab3SNickeau */ 21237748cd8SNickeaurequire_once(__DIR__ . '/../ComboStrap/SvgImageLink.php'); 21321913ab3SNickeau$meta[SvgImageLink::CONF_LAZY_LOAD_ENABLE] = array('onoff'); 21421913ab3SNickeau 21521913ab3SNickeau/** 21621913ab3SNickeau * Big Svg Injection 21721913ab3SNickeau */ 21821913ab3SNickeau$meta[SvgImageLink::CONF_SVG_INJECTION_ENABLE] = array('onoff'); 21921913ab3SNickeau 22021913ab3SNickeau/** 22121913ab3SNickeau * Svg Optimization 22221913ab3SNickeau */ 22321913ab3SNickeau$meta[SvgDocument::CONF_SVG_OPTIMIZATION_ENABLE] = array('onoff'); 22421913ab3SNickeau 22521913ab3SNickeau/** 22621913ab3SNickeau * Svg Optimization Inline 22721913ab3SNickeau */ 22821913ab3SNickeau$meta[SvgImageLink::CONF_MAX_KB_SIZE_FOR_INLINE_SVG] = array('string'); 22921913ab3SNickeau 23021913ab3SNickeau/** 23121913ab3SNickeau * Svg Upload Group Name 23221913ab3SNickeau */ 23321913ab3SNickeau$meta[action_plugin_combo_svg::CONF_SVG_UPLOAD_GROUP_NAME] = array('string'); 23421913ab3SNickeau 23521913ab3SNickeau/** 23621913ab3SNickeau * Svg The attribute that are deleted with the optimization 23721913ab3SNickeau * {@link SvgDocument::CONF_OPTIMIZATION_ATTRIBUTES_TO_DELETE} 23821913ab3SNickeau */ 23921913ab3SNickeau$meta[SvgDocument::CONF_OPTIMIZATION_ATTRIBUTES_TO_DELETE] = array('string'); 24021913ab3SNickeau$meta[SvgDocument::CONF_OPTIMIZATION_ELEMENTS_TO_DELETE] = array('string'); 24121913ab3SNickeau$meta[SvgDocument::CONF_OPTIMIZATION_ELEMENTS_TO_DELETE_IF_EMPTY] = array('string'); 24221913ab3SNickeau$meta[SvgDocument::CONF_OPTIMIZATION_NAMESPACES_TO_KEEP] = array('string'); 24321913ab3SNickeau$meta[SvgDocument::CONF_PRESERVE_ASPECT_RATIO_DEFAULT] = array('string'); 24421913ab3SNickeau 24521913ab3SNickeau/** 24621913ab3SNickeau * Raster Lazy load image 24721913ab3SNickeau */ 24821913ab3SNickeau$meta[RasterImageLink::CONF_LAZY_LOADING_ENABLE] = array('onoff'); 24921913ab3SNickeau$meta[RasterImageLink::CONF_RESPONSIVE_IMAGE_MARGIN] = array('string'); 25021913ab3SNickeau$meta[RasterImageLink::CONF_RETINA_SUPPORT_ENABLED] = array('onoff'); 25121913ab3SNickeau 25221913ab3SNickeau/** 25321913ab3SNickeau * Lazy loading 25421913ab3SNickeau */ 25521913ab3SNickeau$meta[LazyLoad::CONF_LAZY_LOADING_PLACEHOLDER_COLOR] = array("string"); 25621913ab3SNickeau 25721913ab3SNickeau/** 25821913ab3SNickeau * Internal media 25921913ab3SNickeau */ 260531e725cSNickeau$meta[syntax_plugin_combo_media::CONF_IMAGE_ENABLE] = array('onoff'); 26121913ab3SNickeau 26221913ab3SNickeau/** 26321913ab3SNickeau * Internal media default linking 26421913ab3SNickeau */ 26523723136Sgerardnico$meta[MediaLink::CONF_DEFAULT_LINKING] = array('multichoice', '_choices' => array( 26623723136Sgerardnico MediaLink::LINKING_DIRECT_VALUE, 26723723136Sgerardnico MediaLink::LINKING_DETAILS_VALUE, 26823723136Sgerardnico MediaLink::LINKING_LINKONLY_VALUE, 26923723136Sgerardnico MediaLink::LINKING_NOLINK_VALUE, 27021913ab3SNickeau)); 27121913ab3SNickeau 27221913ab3SNickeau/** 27321913ab3SNickeau * Default breakpoint 27421913ab3SNickeau */ 27521913ab3SNickeau$meta[FloatAttribute::CONF_FLOAT_DEFAULT_BREAKPOINT] = array('multichoice', '_choices' => array( 27621913ab3SNickeau "xs", 27721913ab3SNickeau "sm", 27821913ab3SNickeau "md", 27921913ab3SNickeau "lg", 28021913ab3SNickeau "xl", 28121913ab3SNickeau "xxl" 28221913ab3SNickeau)); 283531e725cSNickeau 284531e725cSNickeau/** 285531e725cSNickeau * Outline Numbering 286531e725cSNickeau */ 287531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_ENABLE] = array("onoff"); 288531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL2] = array('multichoice', '_choices' => action_plugin_combo_outlinenumbering::CONF_COUNTER_STYLES_CHOICES); 289531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL3] = array('multichoice', '_choices' => action_plugin_combo_outlinenumbering::CONF_COUNTER_STYLES_CHOICES); 290531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL4] = array('multichoice', '_choices' => action_plugin_combo_outlinenumbering::CONF_COUNTER_STYLES_CHOICES); 291531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL5] = array('multichoice', '_choices' => action_plugin_combo_outlinenumbering::CONF_COUNTER_STYLES_CHOICES); 292531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_STYLE_LEVEL6] = array('multichoice', '_choices' => action_plugin_combo_outlinenumbering::CONF_COUNTER_STYLES_CHOICES); 293531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_COUNTER_SEPARATOR] = array("string"); 294531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_PREFIX] = array("string"); 295531e725cSNickeau$meta[action_plugin_combo_outlinenumbering::CONF_OUTLINE_NUMBERING_SUFFIX] = array("string"); 296a6bf47aaSNickeau 297a6bf47aaSNickeau/** 298a6bf47aaSNickeau * Identity form 299a6bf47aaSNickeau */ 300a6bf47aaSNickeau$meta[Identity::CONF_ENABLE_LOGO_ON_IDENTITY_FORMS] = array("onoff"); 301a6bf47aaSNickeau$meta[action_plugin_combo_registration::CONF_ENABLE_REGISTER_FORM] = array("onoff"); 302a6bf47aaSNickeau$meta[action_plugin_combo_login::CONF_ENABLE_LOGIN_FORM] = array("onoff"); 303a6bf47aaSNickeau$meta[action_plugin_combo_resend::CONF_ENABLE_RESEND_PWD_FORM] = array("onoff"); 3049337a630SNickeau$meta[action_plugin_combo_profile::CONF_ENABLE_PROFILE_UPDATE_FORM] = array("onoff"); 3059337a630SNickeau$meta[action_plugin_combo_profile::CONF_ENABLE_PROFILE_DELETE_FORM] = array("onoff"); 306a6bf47aaSNickeau 30737748cd8SNickeau/** 30837748cd8SNickeau * Comment 30937748cd8SNickeau */ 31037748cd8SNickeau$meta[syntax_plugin_combo_comment::CONF_OUTPUT_COMMENT] = array("onoff"); 31137748cd8SNickeau 3121fa8c418SNickeau/** 3131fa8c418SNickeau * Cache 3141fa8c418SNickeau */ 315c3437056SNickeau$meta[action_plugin_combo_staticresource::CONF_STATIC_CACHE_ENABLED] = array("onoff"); 316c3437056SNickeau 317c3437056SNickeau/** 318c3437056SNickeau * Link Wizard 319c3437056SNickeau */ 320c3437056SNickeau$meta[action_plugin_combo_linkwizard::CONF_ENABLE_ENHANCED_LINK_WIZARD] = array("onoff"); 321c3437056SNickeau 322c3437056SNickeau/** 323c3437056SNickeau * Canonical Url Type 324c3437056SNickeau */ 325c3437056SNickeau$meta[PageUrlType::CONF_CANONICAL_URL_TYPE] = array('multichoice', '_choices' => PageUrlType::CONF_VALUES); 326c3437056SNickeau 327c3437056SNickeau/** 328c3437056SNickeau * Frontmatter on sumbit 329c3437056SNickeau */ 330c3437056SNickeau$meta[syntax_plugin_combo_frontmatter::CONF_ENABLE_FRONT_MATTER_ON_SUBMIT] = array("onoff"); 331c3437056SNickeau 332c3437056SNickeau/** 333c3437056SNickeau * Heading 334c3437056SNickeau */ 335c3437056SNickeau$meta[syntax_plugin_combo_headingwiki::CONF_WIKI_HEADING_ENABLE] = array("onoff"); 336