Passed
Push — translations ( 6cd971...bddd68 )
by Yannick
35:39 queued 27:44
created

NotebookTeacher::getIcon()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
declare(strict_types=1);
5
6
namespace Chamilo\CoreBundle\Tool;
7
8
class NotebookTeacher extends AbstractPlugin
9
{
10
    public function getTitle(): string
11
    {
12
        return 'notebookteacher';
13
    }
14
15
    public function getLink(): string
16
    {
17
        return '/plugin/notebookteacher/start.php';
18
    }
19
20
    public function getIcon(): string
21
    {
22
        return 'mdi-note-edit';
23
    }
24
25
    public function getTitleToShow(): string
26
    {
27
        return 'Teacher notes';
28
    }
29
}
30