ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjPortfolioAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 include_once("./Services/Object/classes/class.ilObjectGUI.php");
4 
17 {
23  public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
24  {
25  $this->type = "prfa";
26  parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
27 
28  $this->lng->loadLanguageModule("prtf");
29  }
30 
37  public function executeCommand()
38  {
39  $next_class = $this->ctrl->getNextClass($this);
40  $cmd = $this->ctrl->getCmd();
41 
42  $this->prepareOutput();
43 
44 /* if(!$ilAccess->checkAccess('read','',$this->object->getRefId()))
45  {
46  $ilErr->raiseError($this->lng->txt('no_permission'),$ilErr->WARNING);
47  }
48 */
49  switch($next_class)
50  {
51  case 'ilpermissiongui':
52  $this->tabs_gui->setTabActive('perm_settings');
53  include_once("Services/AccessControl/classes/class.ilPermissionGUI.php");
54  $perm_gui = new ilPermissionGUI($this);
55  $this->ctrl->forwardCommand($perm_gui);
56  break;
57 
58  default:
59  if(!$cmd || $cmd == 'view')
60  {
61  $cmd = "editSettings";
62  }
63 
64  $this->$cmd();
65  break;
66  }
67  return true;
68  }
69 
76  public function getAdminTabs()
77  {
78  global $rbacsystem;
79 
80  if ($rbacsystem->checkAccess("visible,read",$this->object->getRefId()))
81  {
82  $this->tabs_gui->addTarget("settings",
83  $this->ctrl->getLinkTarget($this, "editSettings"),
84  array("editSettings", "view"));
85  }
86 
87  if ($rbacsystem->checkAccess('edit_permission',$this->object->getRefId()))
88  {
89  $this->tabs_gui->addTarget("perm_settings",
90  $this->ctrl->getLinkTargetByClass('ilpermissiongui',"perm"),
91  array(),'ilpermissiongui');
92  }
93  }
94 
95 
99  public function editSettings($a_form = null)
100  {
101  global $lng, $ilSetting;
102 
103  $this->tabs_gui->setTabActive('settings');
104 
105  /*
106  if ($ilSetting->get('user_portfolios'))
107  {
108  ilUtil::sendInfo($lng->txt("prtf_admin_toggle_info"));
109  }
110  else
111  {
112  ilUtil::sendInfo($lng->txt("prtf_admin_inactive_info"));
113  }
114  */
115 
116  if(!$a_form)
117  {
118  $a_form = $this->initFormSettings();
119  }
120  $this->tpl->setContent($a_form->getHTML());
121  return true;
122  }
123 
127  public function saveSettings()
128  {
129  global $ilCtrl, $ilSetting;
130 
131  $this->checkPermission("write");
132 
133  $form = $this->initFormSettings();
134  if($form->checkInput())
135  {
136  $ilSetting->set('user_portfolios', (int)$form->getInput("prtf"));
137 
138  $banner = (bool)$form->getInput("banner");
139 
140  $prfa_set = new ilSetting("prfa");
141  $prfa_set->set("banner", $banner);
142  $prfa_set->set("banner_width", (int)$form->getInput("width"));
143  $prfa_set->set("banner_height", (int)$form->getInput("height"));
144  $prfa_set->set("mask", (bool)$form->getInput("mask"));
145 
146  ilUtil::sendSuccess($this->lng->txt("settings_saved"),true);
147  $ilCtrl->redirect($this, "editSettings");
148  }
149 
150  $form->setValuesByPost();
151  $this->editSettings($form);
152  }
153 
157  public function cancel()
158  {
159  global $ilCtrl;
160 
161  $ilCtrl->redirect($this, "view");
162  }
163 
169  protected function initFormSettings()
170  {
171  global $lng, $ilSetting;
172 
173  include_once('Services/Form/classes/class.ilPropertyFormGUI.php');
174  $form = new ilPropertyFormGUI();
175  $form->setFormAction($this->ctrl->getFormAction($this));
176  $form->setTitle($this->lng->txt('prtf_settings'));
177  $form->addCommandButton('saveSettings',$this->lng->txt('save'));
178  $form->addCommandButton('cancel',$this->lng->txt('cancel'));
179 
180  // Enable 'Portfolios'
181  $lng->loadLanguageModule('pd');
182  $lng->loadLanguageModule('user');
183  $prtf_prop = new ilCheckboxInputGUI($lng->txt('pd_enable_prtf'), 'prtf');
184  $prtf_prop->setValue('1');
185  $prtf_prop->setInfo($lng->txt('user_portfolios_desc'));
186  $prtf_prop->setChecked(($ilSetting->get('user_portfolios') ? '1' : '0'));
187  $form->addItem($prtf_prop);
188 
189  $banner = new ilCheckboxInputGUI($lng->txt("prtf_preview_banner"), "banner");
190  $banner->setInfo($lng->txt("prtf_preview_banner_info"));
191  $form->addItem($banner);
192 
193  $width = new ilNumberInputGUI($lng->txt("prtf_preview_banner_width"), "width");
194  $width->setRequired(true);
195  $width->setSize(4);
196  $banner->addSubItem($width);
197 
198  $height = new ilNumberInputGUI($lng->txt("prtf_preview_banner_height"), "height");
199  $height->setRequired(true);
200  $height->setSize(4);
201  $banner->addSubItem($height);
202 
203  $prfa_set = new ilSetting("prfa");
204  $banner->setChecked($prfa_set->get("banner", false));
205  if($prfa_set->get("banner"))
206  {
207  $width->setValue($prfa_set->get("banner_width"));
208  $height->setValue($prfa_set->get("banner_height"));
209  }
210  else
211  {
212  $width->setValue(880);
213  $height->setValue(100);
214  }
215 
216  $mask = new ilCheckboxInputGUI($lng->txt("prtf_allow_html"), "mask");
217  $mask->setInfo($lng->txt("prtf_allow_html_info"));
218  $mask->setChecked($prfa_set->get("mask", false));
219  $form->addItem($mask);
220 
221  return $form;
222  }
223 
224  public function addToExternalSettingsForm($a_form_id)
225  {
226  global $ilSetting;
227 
228  switch($a_form_id)
229  {
231 
232  $fields = array('pd_enable_prtf' => array($ilSetting->get('user_portfolios'), ilAdministrationSettingsFormHandler::VALUE_BOOL));
233 
234  return array(array("editSettings", $fields));
235  }
236  }
237 }
238 
239 ?>
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
ILIAS Setting Class.
This class represents a property form user interface.
$cmd
Definition: sahs_server.php:35
This class represents a checkbox property in a property form.
global $ilCtrl
Definition: ilias.php:18
setInfo($a_info)
Set Information Text.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
This class represents a number property in a property form.
Class ilObjectGUI Basic methods of all Output classes.
setValue($a_value)
Set Value.
prepareOutput()
prepare output
global $ilSetting
Definition: privfeed.php:40
checkPermission($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission and redirect on error.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
setRequired($a_required)
Set Required.