24 include_once(
'./Services/Object/classes/class.ilObjectGUI.php');
93 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
97 $this->lng = $DIC->language();
98 $this->ctrl = $DIC->ctrl();
99 $this->tabs = $DIC->tabs();
100 $this->locator = $DIC[
"ilLocator"];
101 $this->
user = $DIC->user();
102 $this->access = $DIC->access();
103 $this->error = $DIC[
"ilErr"];
105 $lng = $DIC->language();
108 $lng->loadLanguageModule(
'objref');
125 if (isset(
$_GET[
'creation_mode']) &&
$_GET[
'creation_mode'] == self::MODE_CREATE) {
129 $next_class = $ilCtrl->getNextClass($this);
130 $cmd = $ilCtrl->getCmd();
134 switch ($next_class) {
135 case "ilpropertyformgui":
136 $form = $this->
initForm($this->creation_mode ? self::MODE_CREATE : self::MODE_EDIT);
137 $this->ctrl->forwardCommand(
$form);
140 case 'ilpermissiongui':
141 $ilTabs->setTabActive(
'perm_settings');
142 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
147 if (!$cmd || $cmd ==
'view') {
163 if ($this->
object instanceof
ilObject) {
164 $ilLocator->addItem($this->object->getPresentationTitle(), $this->ctrl->getLinkTarget($this));
176 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->object->getTargetRefId());
177 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
192 $new_type = $_REQUEST[
"new_type"];
193 $this->ctrl->saveParameter($this,
"crtptrefid");
195 $this->ctrl->saveParameter($this,
"crtcb");
196 if (!$ilAccess->checkAccess(
"create_" . $this->getReferenceType(),
'',
$_GET[
"ref_id"], $new_type)) {
197 $ilErr->raiseError($this->lng->txt(
"permission_denied"),
$ilErr->MESSAGE);
200 $this->tpl->setContent(
$form->getHTML());
215 if (!(
int) $_REQUEST[
'target_id']) {
220 if (!$ilAccess->checkAccess(
'visible',
'', (
int) $_REQUEST[
'target_id'])) {
226 parent::saveObject();
231 return $this->
initForm(self::MODE_CREATE);
240 $a_new_object->setTargetId($target_obj_id);
242 $a_new_object->setTitleType($this->form->getInput(
'title_type'));
244 $a_new_object->
setTitle($this->form->getInput(
'title'));
251 ilUtil::sendSuccess($this->lng->txt(
"object_added"),
true);
252 $this->ctrl->setParameter($this,
'ref_id', $a_new_object->
getRefId());
253 $this->ctrl->setParameter($this,
'creation_mode', 0);
254 $this->ctrl->redirect($this,
'firstEdit');
279 $main_tpl = $DIC->ui()->mainTemplate();
283 $ilTabs->setTabActive(
'settings');
288 $main_tpl->setContent(
$form->getHTML());
296 protected function initForm($a_mode = self::MODE_EDIT)
298 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
299 include_once
'./Services/ContainerReference/classes/class.ilContainerReference.php';
302 if ($a_mode == self::MODE_CREATE) {
303 $form->setTitle($this->lng->txt($this->getReferenceType() .
'_new'));
305 $this->ctrl->setParameter($this,
'creation_mode', $a_mode);
306 $this->ctrl->setParameter($this,
'new_type', $_REQUEST[
'new_type']);
308 $form->setTitle($this->lng->txt(
'edit'));
311 $form->setFormAction($this->ctrl->getFormAction($this));
312 if ($a_mode == self::MODE_CREATE) {
313 $form->addCommandButton(
'save', $this->lng->txt(
'create'));
314 $form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
316 $form->addCommandButton(
'update', $this->lng->txt(
'save'));
321 if ($a_mode == self::MODE_EDIT) {
322 $ttype->
setValue($this->object->getTitleType());
327 $reuse =
new ilRadioOption($this->lng->txt(
'objref_reuse_title'));
329 $ttype->addOption($reuse);
331 $custom =
new ilRadioOption($this->lng->txt(
'objref_custom_title'));
338 $title->setRequired(
true);
340 if ($a_mode == self::MODE_EDIT) {
341 $title->setValue($this->object->getTitle());
344 $custom->addSubItem($title);
345 $ttype->addOption($custom);
346 $form->addItem($ttype);
348 include_once(
"./Services/Form/classes/class.ilRepositorySelector2InputGUI.php");
352 $repo->getExplorerGUI()->setSelectableTypes(array($this->
getTargetType()));
353 $repo->getExplorerGUI()->setTypeWhiteList(
356 array(
"root",
"cat",
"grp",
"fold",
"crs")
359 $repo->setInfo($this->lng->txt($this->getReferenceType() .
'_edit_info'));
361 if ($a_mode == self::MODE_EDIT) {
362 $repo->getExplorerGUI()->setPathOpen($this->object->getTargetRefId());
363 $repo->setValue($this->object->getTargetRefId());
366 $form->addItem($repo);
385 !
$access->checkAccess(
'visible',
'', (
int) $form->
getInput(
'target_id'))
388 $form->
getItemByPostVar(
'target_id')->setAlert($this->lng->txt(
'permission_denied'));
394 $this->lng->txt(
'objref_failure_target_type') .
396 $this->lng->txt(
'obj_' . $this->target_type)
400 $this->
object->setTargetId(
405 $this->
object->setTitleType($form->
getInput(
'title_type'));
407 $this->
object->setTitle($form->
getInput(
'title'));
426 $form->checkInput() &&
429 $this->
object->update();
430 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'),
true);
431 $this->ctrl->redirect($this,
'edit');
433 $form->setValuesByPost();
471 $ilHelp = $DIC[
'ilHelp'];
474 if ($this->access->checkAccess(
'write',
'', $this->object->getRefId())) {
475 $this->tabs_gui->addTarget(
477 $this->ctrl->getLinkTarget($this,
"edit"),
482 if ($this->access->checkAccess(
'edit_permission',
'', $this->object->getRefId())) {
483 $this->tabs_gui->addTarget(
485 $this->ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm"),
486 array(
"perm",
"info",
"owner"),
This class represents an option in a radio group.
executeCommand()
Execute command.
const MAX_SELECTION_ENTRIES
getTargetType()
get target type
initForm($a_mode=self::MODE_EDIT)
Init title form.
const TITLE_LENGTH
max length of object title
createObject()
Create object.
afterSave(ilObject $a_new_object)
initCreateForm($a_new_type)
static _lookupTitle($a_id)
lookup object title
setCreationMode($a_mode=true)
if true, a creation screen is displayed the current $_GET[ref_id] don't belong to the current class! ...
setTitle($a_title)
set object title
prepareOutput($a_show_subobjects=true)
prepare output
editObject(ilPropertyFormGUI $form=null)
edit title
setValue($a_value)
Set Value.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Constructor.
Class ilObjectGUI Basic methods of all Output classes.
static _lookupObjId($a_id)
static _lookupType($a_id, $a_reference=false)
lookup object type
addLocatorItems()
Add locator item.
redirectObject()
redirect to target
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
loadPropertiesFromSettingsForm(\ilPropertyFormGUI $form)
firstEditObject()
show edit screen without info message
__construct(Container $dic, ilPlugin $plugin)
getRefId()
get reference id public
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.
updateObject()
update title
update()
update object in db
getReferenceType()
get reference type