<?php
/**
* The application configuration file.
*
* This file contains application configuration information.
*
* @package Demo
* @subpackage Config
* @author Greg McWhirter <hide@address.com>
* @copyright Copyright (c) 2008 Greg McWhirter
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Krai::Uses(
Krai::$INCLUDES."/lib/functions.lib.php"
);
/**
* Contains the application settings
*
* This class contains settins used by the application.
*
* @package Demo
* @subpackage Config
*/
abstract class SETTINGS
{
/**
* The name of the login cookie
*
*
*/
const COOKIENAME = "MyLogin";
/**
* The domain for the login cookie
*
*
*/
const COOKIE_DOMAIN = ".example.com";
/**
* A date formatting string to use by default.
*
*/
const DATE_STRING = "D, M. jS g:i A";
/**
* Holds the rules for the Text_Wiki parser to use.
*
* This is an array of the rules that the Text_Wiki parser should use when it
* attempts to parse text passed to it.
*
* @var array
*
*/
public static $TextWikiRules = array(
'Prefilter',
'Delimiter',
'Code',
'Function',
'Raw',
'Anchor',
'Heading',
'Toc',
'Horiz',
'Break',
'Blockquote',
'List',
'Deflist',
'Table',
'Image',
'Phplookup',
'Center',
'Newline',
'Paragraph',
'Url',
'Colortext',
'Strong',
'Emphasis',
'Underline',
'Tt',
'Superscript',
'Subscript',
'Revise',
'Tighten'
);
}