3 require_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
4 require_once(
'./Modules/Bibliographic/classes/class.ilObjBibliographicAdminGUI.php');
50 $this->action =
'update';
52 $this->action =
'create';
65 $this->
setFormAction($this->ctrl->getFormAction($this->parent_gui));
70 $url =
new ilTextInputGUI($this->lng->txt(
"bibl_library_url"),
'url');
77 $show_in_list =
new ilCheckboxInputGUI($this->lng->txt(
"bibl_library_show_in_list"),
'show_in_list');
80 switch ($this->action) {
82 $this->
setTitle($this->lng->txt(
"bibl_settings_new"));
88 $this->
setTitle($this->lng->txt(
"bibl_settings_edit"));
97 'name' => $this->bibl_setting->getName(),
98 'url' => $this->bibl_setting->getUrl(),
99 'img' => $this->bibl_setting->getImg(),
100 'show_in_list' => $this->bibl_setting->getShowInList()
109 $this->bibl_setting->setName($this->
getInput(
"name"));
110 $this->bibl_setting->setUrl($this->
getInput(
"url"));
111 $this->bibl_setting->setImg($this->
getInput(
"img"));
112 $this->bibl_setting->setShowInList($this->
getInput(
"show_in_list"));
113 switch ($this->action) {
115 $this->bibl_setting->create();
118 $this->bibl_setting->update();
This class represents a text property in a property form.