chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Tool/CourseProgress.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

namespace Chamilo\CoreBundle\Tool;

use Chamilo\CourseBundle\Entity\CThematic;

class CourseProgress extends AbstractTool implements ToolInterface
{
    public function getTitle(): string
    {
        return 'course_progress';
    }

    public function getIcon(): string
    {
        return 'mdi-progress-upload';
    }

    public function getLink(): string
    {
        return '/main/course_progress/index.php';
    }

    public function getCategory(): string
    {
        return 'authoring';
    }

    public function getResourceTypes(): ?array
    {
        return [
            'thematics' => CThematic::class,
        ];
    }
}