aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/render/TemplatePage.php
blob: 03b424f3c5fc0d272c7e6da111759c392582fe6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

declare(strict_types=1);

namespace Shaarli\Render;

interface TemplatePage
{
    public const ERROR_404 = '404';
    public const ADDLINK = 'addlink';
    public const CHANGE_PASSWORD = 'changepassword';
    public const CHANGE_TAG = 'changetag';
    public const CONFIGURE = 'configure';
    public const DAILY = 'daily';
    public const DAILY_RSS = 'dailyrss';
    public const EDIT_LINK = 'editlink';
    public const EDIT_LINK_BATCH = 'editlink.batch';
    public const ERROR = 'error';
    public const EXPORT = 'export';
    public const NETSCAPE_EXPORT_BOOKMARKS = 'export.bookmarks';
    public const FEED_ATOM = 'feed.atom';
    public const FEED_RSS = 'feed.rss';
    public const IMPORT = 'import';
    public const INSTALL = 'install';
    public const LINKLIST = 'linklist';
    public const LOGIN = 'loginform';
    public const OPEN_SEARCH = 'opensearch';
    public const PICTURE_WALL = 'picwall';
    public const PLUGINS_ADMIN = 'pluginsadmin';
    public const TAG_CLOUD = 'tag.cloud';
    public const TAG_LIST = 'tag.list';
    public const THUMBNAILS = 'thumbnails';
    public const TOOLS = 'tools';
}