24include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
 
   64                $this->lng->loadLanguageModule(
'crs');
 
   67                $this->container = $a_parent_obj;
 
   70                include_once(
'./Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
 
   75                parent::__construct($a_parent_obj,
'editMembers');
 
   77                $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
 
   79                $this->
addColumn($this->lng->txt(
'name'),
'name',
'20%');
 
   80                $this->
addColumn($this->lng->txt(
'login'),
'login',
'25%');
 
   82                if($this->privacy->enabledCourseAccessTimes())
 
   84                        $this->
addColumn($this->lng->txt(
'last_access'),
'access_time');
 
   86                $this->
addColumn($this->lng->txt(
'crs_passed'),
'passed');
 
   87                $this->
addColumn($this->lng->txt(
'crs_blocked'),
'blocked');
 
   89                $this->
addColumn($this->lng->txt(
'crs_mem_contact'),
'contact');
 
   91                $this->
addColumn($this->lng->txt(
'crs_notification'),
'notification');
 
   92                $this->
addColumn($this->lng->txt(
'objs_role'),
'roles');
 
   97                $this->
setRowTemplate(
"tpl.edit_participants_row.html",
"Modules/Course");
 
  106                $this->localCourseRoles = array();
 
  107                foreach($this->rep_object->getLocalCourseRoles(
false) as 
$title => $role_id)
 
  121                global $rbacsystem, $ilAccess, 
$ilUser;
 
  122                $hasEditPermissionAccess = 
 
  124                                $ilAccess->checkAccess(
'edit_permission', 
'',$this->rep_object->getRefId()) or
 
  125                                $this->participants->isAdmin(
$ilUser->getId())
 
  128                $this->tpl->setVariable(
'VAL_ID',$a_set[
'usr_id']);
 
  129                $this->tpl->setVariable(
'VAL_NAME',$a_set[
'lastname'].
', '.$a_set[
'firstname']);
 
  131                $this->tpl->setVariable(
'VAL_LOGIN',$a_set[
'login']);
 
  133                if($this->privacy->enabledCourseAccessTimes())
 
  135                        $this->tpl->setVariable(
'VAL_ACCESS',$a_set[
'access_time']);
 
  138                $this->tpl->setVariable(
'VAL_CONTACT_CHECKED',$a_set[
'contact'] ? 
'checked="checked"' : 
'');
 
  141                $this->tpl->setVariable(
'VAL_NOTIFICATION_CHECKED',$a_set[
'notification'] ? 
'checked="checked"' : 
'');
 
  142                $this->tpl->setVariable(
'VAL_PASSED_CHECKED',$a_set[
'passed'] ? 
'checked="checked"' : 
'');
 
  143                $this->tpl->setVariable(
'VAL_BLOCKED_CHECKED',$a_set[
'blocked'] ? 
'checked="checked"' : 
'');
 
  145                $this->tpl->setVariable(
'NUM_ROLES',count($this->participants->getRoles()));
 
  147                $assigned = $this->participants->getAssignedRoles($a_set[
'usr_id']);
 
  148                foreach($this->localCourseRoles as $localizedTitle => $roleData)
 
  150                        if ($hasEditPermissionAccess || substr($roleData[
'title'], 0, 12) != 
'il_crs_admin') 
 
  152                                $this->tpl->setCurrentBlock(
'roles');
 
  153                                $this->tpl->setVariable(
'ROLE_ID',$roleData[
'role_id']);
 
  154                                $this->tpl->setVariable(
'ROLE_NAME',$localizedTitle);
 
  156                                if(in_array($roleData[
'role_id'],$assigned))
 
  158                                        $this->tpl->setVariable(
'ROLE_CHECKED',
'selected="selected"');
 
  160                                $this->tpl->parseCurrentBlock();
 
An exception for terminatinating execution or to throw for unit testing.
__construct($a_parent_obj, $rep_object)
Constructor.
$localCourseRoles
Holds the local roles of the course object.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static _getTranslation($a_role_title)
static _getInstance()
Get instance of ilPrivacySettings.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormName($a_formname="")
Set Form name.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
disable($a_module_name)
diesables particular modules of table
enable($a_module_name)
enables particular modules of table