ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilObjCourseAccess Class Reference

Class ilObjCourseAccess. More...

+ Inheritance diagram for ilObjCourseAccess:
+ Collaboration diagram for ilObjCourseAccess:

Public Member Functions

 _checkAccess ($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
 checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess) More...
 
- Public Member Functions inherited from ilObjectAccess
 _checkAccess ($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
 Checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess) More...
 
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition More...
 

Static Public Member Functions

static getConditionOperators ()
 Get operators. More...
 
static checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 @global ilObjUser $ilUser More...
 
static _getCommands ()
 get commands More...
 
static _checkGoto ($a_target)
 check whether goto script will succeed More...
 
static _lookupViewMode ($a_id)
 Lookup view mode. More...
 
static _isOnline ($a_obj_id)
 Check if online setting is active. More...
 
static _isActivated ($a_obj_id, &$a_visible_flag=null, $a_mind_member_view=true)
 Is activated? More...
 
static _registrationEnabled ($a_obj_id)
 
static lookupRegistrationInfo ($a_obj_id)
 Lookup registration info @global ilDB $ilDB @global ilObjUser $ilUser @global ilLanguage $lng. More...
 
static _isOffline ($a_obj_id)
 Type-specific implementation of general status. More...
 
static _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data. More...
 
static _usingRegistrationCode ()
 Using Registration code. More...
 
static lookupPeriodInfo ($a_obj_id)
 Lookup course period info. More...
 
static _getCommands ()
 get commands More...
 
static _checkGoto ($a_target)
 check whether goto script will succeed More...
 
static _isOffline ($a_obj_id)
 Type-specific implementation of general status, has to be overwritten. More...
 
static _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data. More...
 
static getConditionOperators ()
 Returns an array with valid operators for the specific object type. More...
 
static checkCondition ($a_trigger_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition for a specific user and object More...
 

Static Protected Attributes

static $using_code = false
 

Detailed Description

Class ilObjCourseAccess.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 19 of file class.ilObjCourseAccess.php.

Member Function Documentation

◆ _checkAccess()

ilObjCourseAccess::_checkAccess (   $a_cmd,
  $a_permission,
  $a_ref_id,
  $a_obj_id,
  $a_user_id = "" 
)

checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess)

Parameters
string$a_cmdcommand (not permission!)
string$a_permissionpermission
int$a_ref_idreference id
int$a_obj_idobject id
int$a_user_iduser id (if not provided, current user is taken)
Returns
boolean true, if everything is ok

Reimplemented from ilObjectAccess.

Definition at line 67 of file class.ilObjCourseAccess.php.

