blob: 8e27f8e9b3d2a7bae22edca7f60ed554abcadc53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* This class represents the avatar of a course.
*
* @author Marcus Lunzenauer (mlunzena@uos), Till Glöggler (tgloeggl@uos)
* @license GPL2 or any later version
* @copyright (c) Authors
* @since 1.10
*/
class StudygroupAvatar extends CourseAvatar
{
/**
* This constant holds the username and ID of the "studygroup" avatar.
*/
protected const NOBODY = 'studygroup';
}
|