1<?php 2/** 3 * Options for the Blog Plugin 4 */ 5$conf['namespace'] = 'blog'; // default location for blog entries 6$conf['formposition'] = 'bottom'; // position of new entry form 7$conf['newentrytitle'] = ''; // Title text for the 'new entry' form 8$conf['dateprefix'] = ''; // prefix date to new entry IDs 9$conf['sortkey'] = 'cdate'; // sort key for blog entries 10$conf['sortorder'] = 'descending'; // ascending or descending 11 12$conf['showhistogram'] = 1; // show histogramm in archive 13$conf['max_months'] = 100; // max months to show in the histogram 14$conf['histogram_height'] = 50; // height of the histogram in pixels 15 16$conf['excluded_pages'] = '!^blog:\d{4}(:\d{2})?$!'; // regex for pages to exclude from bloglisting 17 18// vim:ts=4:sw=4:et:enc=utf-8: 19