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);
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 if (!$ilAccess->checkAccess(
"create_" . $this->getReferenceType(),
'',
$_GET[
"ref_id"], $new_type)) {
194 $ilErr->raiseError($this->lng->txt(
"permission_denied"),
$ilErr->MESSAGE);
197 $this->tpl->setContent(
$form->getHTML());
212 if (!(
int) $_REQUEST[
'target_id']) {
217 if (!$ilAccess->checkAccess(
'visible',
'', (
int) $_REQUEST[
'target_id'])) {
223 parent::saveObject();
228 return $this->
initForm(self::MODE_CREATE);
237 $a_new_object->setTargetId($target_obj_id);
239 $a_new_object->setTitleType($this->form->getInput(
'title_type'));
241 $a_new_object->
setTitle($this->form->getInput(
'title'));
246 ilUtil::sendSuccess($this->lng->txt(
"object_added"),
true);
247 $this->ctrl->setParameter($this,
'ref_id', $a_new_object->
getRefId());
248 $this->ctrl->setParameter($this,
'creation_mode', 0);
249 $this->ctrl->redirect($this,
'firstEdit');
274 $main_tpl = $DIC->ui()->mainTemplate();
278 $ilTabs->setTabActive(
'settings');
283 $main_tpl->setContent(
$form->getHTML());
291 protected function initForm($a_mode = self::MODE_EDIT)
293 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
294 include_once
'./Services/ContainerReference/classes/class.ilContainerReference.php';
297 if ($a_mode == self::MODE_CREATE) {
298 $form->setTitle($this->lng->txt($this->getReferenceType() .
'_new'));
300 $this->ctrl->setParameter($this,
'creation_mode', $a_mode);
301 $this->ctrl->setParameter($this,
'new_type', $_REQUEST[
'new_type']);
303 $form->setTitle($this->lng->txt(
'edit'));
306 $form->setFormAction($this->ctrl->getFormAction($this));
307 if ($a_mode == self::MODE_CREATE) {
308 $form->addCommandButton(
'save', $this->lng->txt(
'create'));
309 $form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
311 $form->addCommandButton(
'update', $this->lng->txt(
'save'));
316 if ($a_mode == self::MODE_EDIT) {
317 $ttype->
setValue($this->object->getTitleType());
322 $reuse =
new ilRadioOption($this->lng->txt(
'objref_reuse_title'));
324 $ttype->addOption($reuse);
326 $custom =
new ilRadioOption($this->lng->txt(
'objref_custom_title'));
333 $title->setRequired(
true);
335 if ($a_mode == self::MODE_EDIT) {
336 $title->setValue($this->object->getTitle());
339 $custom->addSubItem($title);
340 $ttype->addOption($custom);
341 $form->addItem($ttype);
343 include_once(
"./Services/Form/classes/class.ilRepositorySelector2InputGUI.php");
347 $repo->getExplorerGUI()->setSelectableTypes(array($this->
getTargetType()));
348 $repo->getExplorerGUI()->setTypeWhiteList(
351 array(
"root",
"cat",
"grp",
"fold",
"crs")
354 $repo->setInfo($this->lng->txt($this->getReferenceType() .
'_edit_info'));
356 if ($a_mode == self::MODE_EDIT) {
357 $repo->getExplorerGUI()->setPathOpen($this->object->getTargetRefId());
358 $repo->setValue($this->object->getTargetRefId());
361 $form->addItem($repo);
378 $this->
object->setTitleType($form->
getInput(
'title_type'));
380 $this->
object->setTitle($form->
getInput(
'title'));
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(
418 $form->checkInput() &&
421 $this->
object->update();
422 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'),
true);
423 $this->ctrl->redirect($this,
'edit');
425 $form->setValuesByPost();
463 $ilHelp = $DIC[
'ilHelp'];
466 if ($this->access->checkAccess(
'write',
'', $this->object->getRefId())) {
467 $this->tabs_gui->addTarget(
469 $this->ctrl->getLinkTarget($this,
"edit"),
474 if ($this->access->checkAccess(
'edit_permission',
'', $this->object->getRefId())) {
475 $this->tabs_gui->addTarget(
477 $this->ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm"),
478 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)
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