src/CoreBundle/Tool/NotebookTeacher.php
<?php
/* For licensing terms, see /license.txt */
declare(strict_types=1);
namespace Chamilo\CoreBundle\Tool;
class NotebookTeacher extends AbstractPlugin
{
public function getTitle(): string
{
return 'notebookteacher';
}
public function getLink(): string
{
return '/plugin/notebookteacher/start.php';
}
public function getIcon(): string
{
return 'mdi-note-edit';
}
public function getTitleToShow(): string
{
return 'Teacher notes';
}
}