blob: e05c3450062258d93e4f5f0403eb6bec153aa450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<?php
# Lifter010: TODO
/*
* Copyright (C) 2009 - Marcus Lunzenauer (mlunzena@uos)
* André Noack <noack@data-quest.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
/**
* This class represents the avatar of a institute.
*
* @package studip
* @subpackage lib
*
* @author André Noack <noack@data-quest.de>
* @copyright (c) Authors
* @since 1.10
*/
class InstituteAvatar extends CourseAvatar
{
/**
* Returns an avatar object of the appropriate class.
*
* @param string the course's id
*
* @return mixed the course's avatar.
*/
static function getAvatar($id)
{
return new InstituteAvatar($id);
}
/**
* Returns an avatar object for "nobody".
*
* @return mixed the course's avatar.
*/
static function getNobody()
{
return new InstituteAvatar('nobody');
}
/**
* Returns the URL to the institute' avatars.
*
* @return string the URL to the avatars
*/
function getAvatarDirectoryUrl()
{
return $GLOBALS['DYNAMIC_CONTENT_URL'] . "/institute";
}
/**
* Returns the file system path to the institute' avatars
*
* @return string the file system path to the avatars
*/
function getAvatarDirectoryPath()
{
return $GLOBALS['DYNAMIC_CONTENT_PATH'] . "/institute";
}
/**
* Return the default title of the avatar.
* @return string the default title
*/
function getDefaultTitle()
{
$institute = Institute::find($this->user_id);
return $institute
? $institute->name
: Avatar::NOBODY;
}
/**
* Return if avatar is visible to the current user.
* @return boolean: true if visible
*/
protected function checkAvatarVisibility() {
//no special conditions for visibility of course-avatars yet
return true;
}
}
|