4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
25 public function __construct($a_parent_obj, $a_parent_cmd, $a_contributor_role_id, array $a_contributor_ids = null)
29 $this->contributor_role_id = $a_contributor_role_id;
30 $this->contributor_ids = $a_contributor_ids;
32 parent::__construct($a_parent_obj, $a_parent_cmd);
35 $this->
addColumn($this->lng->txt(
"name"),
"name");
40 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
42 if($this->contributor_ids)
44 $this->
setTitle($this->lng->txt(
"blog_contributor_container_add"));
45 $this->
addMultiCommand(
"addContributorContainerAction", $this->lng->txt(
"add"));
49 $this->
setTitle($this->lng->txt(
"blog_contributors"));
50 $this->
addMultiCommand(
"confirmRemoveContributor", $this->lng->txt(
"remove"));
63 if($this->contributor_ids)
65 $assigned =$rbacreview->assignedUsers($this->contributor_role_id);
70 $this->contributor_ids = $rbacreview->assignedUsers($this->contributor_role_id);
73 include_once
"Services/User/classes/class.ilUserUtil.php";
76 foreach($this->contributor_ids as $id)
78 if(!in_array($id, $assigned))
80 $data[] = array(
"id" => $id,
95 $this->tpl->setVariable(
"VAL_ID", $a_set[
"id"]);
96 $this->tpl->setVariable(
"TXT_NAME", $a_set[
"name"]);
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
__construct($a_parent_obj, $a_parent_cmd, $a_contributor_role_id, array $a_contributor_ids=null)
Constructor.
getItems()
Get all completed tests.
fillRow($a_set)
Fill template row.
static getNamePresentation($a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true)
Default behaviour is:
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
List all contributors members of a blog.