]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/render/TemplatePage.php
Merge pull request #1616 from dimtion/fix-api-redirect
[github/shaarli/Shaarli.git] / application / render / TemplatePage.php
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Shaarli\Render;
6
7 interface TemplatePage
8 {
9 public const ERROR_404 = '404';
10 public const ADDLINK = 'addlink';
11 public const CHANGE_PASSWORD = 'changepassword';
12 public const CHANGE_TAG = 'changetag';
13 public const CONFIGURE = 'configure';
14 public const DAILY = 'daily';
15 public const DAILY_RSS = 'dailyrss';
16 public const EDIT_LINK = 'editlink';
17 public const EDIT_LINK_BATCH = 'editlink.batch';
18 public const ERROR = 'error';
19 public const EXPORT = 'export';
20 public const NETSCAPE_EXPORT_BOOKMARKS = 'export.bookmarks';
21 public const FEED_ATOM = 'feed.atom';
22 public const FEED_RSS = 'feed.rss';
23 public const IMPORT = 'import';
24 public const INSTALL = 'install';
25 public const LINKLIST = 'linklist';
26 public const LOGIN = 'loginform';
27 public const OPEN_SEARCH = 'opensearch';
28 public const PICTURE_WALL = 'picwall';
29 public const PLUGINS_ADMIN = 'pluginsadmin';
30 public const TAG_CLOUD = 'tag.cloud';
31 public const TAG_LIST = 'tag.list';
32 public const THUMBNAILS = 'thumbnails';
33 public const TOOLS = 'tools';
34 }