68 {
69 global $ilUser, $lng, $rbacsystem, $ilAccess, $ilias;
70
71 if ($a_user_id == "") {
72 $a_user_id = $ilUser->getId();
73 }
74
75 if ($ilUser->getId() == $a_user_id) {
76 $participants = ilCourseParticipant::_getInstanceByObjId($a_obj_id, $a_user_id);
77 } else {
78 $participants = ilCourseParticipants::_getInstanceByObjId($a_obj_id);
79 }
80
81
82 switch ($a_cmd) {
83 case "view":
84 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
85 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("crs_status_blocked"));
86 return false;
87 }
88 break;
89
90 case 'leave':
91
92 // Regular member
93 if ($a_permission == 'leave') {
94 include_once './Modules/Course/classes/class.ilObjCourse.php';
95 $limit = null;
96 if (!ilObjCourse::mayLeave($a_obj_id, $a_user_id, $limit)) {
97 $ilAccess->addInfoItem(
99 sprintf($lng->txt("crs_cancellation_end_rbac_info"), ilDatePresentation::formatDate($limit))
100 );
101 return false;
102 }
103
104 include_once './Modules/Course/classes/class.ilCourseParticipants.php';
105 if (!$participants->isAssigned($a_user_id)) {
106 return false;
107 }
108 }
109 // Waiting list
110 if ($a_permission == 'join') {
111 include_once './Modules/Course/classes/class.ilCourseWaitingList.php';
112 if (!ilCourseWaitingList::_isOnList($a_user_id, $a_obj_id)) {
113 return false;
114 }
115 return true;
116 }
117 break;
118
119 case 'join':
120
121 include_once './Modules/Course/classes/class.ilCourseWaitingList.php';
122 if (ilCourseWaitingList::_isOnList($a_user_id, $a_obj_id)) {
123 return false;
124 }
125 break;
126 }
127
128 switch ($a_permission) {
129 case 'visible':
130 $visible = null;
131 $active = self::_isActivated($a_obj_id, $visible);
132 $tutor = $rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id);
133 if (!$active) {
134 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
135 }
136 if (!$tutor and !$active && !$visible) {
137 return false;
138 }
139 break;
140
141 case 'read':
142 $tutor = $rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id);
143 if ($tutor) {
144 return true;
145 }
146 $active = self::_isActivated($a_obj_id);
147 if (!$active) {
148 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
149 return false;
150 }
151 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
152 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("crs_status_blocked"));
153 return false;
154 }
155 break;
156
157 case 'join':
158 if (!self::_registrationEnabled($a_obj_id)) {
159 return false;
160 }
161
162 if ($participants->isAssigned($a_user_id)) {
163 return false;
164 }
165 break;
166
167 case 'leave':
168 include_once './Modules/Course/classes/class.ilObjCourse.php';
169 return ilObjCourse::mayLeave($a_obj_id, $a_user_id);
170 }
171 return true;
172 }
sprintf('%.4f', $callTime)
const IL_NO_OBJECT_ACCESS
static _getInstanceByObjId($a_obj_id, $a_usr_id)
Get singleton instance.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date @access public.
static _isActivated($a_obj_id, &$a_visible_flag=null, $a_mind_member_view=true)
Is activated?
static mayLeave($a_course_id, $a_user_id=null, &$a_date=null)
static _isOnList($a_usr_id, $a_obj_id)
Check if a user on the waiting list.
global $lng
Definition: privfeed.php:17
$ilUser
Definition: imgupload.php:18

References $ilUser, $lng, ilCourseParticipants\_getInstanceByObjId(), ilCourseParticipant\_getInstanceByObjId(), _isActivated(), ilWaitingList\_isOnList(), ilDatePresentation\formatDate(), IL_NO_OBJECT_ACCESS, ilAccessInfo\IL_STATUS_INFO, ilObjCourse\mayLeave(), and sprintf.

+ Here is the call graph for this function:

◆ _checkGoto()

static ilObjCourseAccess::_checkGoto (   $a_target)
static

check whether goto script will succeed

Reimplemented from ilObjectAccess.

Definition at line 227 of file class.ilObjCourseAccess.php.

228 {
229 global $ilAccess,$ilUser;
230
231 $t_arr = explode("_", $a_target);
232
233 // registration codes
234 if (substr($t_arr[2], 0, 5) == 'rcode' and $ilUser->getId() != ANONYMOUS_USER_ID) {
235 self::$using_code = true;
236 return true;
237 }
238
239
240 if ($t_arr[0] != "crs" || ((int) $t_arr[1]) <= 0) {
241 return false;
242 }
243
244 // checking for read results in endless loop, if read is given
245 // but visible is not given (-> see bug 5323)
246 if ($ilAccess->checkAccess("read", "", $t_arr[1]) ||
247 $ilAccess->checkAccess("visible", "", $t_arr[1])) {
248 //if ($ilAccess->checkAccess("visible", "", $t_arr[1]))
249 return true;
250 }
251 return false;
252 }

References $ilUser.

◆ _getCommands()

static ilObjCourseAccess::_getCommands ( )
static

get commands

this method returns an array of all possible commands/permission combinations

example: $commands = array ( array("permission" => "read", "cmd" => "view", "lang_var" => "show"), array("permission" => "write", "cmd" => "edit", "lang_var" => "edit"), );

Reimplemented from ilObjectAccess.

Definition at line 186 of file class.ilObjCourseAccess.php.

