diff options
Diffstat (limited to 'core/configuration-example.php')
-rw-r--r-- | core/configuration-example.php | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/core/configuration-example.php b/core/configuration-example.php index 1416621..d56ce84 100644 --- a/core/configuration-example.php +++ b/core/configuration-example.php @@ -23,7 +23,7 @@ Application::set('BLOGMETA.MAIL', 'mail@example.org'); Application::set('BLOGMETA.LANG', 'en'); #=============================================================================== -# Settings for database connection +# Database configuration #=============================================================================== Application::set('DATABASE.HOSTNAME', 'localhost'); Application::set('DATABASE.BASENAME', 'blog'); @@ -31,33 +31,47 @@ Application::set('DATABASE.USERNAME', ''); Application::set('DATABASE.PASSWORD', ''); #=============================================================================== -# Backend configuration +# Template configuration #=============================================================================== -Application::set('ADMIN.TEMPLATE', 'admin'); -Application::set('ADMIN.LANGUAGE', Application::get('CORE.LANGUAGE')); +Application::set('TEMPLATE.NAME', 'standard'); +Application::set('TEMPLATE.LANG', Application::get('CORE.LANGUAGE')); #=============================================================================== -# Settings for template configuration +# Backend configuration #=============================================================================== -Application::set('TEMPLATE.NAME', 'standard'); -Application::set('TEMPLATE.LANG', Application::get('CORE.LANGUAGE')); +Application::set('ADMIN.TEMPLATE', 'admin'); +Application::set('ADMIN.LANGUAGE', Application::get('CORE.LANGUAGE')); #=============================================================================== -# Protocol, hostname and path for this installation +# Protocol, hostname and base directory for this installation #=============================================================================== Application::set('PATHINFO.PROT', $_SERVER['REQUEST_SCHEME']); Application::set('PATHINFO.HOST', $_SERVER['HTTP_HOST']); Application::set('PATHINFO.BASE', ''); #=============================================================================== -# Enable or disable the use of slug URLs for item permalinks +# Item base directories +#=============================================================================== +Application::set('PAGE.DIRECTORY', 'page'); +Application::set('POST.DIRECTORY', 'post'); +Application::set('USER.DIRECTORY', 'user'); + +#=============================================================================== +# Use slug URLs for item permalinks #=============================================================================== Application::set('PAGE.SLUG_URLS', TRUE); Application::set('POST.SLUG_URLS', TRUE); Application::set('USER.SLUG_URLS', TRUE); #=============================================================================== -# Number of items to display on feed and overview sites +# Parse emoticons in items content +#=============================================================================== +Application::set('PAGE.EMOTICONS', TRUE); +Application::set('POST.EMOTICONS', TRUE); +Application::set('USER.EMOTICONS', TRUE); + +#=============================================================================== +# Number of items to show on feed and item overview #=============================================================================== Application::set('PAGE.LIST_SIZE', 10); Application::set('POST.LIST_SIZE', 10); @@ -66,28 +80,14 @@ Application::set('PAGE.FEED_SIZE', 25); Application::set('POST.FEED_SIZE', 25); #=============================================================================== -# Settings for item URL generation (you have to change the .htaccess as well!) -#=============================================================================== -Application::set('PAGE.DIRECTORY', 'page'); -Application::set('POST.DIRECTORY', 'post'); -Application::set('USER.DIRECTORY', 'user'); - -#=============================================================================== -# Enable or disable the use of emoticons for item content -#=============================================================================== -Application::set('PAGE.EMOTICONS', TRUE); -Application::set('POST.EMOTICONS', TRUE); -Application::set('USER.EMOTICONS', TRUE); - -#=============================================================================== -# Number of characters to display in the items <meta> description +# Number of characters to show in the items <meta> description #=============================================================================== Application::set('PAGE.DESCRIPTION_SIZE', 200); Application::set('POST.DESCRIPTION_SIZE', 200); Application::set('USER.DESCRIPTION_SIZE', 200); #=============================================================================== -# "ORDER BY" clause for item sorting on feed and overview sites +# "ORDER BY" clause for item sorting on feed and item overview #=============================================================================== Application::set('PAGE.LIST_SORT', 'time_insert DESC'); Application::set('POST.LIST_SORT', 'time_insert DESC'); |