for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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 [
];