3 require_once(
"./Services/Table/classes/class.ilTable2GUI.php");
4 require_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
35 parent::__construct($parent_gui,
$cmd);
36 $this->gui = $parent_gui;
37 $this->
setTitle($lng->txt(
'bibl_settings_libraries'));
38 $this->
setId(
'bibl_libraries_tbl');
39 $this->
addColumn($lng->txt(
'bibl_library_name'),
'',
'30%');
40 $this->
addColumn($lng->txt(
'bibl_library_url'),
'' .
'30%');
41 $this->
addColumn($lng->txt(
'bibl_library_img'),
'',
'30%');
42 $this->
addColumn($lng->txt(
'actions'),
'',
'8%');
45 $this->
setRowTemplate(
'tpl.bibl_settings_lib_list_row.html',
'Modules/Bibliographic');
58 $this->tpl->setVariable(
'VAL_LIBRARY_NAME', $a_set[
'name']);
59 $this->tpl->setVariable(
'VAL_LIBRARY_URL', $a_set[
'url']);
60 $this->tpl->setVariable(
'VAL_LIBRARY_IMG', $a_set[
'img']);
62 $current_selection_list->setListTitle($this->lng->txt(
"actions"));
63 $current_selection_list->setId($a_set[
'id']);
64 $current_selection_list->addItem($this->lng->txt(
"edit"),
"", $ilCtrl->getLinkTarget($this->gui,
'edit') .
"&lib_id=" . $a_set[
'id']);
65 $current_selection_list->addItem($this->lng->txt(
"delete"),
"", $ilCtrl->getLinkTarget($this->gui,
'delete') .
"&lib_id=" . $a_set[
'id']);
66 $this->tpl->setVariable(
'VAL_ACTIONS', $current_selection_list->getHTML());
setEnableNumInfo($a_val)
Set enable num info.
__construct(ilObjBibliographicAdminLibrariesGUI $parent_gui, $cmd)
Constructor.
Bibliographic ilObjBibliographicAdminTableGUI.
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.
Bibliographic Administration Settings.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
User interface class for advanced drop-down selection lists.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
fillRow($a_set)
Fills table rows with content from $a_set.