12 lines
279 B
PHP
12 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class SetupConfig
|
||
|
{
|
||
|
public const TITLE = "title";
|
||
|
public const FRONT_PAGE = "front_page";
|
||
|
public const MAIN_PAGE = "main_page";
|
||
|
public const THEME = "theme";
|
||
|
public const WORD_WRAP = "word_wrap";
|
||
|
public const COMMENT_CAPTCHA = "comment_captcha";
|
||
|
}
|