187 {
188 $commands = array();
189 $commands[] = array("permission" => "crs_linked", "cmd" => "", "lang_var" => "view", "default" => true);
190
191 include_once './Services/WebServices/FileManager/classes/class.ilFMSettings.php';
192 if (ilFMSettings::getInstance()->isEnabled()) {
193 $commands[] = array(
194 'permission' => 'read',
195 'cmd' => 'fileManagerLaunch',
196 'lang_var' => 'fm_start',
197 'enable_anonymous' => false
198 );
199 }
200
201 $commands[] = array("permission" => "join", "cmd" => "join", "lang_var" => "join");
202
203 // on waiting list
204 $commands[] = array('permission' => "join", "cmd" => "leave", "lang_var" => "leave_waiting_list");
205
206 // regualar users
207 $commands[] = array('permission' => "leave", "cmd" => "leave", "lang_var" => "crs_unsubscribe");
208
209 include_once('Services/WebDAV/classes/class.ilDAVActivationChecker.php');
211 include_once './Services/WebDAV/classes/class.ilDAVUtils.php';
212 if (ilDAVUtils::getInstance()->isLocalPasswordInstructionRequired()) {
213 $commands[] = array('permission' => 'read', 'cmd' => 'showPasswordInstruction', 'lang_var' => 'mount_webfolder', 'enable_anonymous' => 'false');
214 } else {
215 $commands[] = array("permission" => "read", "cmd" => "mount_webfolder", "lang_var" => "mount_webfolder", "enable_anonymous" => "false");
216 }
217 }
218
219 $commands[] = array("permission" => "write", "cmd" => "enableAdministrationPanel", "lang_var" => "edit_content");
220 $commands[] = array("permission" => "write", "cmd" => "edit", "lang_var" => "settings");
221 return $commands;
222 }
static getInstance()
Get singleton instance.
static getInstance()
Get singleton instance.

References ilDAVActivationChecker\_isActive(), ilDAVUtils\getInstance(), and ilFMSettings\getInstance().

Referenced by ilObjCourseReferenceAccess\_getCommands(), and ilObjCourseListGUI\init().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _isActivated()

static ilObjCourseAccess::_isActivated (   $a_obj_id,
$a_visible_flag = null,
  $a_mind_member_view = true 
)
static

Is activated?

See also
ilStartupGUI
Parameters
int$a_obj_id
bool&$a_visible_flag
bool$a_mind_member_view
Returns
boolean

Definition at line 298 of file class.ilObjCourseAccess.php.

299 {
300 // #7669
301 if ($a_mind_member_view) {
302 include_once './Services/Container/classes/class.ilMemberViewSettings.php';
303 if (ilMemberViewSettings::getInstance()->isActive()) {
304 $a_visible_flag = true;
305 return true;
306 }
307 }
308
309 // offline?
310 if (!self::_isOnline($a_obj_id)) {
311 $a_visible_flag = false;
312 return false;
313 }
314
315 $ref_id = ilObject::_getAllReferences($a_obj_id);
316 $ref_id = array_pop($ref_id);
317
318 $a_visible_flag = true;
319
320 include_once './Services/Object/classes/class.ilObjectActivation.php';
321 $item = ilObjectActivation::getItem($ref_id);
322 switch ($item['timing_type']) {
324 if (time() < $item['timing_start'] or
325 time() > $item['timing_end']) {
326 $a_visible_flag = $item['visible'];
327 return false;
328 }
329 // fallthrough
330
331 // no break
332 default:
333 return true;
334 }
335 }
static getInstance()
Get instance.
static getItem($a_ref_id)
Get item data.
static _getAllReferences($a_id)
get all reference ids of object

References ilObject\_getAllReferences(), ilMemberViewSettings\getInstance(), ilObjectActivation\getItem(), and ilObjectActivation\TIMINGS_ACTIVATION.

Referenced by _checkAccess(), ilObjCourse\_isActivated(), _isOffline(), ilPortfolioPageGUI\getCoursesOfUser(), and ilObjCourse\register().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _isOffline()

static ilObjCourseAccess::_isOffline (   $a_obj_id)
static

Type-specific implementation of general status.

