PHP Classes

File: SmallServerAdmin/config.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP Small Server Administrator   SmallServerAdmin/config.php   Download  
File: SmallServerAdmin/config.php
Role: Configuration script
Content type: text/plain
Description: WebForms.PHP config file.
Class: PHP Small Server Administrator
Web panel for small Debian and Ubuntu servers
Author: By
Last change:
Date: 7 years ago
Size: 813 bytes
 

Contents

Class file image Download
<?php
# WebForms config
# ---------------------------------------------------------------
# page caching (true|false)
define('PAGE_DEFAULT_CACHE', false);
# HTML compress (true|false)
define('PAGE_COMPRESS_HTML', false);
# debug mode (true|false)
define('DEBUG_MODE', false);
# root path
define('MAIN_PATH', $_SERVER['DOCUMENT_ROOT']);
# ---------------------------------------------------------------
# default layout
define('PAGE_DEFAULT_TEMPLATE', '~/Layouts/_Layout.php');
# default page title
define('PAGE_DEFAULT_TITLE', 'SmallServerAdmin');
# default encode
define('PAGE_DEFAULT_ENCODE', 'utf-8');
# default culture
define('PAGE_DEFAULT_CULTURE', 'en');
# meta tags
define('META_AUTHOR', 'Aleksey Nemiro');
define('META_ROBOTS', 'none');
# ---------------------------------------------------------------
?>