-
Notifications
You must be signed in to change notification settings - Fork 481
/
ToolIcon.php
91 lines (87 loc) · 2.35 KB
/
ToolIcon.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/* For licensing terms, see /license.txt */
declare(strict_types=1);
namespace Chamilo\CoreBundle\Component\Utils;
enum ToolIcon: string
{
// Agenda/calendar
case AGENDA = 'calendar-text';
// Announcement
case ANNOUNCEMENT = 'bullhorn';
// Assignment/Work/Student publication
case ASSIGNMENT = 'inbox-full';
// Attendance
case ATTENDANCE = 'av-timer';
// Blog
case BLOG = 'post-outline';
// Chat
case CHAT = 'chat-processing';
// Course description
case COURSE_DESCRIPTION = 'apple-safari';
// Course homepage
case COURSE_HOME = 'upload';
// Course progress / Thematic advance
case COURSE_PROGRESS = 'progress-star';
// Course progress' lesson plan
case COURSE_PROGRESS_PLAN = 'progress-check';
// Course progress' schedule
case COURSE_PROGRESS_SCHEDULE = 'progress-clock';
// Course tool / Course entity
case COURSE = 'book-open-page-variant';
// Document
case DOCUMENT = 'bookshelf';
// Exercise / Test / Quiz / Exam
case QUIZ = 'order-bool-ascending-variant';
// Forum
case FORUM = 'comment-quote';
// Glossary
case GLOSSARY = 'alphabetical';
// Gradebook
case GRADEBOOK = 'certificate';
// Group
case GROUP = 'account-group';
// Learning path
case LP = 'map-marker-path';
// Link
case LINK = 'file-link';
// Maintenance
case MAINTENANCE = 'wrench-cog';
// Members / Users
case MEMBER = 'account';
// Notebook
case NOTEBOOK = 'note';
// Settings
case SETTINGS = 'cog';
// Shortcut
case SHORTCUT = 'flash-outline';
// Survey
case SURVEY = 'form-dropdown';
// Tool intro
case INTRO = 'image-text';
// Tracking/Reporting
case TRACKING = 'chart-box';
// Videoconference
case VIDEOCONFERENCE = 'video';
// Wiki
case WIKI = 'view-dashboard-edit';
// Security
case SECURITY = 'security';
// Plugin(s)
case PLUGIN = 'puzzle';
// Career
case CAREER = 'library-shelves';
// Promotion
case PROMOTION = 'school-outline';
// Translation
case TRANSLATION = 'translate';
// Help
case HELP = 'face-agent';
// Bug report
case BUG_REPORT = 'bug-check';
// Messages
case MESSAGE = 'inbox';
// Shared profile
case SHARED_PROFILE = 'account-box-outline';
// Dropbox
case DROPBOX = 'dropbox';
}