2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-02 14:40:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
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";
|
2019-09-29 14:30:55 +01:00
|
|
|
}
|