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/AccessControl/interfaces/interface.ilConditionHandling.php';
28 include_once
'./Services/AccessControl/classes/class.ilConditionHandler.php';
43 public static function checkCondition($a_obj_id, $a_operator, $a_value, $a_usr_id)
45 include_once
"./Modules/Course/classes/class.ilCourseParticipants.php";
46 include_once
'./Services/AccessControl/classes/class.ilConditionHandler.php';
48 switch ($a_operator) {
67 public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id =
"")
69 global
$ilUser,
$lng, $rbacsystem, $ilAccess, $ilias;
71 if ($a_user_id ==
"") {
72 $a_user_id = $ilUser->getId();
75 if ($ilUser->getId() == $a_user_id) {
84 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
93 if ($a_permission ==
'leave') {
94 include_once
'./Modules/Course/classes/class.ilObjCourse.php';
97 $ilAccess->addInfoItem(
104 include_once
'./Modules/Course/classes/class.ilCourseParticipants.php';
105 if (!$participants->isAssigned($a_user_id)) {
110 if ($a_permission ==
'join') {
111 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
121 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
128 switch ($a_permission) {
131 $active = self::_isActivated($a_obj_id, $visible);
132 $tutor = $rbacsystem->checkAccessOfUser($a_user_id,
'write', $a_ref_id);
136 if (!$tutor and !$active && !$visible) {
142 $tutor = $rbacsystem->checkAccessOfUser($a_user_id,
'write', $a_ref_id);
146 $active = self::_isActivated($a_obj_id);
151 if ($participants->isBlocked($a_user_id) and $participants->isAssigned($a_user_id)) {
158 if (!self::_registrationEnabled($a_obj_id)) {
162 if ($participants->isAssigned($a_user_id)) {
168 include_once
'./Modules/Course/classes/class.ilObjCourse.php';
189 $commands[] =
array(
"permission" =>
"crs_linked",
"cmd" =>
"",
"lang_var" =>
"view",
"default" =>
true);
191 include_once
'./Services/WebServices/FileManager/classes/class.ilFMSettings.php';
194 'permission' =>
'read',
195 'cmd' =>
'fileManagerLaunch',
196 'lang_var' =>
'fm_start',
197 'enable_anonymous' =>
false 201 $commands[] =
array(
"permission" =>
"join",
"cmd" =>
"join",
"lang_var" =>
"join");
204 $commands[] =
array(
'permission' =>
"join",
"cmd" =>
"leave",
"lang_var" =>
"leave_waiting_list");
207 $commands[] =
array(
'permission' =>
"leave",
"cmd" =>
"leave",
"lang_var" =>
"crs_unsubscribe");
209 include_once(
'Services/WebDAV/classes/class.ilDAVActivationChecker.php');
211 include_once
'./Services/WebDAV/classes/class.ilDAVUtils.php';
213 $commands[] =
array(
'permission' =>
'read',
'cmd' =>
'showPasswordInstruction',
'lang_var' =>
'mount_webfolder',
'enable_anonymous' =>
'false');
215 $commands[] =
array(
"permission" =>
"read",
"cmd" =>
"mount_webfolder",
"lang_var" =>
"mount_webfolder",
"enable_anonymous" =>
"false");
219 $commands[] =
array(
"permission" =>
"write",
"cmd" =>
"enableAdministrationPanel",
"lang_var" =>
"edit_content");
220 $commands[] =
array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"settings");
231 $t_arr = explode(
"_", $a_target);
234 if (substr($t_arr[2], 0, 5) ==
'rcode' and $ilUser->getId() != ANONYMOUS_USER_ID) {
235 self::$using_code =
true;
240 if ($t_arr[0] !=
"crs" || ((
int) $t_arr[1]) <= 0) {
246 if ($ilAccess->checkAccess(
"read",
"", $t_arr[1]) ||
247 $ilAccess->checkAccess(
"visible",
"", $t_arr[1])) {
264 $query =
"SELECT view_mode FROM crs_settings WHERE obj_id = " . $ilDB->quote($a_id,
'integer') .
" ";
267 return $row->view_mode;
282 $query =
"SELECT * FROM crs_settings " .
283 "WHERE obj_id = " . $ilDB->quote($a_obj_id,
'integer') .
" ";
286 return (
bool)
$row->activation_type;
298 public static function _isActivated($a_obj_id, &$a_visible_flag = null, $a_mind_member_view =
true)
301 if ($a_mind_member_view) {
302 include_once
'./Services/Container/classes/class.ilMemberViewSettings.php';
304 $a_visible_flag =
true;
310 if (!self::_isOnline($a_obj_id)) {
311 $a_visible_flag =
false;
316 $ref_id = array_pop($ref_id);
318 $a_visible_flag =
true;
320 include_once
'./Services/Object/classes/class.ilObjectActivation.php';
322 switch ($item[
'timing_type']) {
324 if (
time() < $item[
'timing_start'] or
325 time() > $item[
'timing_end']) {
326 $a_visible_flag = $item[
'visible'];
346 $query =
"SELECT * FROM crs_settings " .
347 "WHERE obj_id = " . $ilDB->quote($a_obj_id,
'integer') .
" ";
352 $reg_start =
$row->sub_start;
353 $reg_end =
$row->sub_end;
364 if (
time() > $reg_start and
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);
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;
400 $registration_possible =
true;
406 $info[
'reg_info_list_prop'][
'property'] = $lng->txt(
'crs_list_reg_start');
409 $info[
'reg_info_list_prop'][
'property'] = $lng->txt(
'crs_list_reg_end');
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');
417 $registration_possible =
true;
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');
424 if (
$info[
'reg_info_mem_limit'] &&
$info[
'reg_info_max_members'] && $registration_possible) {
426 include_once
'./Modules/Course/classes/class.ilCourseParticipant.php';
429 include_once
'./Modules/Course/classes/class.ilCourseWaitingList.php';
431 if (
$info[
'reg_info_list_size']) {
432 $info[
'reg_info_free_places'] = 0;
434 $info[
'reg_info_free_places'] = max(0,
$info[
'reg_info_max_members'] - $part->getNumberOfMembers());
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'];
441 $info[
'reg_info_list_prop_limit'][
'property'] =
'';
442 $info[
'reg_info_list_prop_limit'][
'value'] = $lng->txt(
'crs_list_reg_limit_full');
460 return !self::_isActivated($a_obj_id, $dummy,
false);
472 $lng->loadLanguageModule(
"crs");
474 include_once(
"./Modules/Course/classes/class.ilCourseWaitingList.php");
477 include_once
"./Modules/Course/classes/class.ilCourseCertificateAdapter.php";
488 return self::$using_code;
501 $start =
$end = null;
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']
515 if ($start &&
$end) {
516 $lng->loadLanguageModule(
'crs');
519 '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
_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 formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date public.
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 _usingRegistrationCode()
Using Registration code.
static _getAllReferences($a_id)
get all reference ids of object
static _preloadListData($a_usr_ids, $a_obj_ids)
Get certificate/passed status for all given objects and users.
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.
Create styles array
The data for the language used.
static mayLeave($a_course_id, $a_user_id=null, &$a_date=null)
static getInstance()
Get singleton instance.
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 instance.
static _isOnline($a_obj_id)
Check if online setting is active.
Add data(end) time
Method that wraps PHPs time in order to allow simulations with the workflow.
static _isActivated($a_obj_id, &$a_visible_flag=null, $a_mind_member_view=true)
Is activated?
static getInstance()
Get singleton instance.
const IL_CRS_SUBSCRIPTION_DEACTIVATED
static _lookupViewMode($a_id)
Lookup view mode.
static _getCommands()
get commands