52 public function __construct($a_data, $a_id, $a_call_by_reference)
56 $this->folderSettings =
new ilSetting(
'fold');
69 $ilAccess = $DIC[
'ilAccess'];
70 $ilias = $DIC[
'ilias'];
73 $lng->loadLanguageModule(
"file");
75 $next_class = $this->ctrl->getNextClass($this);
76 $cmd = $this->ctrl->getCmd();
80 if (!$ilAccess->checkAccess(
'read',
'', $this->object->getRefId())) {
81 $ilias->raiseError(
$lng->txt(
'no_permission'), $ilias->error_obj->MESSAGE);
84 switch ($next_class) {
85 case 'ilpermissiongui':
86 $this->tabs_gui->setTabActive(
'perm_settings');
88 $ret = &$this->ctrl->forwardCommand($perm_gui);
91 if (!$cmd || $cmd ==
'view') {
92 $cmd = self::CMD_EDIT_SETTINGS;
114 $GLOBALS[
'DIC'][
'lng']->loadLanguageModule(
'fm');
116 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
117 $this->tabs_gui->addTarget(
119 $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS),
120 array(self::CMD_EDIT_SETTINGS,
"view")
123 if (
$rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
124 $this->tabs_gui->addTarget(
"perm_settings", $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"), array(),
'ilpermissiongui');
131 $this->tabs_gui->addSubTabTarget(
133 $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS),
134 array(self::CMD_EDIT_SETTINGS,
"view")
136 $this->tabs_gui->addSubTabTarget(
138 $this->ctrl->getLinkTarget($this, self::CMD_SHOW_PREVIEW_RENDERERS),
139 array(self::CMD_SHOW_PREVIEW_RENDERERS,
"view")
150 $ilCtrl = $DIC[
'ilCtrl'];
153 require_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
154 require_once(
"./Services/Form/classes/class.ilCheckboxInputGUI.php");
155 require_once(
"./Services/Form/classes/class.ilRadioGroupInputGUI.php");
156 require_once(
"./Services/Form/classes/class.ilRadioOption.php");
157 require_once(
"./Services/Form/classes/class.ilTextAreaInputGUI.php");
160 $form->setFormAction($ilCtrl->getFormAction($this));
161 $form->setTitle(
$lng->txt(
"settings"));
166 $dl_prop =
new ilCheckboxInputGUI(
$lng->txt(
"download_with_uploaded_filename"),
"download_with_uploaded_filename");
169 $dl_prop->setChecked($this->object->isDownloadWithUploadedFilename() == 1);
170 $dl_prop->setInfo(
$lng->txt(
'download_with_uploaded_filename_info'));
171 $form->addItem($dl_prop);
174 $lng->loadLanguageModule(
"bgtask");
176 $dl_prop->
setInfo(
$lng->txt(
"bgtask_setting_limit_info"));
177 $dl_prop->setRequired(
true);
178 $dl_prop->setSize(10);
179 $dl_prop->setMinValue(1);
180 $dl_prop->setSuffix(
$lng->txt(
"lang_size_mb"));
181 $dl_prop->setValue($this->folderSettings->get(
"bgtask_download_limit", null));
182 $form->addItem($dl_prop);
186 $tai_prop->
setValue($this->object->getInlineFileExtensions());
187 $tai_prop->setInfo(
$lng->txt(
'inline_file_extensions_info'));
188 $tai_prop->setCols(80);
189 $tai_prop->setRows(5);
190 $form->addItem($tai_prop);
192 require_once(
"Services/Preview/classes/class.ilPreviewSettings.php");
198 $chk_prop->setInfo(
$lng->txt(
'enable_preview_info'));
199 $form->addItem($chk_prop);
202 $num_prop =
new ilNumberInputGUI(
$lng->txt(
"max_previews_per_object"),
"max_previews_per_object");
204 $num_prop->setMinValue(1);
205 $num_prop->setMinvalueShouldBeGreater(
false);
207 $num_prop->setMaxvalueShouldBeLess(
false);
208 $num_prop->setMaxLength(5);
209 $num_prop->setSize(10);
211 $num_prop->setInfo(
$lng->txt(
'max_previews_per_object_info'));
212 $form->addItem($num_prop);
215 $form->addCommandButton(
'saveSettings',
$lng->txt(
'save'));
216 $form->addCommandButton(
'view',
$lng->txt(
'cancel'));
229 $this->tabs_gui->setTabActive(
'file_objects');
231 $this->tabs_gui->setSubTabActive(
'settings');
233 if (!$DIC->rbac()->system()->checkAccess(
"visible,read", $this->object->getRefId())) {
234 $ilErr->raiseError($DIC->language()->txt(
"no_permission"), $ilErr->WARNING);
241 $DIC->ui()->mainTemplate()->setContent($a_form->getHTML());
253 if (!
$rbacsystem->checkAccess(
"write", $this->object->getRefId())) {
255 $DIC->ctrl()->redirect($this, self::CMD_EDIT_SETTINGS);
259 if ($form->checkInput()) {
262 $this->
object->update();
263 $this->folderSettings->set(
"bgtask_download_limit", (
int)
$_POST[
"bg_limit"]);
265 require_once(
"Services/Preview/classes/class.ilPreviewSettings.php");
269 ilUtil::sendSuccess($DIC->language()->txt(
'settings_saved'),
true);
270 $DIC->ctrl()->redirect($this, self::CMD_EDIT_SETTINGS);
273 $form->setValuesByPost();
285 $this->tabs_gui->setTabActive(
'file_objects');
287 $this->tabs_gui->setSubTabActive(
'preview_renderers');
289 if (!
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
299 require_once(
"Services/Preview/classes/class.ilRendererFactory.php");
300 require_once(
"Services/Preview/classes/class.ilRendererTableGUI.php");
304 $table =
new ilRendererTableGUI($this, array(self::CMD_SHOW_PREVIEW_RENDERERS,
"view"));
305 $table->setMaxCount(
sizeof($renderers));
306 $table->setData($renderers);
309 $tpl->setContent($table->getHTML());
318 parent::setTitleAndDescription();
319 $this->tpl->setDescription($this->object->getDescription());
static getRenderers()
Gets an array containing all available preview renderers.
static setMaximumPreviews($a_value)
Sets the maximum number of preview pictures per object.
Displays an overview of all loaded preview renderers.
static isGhostscriptInstalled()
Determines whether Ghostscript is installed.
setValue($a_value)
Set Value.
executeCommand()
Execute command.
Class ilObjFileAccessSettingsGUI.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
prepareOutput($a_show_subobjects=true)
prepare output
initSettingsForm()
Edit settings.
Class ilObjectGUI Basic methods of all Output classes.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getMaximumPreviews()
Gets the maximum number of preview pictures per object.
static isPreviewEnabled()
Gets whether the preview functionality is enabled.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static setPreviewEnabled($a_value)
Sets whether the preview functionality is enabled.
saveSettings()
Save settings.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
const CMD_SHOW_PREVIEW_RENDERERS
__construct($a_data, $a_id, $a_call_by_reference)
Constructor.
editSettings(ilPropertyFormGUI $a_form=null)
Edit settings.
setTitleAndDescription()
called by prepare output