Used in ListGUI and Learning Progress

Parameters
int$a_obj_id
Returns
bool

Reimplemented from ilObjectAccess.

Definition at line 457 of file class.ilObjCourseAccess.php.

458 {
459 $dummy = null;
460 return !self::_isActivated($a_obj_id, $dummy, false);
461 }

References _isActivated().

Referenced by ilObjCourseListGUI\getProperties().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _isOnline()

static ilObjCourseAccess::_isOnline (   $a_obj_id)
static

Check if online setting is active.

Parameters
int$a_obj_id
Returns
bool

Definition at line 278 of file class.ilObjCourseAccess.php.

279 {
280 global $ilDB;
281
282 $query = "SELECT * FROM crs_settings " .
283 "WHERE obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " ";
284 $res = $ilDB->query($query);
286 return (bool) $row->activation_type;
287 }
$query
foreach($_POST as $key=> $value) $res
global $ilDB

References $ilDB, $query, $res, $row, and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilObjCourse\register().

+ Here is the caller graph for this function:

◆ _lookupViewMode()

static ilObjCourseAccess::_lookupViewMode (   $a_id)
static

Lookup view mode.

This is placed here to the need that ilObjFolder must always instantiate a Course object.

Returns
Parameters
object$a_id

Definition at line 260 of file class.ilObjCourseAccess.php.

261 {
262 global $ilDB;
263
264 $query = "SELECT view_mode FROM crs_settings WHERE obj_id = " . $ilDB->quote($a_id, 'integer') . " ";
265 $res = $ilDB->query($query);
266 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
267 return $row->view_mode;
268 }
269 return false;
270 }

References $ilDB, $query, $res, $row, and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilObjFolder\getViewMode().

+ Here is the caller graph for this function:

◆ _preloadData()

static ilObjCourseAccess::_preloadData (   $a_obj_ids,
  $a_ref_ids 
)
static

Preload data.

Parameters
array$a_obj_idsarray of object ids

Reimplemented from ilObjectAccess.

Definition at line 468 of file class.ilObjCourseAccess.php.

469 {
470 global $ilUser, $lng;
471
472 $lng->loadLanguageModule("crs");
473
474 include_once("./Modules/Course/classes/class.ilCourseWaitingList.php");
476
477 include_once "./Modules/Course/classes/class.ilCourseCertificateAdapter.php";
479 }
static _preloadListData($a_usr_ids, $a_obj_ids)
Get certificate/passed status for all given objects and users.
static _preloadOnListInfo($a_usr_ids, $a_obj_ids)
Preload on list info.

References $ilUser, $lng, ilCourseCertificateAdapter\_preloadListData(), and ilWaitingList\_preloadOnListInfo().

+ Here is the call graph for this function:

◆ _registrationEnabled()

static ilObjCourseAccess::_registrationEnabled (   $a_obj_id)
static
Returns
Parameters
object$a_obj_id

Definition at line 342 of file class.ilObjCourseAccess.php.

343 {
344 global $ilDB;
345
346 $query = "SELECT * FROM crs_settings " .
347 "WHERE obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " ";
348
349 $res = $ilDB->query($query);
350 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
351 $type = $row->sub_limitation_type;
352 $reg_start = $row->sub_start;
353 $reg_end = $row->sub_end;
354 }
355
356 switch ($type) {
358 return true;
359
361 return false;
362
364 if (time() > $reg_start and
365 time() < $reg_end) {
366 return true;
367 }
368 // no break
369 default:
370 return false;
371 }
372 return false;
373 }
const IL_CRS_SUBSCRIPTION_LIMITED
const IL_CRS_SUBSCRIPTION_UNLIMITED
const IL_CRS_SUBSCRIPTION_DEACTIVATED
$type

References $ilDB, $query, $res, $row, $type, ilDBConstants\FETCHMODE_OBJECT, IL_CRS_SUBSCRIPTION_DEACTIVATED, IL_CRS_SUBSCRIPTION_LIMITED, and IL_CRS_SUBSCRIPTION_UNLIMITED.

Referenced by ilObjCourse\_registrationEnabled().

+ Here is the caller graph for this function:

◆ _usingRegistrationCode()

static ilObjCourseAccess::_usingRegistrationCode ( )
static

Using Registration code.

Returns
bool

Definition at line 486 of file class.ilObjCourseAccess.php.

487 {
488 return self::$using_code;
489 }

References $using_code.

Referenced by ilObjCourse\register().

+ Here is the caller graph for this function:

◆ checkCondition()

static ilObjCourseAccess::checkCondition (   $a_obj_id,
  $a_operator,
  $a_value,
  $a_usr_id 
)
static

@global ilObjUser $ilUser

Parameters
type$a_obj_id
type$a_operator
type$a_value
type$a_usr_id
Returns
boolean

Implements ilConditionHandling.

Definition at line 43 of file class.ilObjCourseAccess.php.

44 {
45 include_once "./Modules/Course/classes/class.ilCourseParticipants.php";
46 include_once './Services/AccessControl/classes/class.ilConditionHandler.php';
47
48 switch ($a_operator) {
50 return ilCourseParticipants::_hasPassed($a_obj_id, $a_usr_id);
51 }
52 return false;
53 }
static _hasPassed($a_obj_id, $a_usr_id)
Check if user has passed course.

References ilParticipants\_hasPassed(), and ilConditionHandler\OPERATOR_PASSED.

+ Here is the call graph for this function:

◆ getConditionOperators()

static ilObjCourseAccess::getConditionOperators ( )
static

Get operators.

Implements ilConditionHandling.

Definition at line 26 of file class.ilObjCourseAccess.php.

27 {
28 include_once './Services/AccessControl/classes/class.ilConditionHandler.php';
29 return array(
31 );
32 }

References ilConditionHandler\OPERATOR_PASSED.

◆ lookupPeriodInfo()

static ilObjCourseAccess::lookupPeriodInfo (   $a_obj_id)
static

Lookup course period info.

Parameters
int$a_obj_id
Returns
array

Definition at line 497 of file class.ilObjCourseAccess.php.

498 {
499 global $ilDB, $lng;
500
501 $start = $end = null;
502
503 $query = 'SELECT crs_start, crs_end FROM crs_settings' .
504 ' WHERE obj_id = ' . $ilDB->quote($a_obj_id);
505 $set = $ilDB->query($query);
506 while ($row = $ilDB->fetchAssoc($set)) {
507 $start = $row['crs_start']
508 ? new ilDate($row['crs_start'], IL_CAL_UNIX)
509 : null;
510 $end = $row['crs_end']
511 ? new ilDate($row['crs_end'], IL_CAL_UNIX)
512 : null;
513 }
514
515 if ($start && $end) {
516 $lng->loadLanguageModule('crs');
517
518 return array(
519 'property' => $lng->txt('crs_period'),
520 'value' => ilDatePresentation::formatPeriod($start, $end)
521 );
522 }
523 }
const IL_CAL_UNIX
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
Class for single dates.
$end
Definition: saml1-acs.php:18

References $end, $ilDB, $lng, $query, $row, ilDatePresentation\formatPeriod(), and IL_CAL_UNIX.

Referenced by ilObjCourseListGUI\getProperties().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ lookupRegistrationInfo()

static ilObjCourseAccess::lookupRegistrationInfo (   $a_obj_id)
static

Lookup registration info @global ilDB $ilDB @global ilObjUser $ilUser @global ilLanguage $lng.

Parameters
int$a_obj_id
Returns
array

Definition at line 383 of file class.ilObjCourseAccess.php.

