35 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
39 $this->rbacsystem = $DIC->rbac()->system();
40 $this->lng = $DIC->language();
42 $this->ctrl = $DIC->ctrl();
43 $this->access = $DIC->access();
45 $this->
ui = $DIC->ui();
46 $this->request = $DIC->http()->request();
51 $this->lng->loadLanguageModule(
"prtf");
62 $next_class = $this->ctrl->getNextClass($this);
63 $cmd = $this->ctrl->getCmd();
67 switch ($next_class) {
68 case 'ilpermissiongui':
69 $this->tabs_gui->activateTab(
'perm_settings');
71 $this->ctrl->forwardCommand($perm_gui);
75 if (!$cmd || $cmd ==
'view') {
76 $cmd =
"editSettings";
100 $lng->txt(
"settings"),
101 $this->ctrl->getLinkTarget($this,
"editSettings")
105 $lng->txt(
"prtf_decl_authorship"),
106 $this->ctrl->getLinkTarget($this,
"editDeclarationOfAuthorship")
113 $lng->txt(
"perm_settings"),
114 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
128 $this->tabs_gui->activateTab(
'settings');
144 $this->tpl->setContent($a_form->getHTML());
159 if ($form->checkInput()) {
160 $ilSetting->set(
'user_portfolios', (
int) $form->getInput(
"prtf"));
162 $banner = (bool) $form->getInput(
"banner");
165 $prfa_set->set(
"banner", $banner);
166 $prfa_set->set(
"banner_width", (
int) $form->getInput(
"width"));
167 $prfa_set->set(
"banner_height", (
int) $form->getInput(
"height"));
168 $prfa_set->set(
"mask", (
bool) $form->getInput(
"mask"));
169 $prfa_set->set(
"mycrs", (
bool) $form->getInput(
"mycrs"));
171 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
172 $ilCtrl->redirect($this,
"editSettings");
176 $form->setValuesByPost();
187 $ilCtrl->redirect($this,
"view");
196 return $this->rbacsystem->checkAccess(
"write", $this->object->getRefId());
205 return $this->rbacsystem->checkAccess(
"read", $this->object->getRefId());
219 $form->setFormAction($this->ctrl->getFormAction($this));
220 $form->setTitle($this->lng->txt(
'prtf_settings'));
223 $form->addCommandButton(
'saveSettings', $this->lng->txt(
'save'));
224 $form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
228 $lng->loadLanguageModule(
'pd');
229 $lng->loadLanguageModule(
'user');
232 $prtf_prop->setInfo(
$lng->txt(
'user_portfolios_desc'));
233 $prtf_prop->setChecked((
$ilSetting->get(
'user_portfolios') ?
'1' :
'0'));
234 $form->addItem($prtf_prop);
239 $banner->
setInfo(
$lng->txt(
"prtf_preview_banner_info"));
240 $form->addItem($banner);
245 $banner->addSubItem($width);
250 $banner->addSubItem($height);
252 $banner->setChecked($prfa_set->get(
"banner",
false));
253 if ($prfa_set->get(
"banner")) {
254 $width->setValue($prfa_set->get(
"banner_width"));
255 $height->setValue($prfa_set->get(
"banner_height"));
257 $width->setValue(1370);
258 $height->setValue(100);
268 $this->ctrl->setParameter($gui,
"ref_id", $gui->object->getRefId());
269 $link = $this->ctrl->getLinkTarget($gui);
270 $ne->
setValue(
"<a href='$link'> >> " . $this->lng->txt(
"settings") .
"</a>");
274 $mycourses->
setInfo(
$lng->txt(
"prtf_allow_my_courses_info"));
275 $mycourses->setChecked($prfa_set->get(
"mycrs",
true));
276 $form->addItem($mycourses);
285 switch ($a_form_id) {
290 return array(array(
"editSettings", $fields));
304 $renderer =
$ui = $this->
ui->renderer();
307 $this->tabs_gui->activateTab(
"authorship");
309 $main_tpl->setContent($renderer->render($form));
323 $lng->loadLanguageModule(
"meta");
325 foreach (
$lng->getInstalledLanguages() as $l) {
327 if (
$lng->getDefaultLanguage() == $l) {
328 $txt .=
" (" .
$lng->txt(
"default") .
")";
330 $fields[
"decl_" . $l] =
$f->input()->field()->textarea(
$txt)
331 ->withRequired(
false)
332 ->withValue((
string) $this->declaration_authorship->getForLanguage($l));
336 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"prtf_decl_authorship"),
"");
338 $form_action =
$ctrl->getLinkTarget($this,
"saveAuthorship");
339 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
353 if (
$request->getMethod() ==
"POST") {
354 $form = $form->withRequest(
$request);
355 $data = $form->getData();
356 if (is_array(
$data[
"sec"])) {
357 foreach (
$lng->getInstalledLanguages() as $l) {
358 $this->declaration_authorship->setForLanguage($l,
$data[
"sec"][
"decl_" . $l]);
367 $ctrl->redirect($this,
"editDeclarationOfAuthorship");
editDeclarationOfAuthorship()
Edit declaration of authorship.
editSettings($a_form=null)
Edit settings.
setValue($a_value)
Set Value.
initFormSettings()
Init settings property form.
Declaration of authorship (data gateway)
Portfolio Administration Settings.
hasReadPermission()
Has read permission.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
prepareOutput($a_show_subobjects=true)
prepare output
executeCommand()
Execute command.
Class ilObjectGUI Basic methods of all Output classes.
hasWritePermission()
Has write permission.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
This class represents a non editable value in a property form.
addToExternalSettingsForm($a_form_id)
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
saveSettings()
Save settings.
saveAuthorship()
Save authorship.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission.
initAuthorshipForm()
Init authorship form.