3require_once(
"./Services/Table/classes/class.ilTable2GUI.php");
 
    4require_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());
 
User interface class for advanced drop-down selection lists.
Bibliographic Administration Settings.
Bibliographic ilObjBibliographicAdminTableGUI.
__construct(ilObjBibliographicAdminLibrariesGUI $parent_gui, $cmd)
Constructor.
fillRow($a_set)
Fills table rows with content from $a_set.
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.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setEnableNumInfo($a_val)
Set enable num info.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.