4 include_once(
'Services/Table/classes/class.ilTable2GUI.php');
5 include_once
'./Services/OpenId/classes/class.ilOpenIdProviders.php';
28 parent::__construct($a_parent_class,$a_parent_cmd);
30 $this->
setTitle($this->lng->txt(
'auth_openid_provider_tbl'));
33 $this->
addColumn($this->lng->txt(
'title'),
'title',
"50%");
34 $this->
addColumn($this->lng->txt(
'url'),
'url',
"40%");
37 $this->
setFormAction($this->ctrl->getFormAction($a_parent_class));
38 $this->
setRowTemplate(
"tpl.openid_provider_row.html",
"Services/OpenId");
43 $this->
addCommandButton(
'addProvider', $this->lng->txt(
'auth_openid_provider_add'));
54 $this->tpl->setVariable(
'VAL_ID',$set[
'provider_id']);
55 $this->tpl->setVariable(
'VAL_TITLE',$set[
'title']);
56 $this->tpl->setVariable(
'VAL_URL',$set[
'url']);
57 $this->tpl->setVariable(
'TXT_EDIT',$this->lng->txt(
'edit'));
58 $this->ctrl->setParameter($this->
getParentObject(),
'provider_id',$set[
'provider_id']);
59 $this->tpl->setVariable(
'EDIT_LINK',$this->ctrl->getLinkTarget($this->getParentObject(),
'editProvider'));
72 for($i = 0; $i < count($providers); $i++)
74 $data[$i][
'provider_id'] = $providers[$i]->getId();
75 $data[$i][
'title'] = $providers[$i]->getName();
76 $data[$i][
'url'] = $providers[$i]->getURL();
__construct($a_parent_class, $a_parent_cmd)
Constructor.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
getParentObject()
Get parent object.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
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.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="")
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static getInstance()
Get singleton instance.
setFormAction($a_form_action)
Set Form action parameter.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.