parent
bb56e66d25
commit
72f3e6d76b
@ -0,0 +1,36 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
class CourseHomePage extends AbstractTool implements ToolInterface |
||||
{ |
||||
public function getName(): string |
||||
{ |
||||
return 'course_homepage'; |
||||
} |
||||
|
||||
public function getLink(): string |
||||
{ |
||||
return '/resources/course_homepage'; |
||||
} |
||||
|
||||
public function getIcon(): string |
||||
{ |
||||
return 'mdi-file-link'; |
||||
} |
||||
|
||||
public function getCategory(): string |
||||
{ |
||||
return 'admin'; |
||||
} |
||||
|
||||
public function getResourceTypes(): ?array |
||||
{ |
||||
return [ |
||||
]; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue