5 include_once(
"./Services/Object/classes/class.ilObjectAccess.php");
6 include_once
'./Modules/Course/classes/class.ilCourseConstants.php';
7 include_once
'Modules/Course/classes/class.ilCourseParticipants.php';
8 include_once
'Modules/Course/classes/class.ilCourseParticipant.php';
9 include_once
'./Services/Conditions/interfaces/interface.ilConditionHandling.php';
33 include_once
'./Services/Conditions/classes/class.ilConditionHandler.php';
48 public static function checkCondition($a_obj_id, $a_operator, $a_value, $a_usr_id)
50 include_once
"./Modules/Course/classes/class.ilCourseParticipants.php";
51 include_once
'./Services/Conditions/classes/class.ilConditionHandler.php';
53 switch ($a_operator) {
72 public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id =
"")
78 $rbacsystem = $DIC[
'rbacsystem'];
79 $ilAccess = $DIC[
'ilAccess'];
80 $ilias = $DIC[
'ilias'];
82 if ($a_user_id ==
"") {
86 if (
$ilUser->getId() == $a_user_id) {
95 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
104 if ($a_permission ==
'leave') {
105 include_once
'./Modules/Course/classes/class.ilObjCourse.php';
108 $ilAccess->addInfoItem(
115 include_once
'./Modules/Course/classes/class.ilCourseParticipants.php';
116 if (!$participants->isAssigned($a_user_id)) {
121 if ($a_permission ==
'join') {
122 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
132 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
139 switch ($a_permission) {
142 $active = self::_isActivated($a_obj_id, $visible);
143 $tutor = $rbacsystem->checkAccessOfUser($a_user_id,
'write', $a_ref_id);
147 if (!$tutor && !$active && !$visible) {
153 $tutor = $rbacsystem->checkAccessOfUser($a_user_id,
'write', $a_ref_id);
157 $active = self::_isActivated($a_obj_id);
162 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
169 if (!self::_registrationEnabled($a_obj_id)) {
173 if ($participants->isAssigned($a_user_id)) {
179 include_once
'./Modules/Course/classes/class.ilObjCourse.php';
200 $commands[] = array(
"permission" =>
"crs_linked",
"cmd" =>
"",
"lang_var" =>
"view",
"default" =>
true);
202 $commands[] = array(
"permission" =>
"join",
"cmd" =>
"join",
"lang_var" =>
"join");
205 $commands[] = array(
'permission' =>
"join",
"cmd" =>
"leave",
"lang_var" =>
"leave_waiting_list");
208 $commands[] = array(
'permission' =>
"leave",
"cmd" =>
"leave",
"lang_var" =>
"crs_unsubscribe");
210 include_once(
'Services/WebDAV/classes/class.ilDAVActivationChecker.php');
212 include_once
'./Services/WebDAV/classes/class.ilWebDAVUtil.php';
214 $commands[] = array(
'permission' =>
'read',
'cmd' =>
'showPasswordInstruction',
'lang_var' =>
'mount_webfolder',
'enable_anonymous' =>
'false');
216 $commands[] = array(
"permission" =>
"read",
"cmd" =>
"mount_webfolder",
"lang_var" =>
"mount_webfolder",
"enable_anonymous" =>
"false");
220 $commands[] = array(
"permission" =>
"write",
"cmd" =>
"enableAdministrationPanel",
"lang_var" =>
"edit_content");
221 $commands[] = array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"settings");
232 $ilAccess = $DIC[
'ilAccess'];
235 $t_arr = explode(
"_", $a_target);
239 self::$using_code =
true;
244 if ($t_arr[0] !=
"crs" || ((
int) $t_arr[1]) <= 0) {
250 if ($ilAccess->checkAccess(
"read",
"", $t_arr[1]) ||
251 $ilAccess->checkAccess(
"visible",
"", $t_arr[1])) {
268 $ilDB = $DIC[
'ilDB'];
270 $query =
"SELECT view_mode FROM crs_settings WHERE obj_id = " .
$ilDB->quote($a_id,
'integer') .
" ";
273 return $row->view_mode;
287 public static function _isActivated($a_obj_id, &$a_visible_flag = null, $a_mind_member_view =
true)
290 if ($a_mind_member_view) {
291 include_once
'./Services/Container/classes/class.ilMemberViewSettings.php';
293 $a_visible_flag =
true;
299 $ref_id = array_pop($ref_id);
301 $a_visible_flag =
true;
303 include_once
'./Services/Object/classes/class.ilObjectActivation.php';
305 switch ($item[
'timing_type']) {
307 if (time() < $item[
'timing_start'] or
308 time() > $item[
'timing_end']) {
309 $a_visible_flag = $item[
'visible'];
329 $ilDB = $DIC[
'ilDB'];
331 $query =
"SELECT * FROM crs_settings " .
332 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" ";
336 $type = $row->sub_limitation_type;
337 $reg_start = $row->sub_start;
338 $reg_end = $row->sub_end;
349 if (time() > $reg_start and
372 $ilDB = $DIC[
'ilDB'];
376 $query =
'SELECT sub_limitation_type, sub_start, sub_end, sub_mem_limit, sub_max_members FROM crs_settings ' .
377 'WHERE obj_id = ' .
$ilDB->quote($a_obj_id);
384 $info[
'reg_info_type'] = $row->sub_limitation_type;
385 $info[
'reg_info_max_members'] = $row->sub_max_members;
386 $info[
'reg_info_mem_limit'] = $row->sub_mem_limit;
389 $registration_possible =
true;
395 $info[
'reg_info_list_prop'][
'property'] =
$lng->txt(
'crs_list_reg_start');
398 $info[
'reg_info_list_prop'][
'property'] =
$lng->txt(
'crs_list_reg_end');
401 $registration_possible =
false;
402 $info[
'reg_info_list_prop'][
'property'] =
$lng->txt(
'crs_list_reg_period');
403 $info[
'reg_info_list_prop'][
'value'] =
$lng->txt(
'crs_list_reg_noreg');
406 $registration_possible =
true;
408 $registration_possible =
false;
409 $info[
'reg_info_list_prop'][
'property'] =
$lng->txt(
'crs_list_reg');
410 $info[
'reg_info_list_prop'][
'value'] =
$lng->txt(
'crs_list_reg_noreg');
413 if ($info[
'reg_info_mem_limit'] && $info[
'reg_info_max_members'] && $registration_possible) {
415 include_once
'./Modules/Course/classes/class.ilCourseParticipant.php';
418 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
420 if ($info[
'reg_info_list_size']) {
421 $info[
'reg_info_free_places'] = 0;
423 $info[
'reg_info_free_places'] = max(0, $info[
'reg_info_max_members'] - $part->getNumberOfMembers());
426 if ($info[
'reg_info_free_places']) {
427 $info[
'reg_info_list_prop_limit'][
'property'] =
$lng->txt(
'crs_list_reg_limit_places');
428 $info[
'reg_info_list_prop_limit'][
'value'] = $info[
'reg_info_free_places'];
430 $info[
'reg_info_list_prop_limit'][
'property'] =
'';
431 $info[
'reg_info_list_prop_limit'][
'value'] =
$lng->txt(
'crs_list_reg_limit_full');
449 return !self::_isActivated($a_obj_id, $dummy,
false);
464 $lng->loadLanguageModule(
"crs");
470 $coursePreload->preLoad(
$ilUser->getId(), $a_obj_ids);
473 self::$booking_repo =
$f->getRepoWithContextObjCache($a_obj_ids);
482 return self::$booking_repo;
493 return self::$using_code;
506 $ilDB = $DIC[
'ilDB'];
509 $start = $end = null;
510 $query =
'SELECT period_start, period_end, period_time_indication FROM crs_settings ' .
511 'WHERE obj_id = ' .
$ilDB->quote($a_obj_id);
515 if (!$row->period_time_indication) {
516 $start = ($row->period_start
519 $end = ($row->period_end
523 $start = ($row->period_start
526 $end = ($row->period_end
531 if ($start && $end) {
532 $lng->loadLanguageModule(
'crs');
536 'crs_start' => $start,
538 'property' =>
$lng->txt(
'crs_period'),
static lookupPeriodInfo($a_obj_id)
Lookup course period info.
static getConditionOperators()
Get operators.
static checkCondition($a_obj_id, $a_operator, $a_value, $a_usr_id)
ilObjUser $ilUser
static _preloadData($a_obj_ids, $a_ref_ids)
Preload data.
const IL_CRS_SUBSCRIPTION_LIMITED
const SUBSCRIPTION_LIMITED
static getBookingInfoRepo()
Get booking info repo.
_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::checkAcce...
const IL_NO_OBJECT_ACCESS
static _registrationEnabled($a_obj_id)
static _preloadOnListInfo($a_usr_ids, $a_obj_ids)
Preload on list info.
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 getItem($a_ref_id)
Get item data.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
Interface for condition handling.
static _checkGoto($a_target)
check whether goto script will succeed
static _isActive()
Static getter.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _usingRegistrationCode()
Using Registration code.
static _getAllReferences($a_id)
get all reference ids of object
foreach($_POST as $key=> $value) $res
static _isOffline($a_obj_id)
Type-specific implementation of general status.
const IL_CRS_SUBSCRIPTION_UNLIMITED
static lookupRegistrationInfo($a_obj_id)
Lookup registration info ilDB $ilDB ilObjUser $ilUser ilLanguage $lng.
static _hasPassed($a_obj_id, $a_usr_id)
Check if user has passed course.
const SUBSCRIPTION_UNLIMITED
static _getInstanceByObjId($a_obj_id, $a_usr_id)
Get singleton instance.
static _isOnList($a_usr_id, $a_obj_id)
Check if a user on the waiting list.
static mayLeave($a_course_id, $a_user_id=null, &$a_date=null)
Factory for reservation repo.
static lookupListSize($a_obj_id)
Lookup waiting lit size.
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
static getInstance()
Get singleton instance.
static _isActivated($a_obj_id, &$a_visible_flag=null, $a_mind_member_view=true)
Is activated?
const IL_CRS_SUBSCRIPTION_DEACTIVATED
static _lookupViewMode($a_id)
Lookup view mode.
static _getCommands()
get commands