This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/setup/config.php

17 lines
368 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
2019-08-02 19:40:03 +00:00
namespace Shimmie2;
2019-08-02 19:40:03 +00: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";
2024-02-14 12:35:58 +00:00
public const NICE_URLS = "nice_urls";
2019-09-29 13:30:55 +00:00
}