parent
9f1b390213
commit
37ea0349b8
@ -0,0 +1,25 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace ChamiloLMS\CourseBundle\Tool; |
||||
|
||||
/** |
||||
* Class Attendance |
||||
* @package ChamiloLMS\CourseBundle\Tool |
||||
*/ |
||||
class Attendance extends BaseTool |
||||
{ |
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
public function getLink() |
||||
{ |
||||
return 'attendance/index.php'; |
||||
} |
||||
|
||||
|
||||
public function getCategory() |
||||
{ |
||||
return 'authoring'; |
||||
} |
||||
} |
@ -0,0 +1,32 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace ChamiloLMS\CourseBundle\Tool; |
||||
|
||||
/** |
||||
* Class CourseDescription |
||||
* @package ChamiloLMS\CourseBundle\Tool |
||||
*/ |
||||
class Chat extends BaseTool |
||||
{ |
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
public function getName() |
||||
{ |
||||
return 'chat'; |
||||
} |
||||
|
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
public function getLink() |
||||
{ |
||||
return 'chat/chat.php'; |
||||
} |
||||
|
||||
public function getCategory() |
||||
{ |
||||
return 'interaction'; |
||||
} |
||||
} |
@ -0,0 +1,32 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace ChamiloLMS\CourseBundle\Tool; |
||||
|
||||
/** |
||||
* Class CourseDescription |
||||
* @package ChamiloLMS\CourseBundle\Tool |
||||
*/ |
||||
class CourseProgress extends BaseTool |
||||
{ |
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
public function getName() |
||||
{ |
||||
return 'course_progress'; |
||||
} |
||||
|
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
public function getLink() |
||||
{ |
||||
return 'course_progress/index.php'; |
||||
} |
||||
|
||||
public function getCategory() |
||||
{ |
||||
return 'authoring'; |
||||
} |
||||
} |
Loading…
Reference in new issue