384 {
385 global $ilDB, $ilUser, $lng;
386
387 $query = 'SELECT sub_limitation_type, sub_start, sub_end, sub_mem_limit, sub_max_members FROM crs_settings ' .
388 'WHERE obj_id = ' . $ilDB->quote($a_obj_id);
389 $res = $ilDB->query($query);
390
391 $info = array();
392 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
393 $info['reg_info_start'] = new ilDateTime($row->sub_start, IL_CAL_UNIX);
394 $info['reg_info_end'] = new ilDateTime($row->sub_end, IL_CAL_UNIX);
395 $info['reg_info_type'] = $row->sub_limitation_type;
396 $info['reg_info_max_members'] = $row->sub_max_members;
397 $info['reg_info_mem_limit'] = $row->sub_mem_limit;
398 }
399
400 $registration_possible = true;
401
402 // Limited registration
403 if ($info['reg_info_type'] == ilCourseConstants::SUBSCRIPTION_LIMITED) {
404 $dt = new ilDateTime(time(), IL_CAL_UNIX);
405 if (ilDateTime::_before($dt, $info['reg_info_start'])) {
406 $info['reg_info_list_prop']['property'] = $lng->txt('crs_list_reg_start');
407 $info['reg_info_list_prop']['value'] = ilDatePresentation::formatDate($info['reg_info_start']);
408 } elseif (ilDateTime::_before($dt, $info['reg_info_end'])) {
409 $info['reg_info_list_prop']['property'] = $lng->txt('crs_list_reg_end');
410 $info['reg_info_list_prop']['value'] = ilDatePresentation::formatDate($info['reg_info_end']);
411 } else {
412 $registration_possible = false;
413 $info['reg_info_list_prop']['property'] = $lng->txt('crs_list_reg_period');
414 $info['reg_info_list_prop']['value'] = $lng->txt('crs_list_reg_noreg');
415 }
416 } elseif ($info['reg_info_type'] == ilCourseConstants::SUBSCRIPTION_UNLIMITED) {
417 $registration_possible = true;
418 } else {
419 $registration_possible = false;
420 $info['reg_info_list_prop']['property'] = $lng->txt('crs_list_reg');
421 $info['reg_info_list_prop']['value'] = $lng->txt('crs_list_reg_noreg');
422 }
423
424 if ($info['reg_info_mem_limit'] && $info['reg_info_max_members'] && $registration_possible) {
425 // Check for free places
426 include_once './Modules/Course/classes/class.ilCourseParticipant.php';
427 $part = ilCourseParticipant::_getInstanceByObjId($a_obj_id, $ilUser->getId());
428
429 include_once './Modules/Course/classes/class.ilCourseWaitingList.php';
430 $info['reg_info_list_size'] = ilCourseWaitingList::lookupListSize($a_obj_id);
431 if ($info['reg_info_list_size']) {
432 $info['reg_info_free_places'] = 0;
433 } else {
434 $info['reg_info_free_places'] = max(0, $info['reg_info_max_members'] - $part->getNumberOfMembers());
435 }
436
437 if ($info['reg_info_free_places']) {
438 $info['reg_info_list_prop_limit']['property'] = $lng->txt('crs_list_reg_limit_places');
439 $info['reg_info_list_prop_limit']['value'] = $info['reg_info_free_places'];
440 } else {
441 $info['reg_info_list_prop_limit']['property'] = '';
442 $info['reg_info_list_prop_limit']['value'] = $lng->txt('crs_list_reg_limit_full');
443 }
444 }
445
446 return $info;
447 }
@classDescription Date and time handling
static _before(ilDateTime $start, ilDateTime $end, $a_compare_field='', $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
static lookupListSize($a_obj_id)
Lookup waiting lit size.
$info
Definition: index.php:5

References $ilDB, $ilUser, $info, $lng, $query, $res, $row, ilDateTime\_before(), ilCourseParticipant\_getInstanceByObjId(), ilDBConstants\FETCHMODE_OBJECT, ilDatePresentation\formatDate(), IL_CAL_UNIX, ilWaitingList\lookupListSize(), ilCourseConstants\SUBSCRIPTION_LIMITED, and ilCourseConstants\SUBSCRIPTION_UNLIMITED.

Referenced by ilCourseRegistrationGUI\fillMaxMembers(), ilObjCourseListGUI\getProperties(), and ilObjCourseGUI\infoScreen().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $using_code

ilObjCourseAccess::$using_code = false
staticprotected

Definition at line 21 of file class.ilObjCourseAccess.php.

Referenced by _usingRegistrationCode().


The documentation for this class was generated from the following file: