]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/legacy/LegacyRouter.php
Merge pull request #1540 from ArthurHoaro/fix/metadata-regexes
[github/shaarli/Shaarli.git] / application / legacy / LegacyRouter.php
CommitLineData
6fc14d53 1<?php
1a8ac737
A
2
3namespace Shaarli\Legacy;
6fc14d53
A
4
5/**
6 * Class Router
7 *
8 * (only displayable pages here)
1a8ac737
A
9 *
10 * @deprecated
6fc14d53 11 */
1a8ac737 12class LegacyRouter
6fc14d53 13{
28f26524
A
14 public static $AJAX_THUMB_UPDATE = 'ajax_thumb_update';
15
6fc14d53
A
16 public static $PAGE_LOGIN = 'login';
17
18 public static $PAGE_PICWALL = 'picwall';
19
ce791838 20 public static $PAGE_TAGCLOUD = 'tag.cloud';
6fc14d53 21
ce791838 22 public static $PAGE_TAGLIST = 'tag.list';
aa4797ba 23
38603b24
A
24 public static $PAGE_DAILY = 'daily';
25
ce791838 26 public static $PAGE_FEED_ATOM = 'feed.atom';
8395d0b7 27
ce791838 28 public static $PAGE_FEED_RSS = 'feed.rss';
8395d0b7 29
6fc14d53
A
30 public static $PAGE_TOOLS = 'tools';
31
32 public static $PAGE_CHANGEPASSWORD = 'changepasswd';
33
34 public static $PAGE_CONFIGURE = 'configure';
35
36 public static $PAGE_CHANGETAG = 'changetag';
37
38 public static $PAGE_ADDLINK = 'addlink';
39
ce791838 40 public static $PAGE_EDITLINK = 'editlink';
6fc14d53 41
f4ebd5fe
A
42 public static $PAGE_DELETELINK = 'delete_link';
43
8d03f705
A
44 public static $PAGE_CHANGE_VISIBILITY = 'change_visibility';
45
4154c25b
A
46 public static $PAGE_PINLINK = 'pin';
47
6fc14d53
A
48 public static $PAGE_EXPORT = 'export';
49
50 public static $PAGE_IMPORT = 'import';
51
8f8113b9
A
52 public static $PAGE_OPENSEARCH = 'opensearch';
53
6fc14d53
A
54 public static $PAGE_LINKLIST = 'linklist';
55
dea0ba28
A
56 public static $PAGE_PLUGINSADMIN = 'pluginadmin';
57
58 public static $PAGE_SAVE_PLUGINSADMIN = 'save_pluginadmin';
59
28f26524
A
60 public static $PAGE_THUMBS_UPDATE = 'thumbs_update';
61
986a5210 62 public static $GET_TOKEN = 'token';
db6dec0d 63}