5 require_once
"./Services/Object/classes/class.ilObjectGUI.php";
6 require_once(
'./Services/Repository/classes/class.ilObjectPlugin.php');
41 public function __construct($a_data, $a_id, $a_call_by_reference)
47 $lng->loadLanguageModule(
'rbac');
52 $this->ctrl->saveParameter($this,
"obj_id");
63 $next_class = $this->ctrl->getNextClass($this);
64 $cmd = $this->ctrl->getCmd();
66 switch ($next_class) {
87 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
90 if ($this->creation_mode) {
91 $this->ctrl->setParameter($this,
"new_type",
'rolt');
94 $form->setFormAction($this->ctrl->getFormAction($this));
96 if ($a_mode == self::FORM_MODE_CREATE) {
97 $form->setTitle($this->lng->txt(
'rolt_new'));
98 $form->addCommandButton(
'save', $this->lng->txt(
'rolt_new'));
100 $form->setTitle($this->lng->txt(
'rolt_edit'));
101 $form->addCommandButton(
'update', $this->lng->txt(
'save'));
103 $form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
106 if ($a_mode != self::FORM_MODE_CREATE) {
107 if ($this->object->isInternalTemplate()) {
108 $title->setDisabled(
true);
113 $title->setMaxLength(70);
114 $title->setRequired(
true);
115 $form->addItem($title);
119 if ($a_mode != self::FORM_MODE_CREATE) {
120 $desc->
setValue($this->object->getDescription());
124 $form->addItem($desc);
126 if ($a_mode != self::FORM_MODE_CREATE) {
129 $form->addItem($ilias_id);
132 $pro =
new ilCheckboxInputGUI($this->lng->txt(
'role_protect_permissions'),
'protected');
135 $this->object->getId()
138 $form->addItem($pro);
155 if (!
$rbacsystem->checkAccess(
"create_rolt", $this->rolf_ref_id)) {
156 $this->
ilias->raiseError($this->lng->txt(
"permission_denied"), $this->
ilias->error_obj->MESSAGE);
161 $this->tpl->setContent($form->getHTML());
174 $this->tabs_gui->activateTab(
'settings');
176 if (!
$rbacsystem->checkAccess(
"write", $this->rolf_ref_id)) {
177 $this->
ilias->raiseError($this->lng->txt(
"msg_no_perm_write"), $this->
ilias->error_obj->MESSAGE);
183 $GLOBALS[
'DIC'][
'tpl']->setContent($form->getHTML());
196 $rbacadmin = $DIC[
'rbacadmin'];
200 if (!
$rbacsystem->checkAccess(
"write", $this->rolf_ref_id)) {
201 $this->
ilias->raiseError($this->lng->txt(
"msg_no_perm_modify_rolt"), $this->
ilias->error_obj->WARNING);
205 if ($form->checkInput()) {
206 if (!$this->object->isInternalTemplate()) {
207 $this->
object->setTitle($form->getInput(
'title'));
209 $this->
object->setDescription($form->getInput(
'desc'));
210 $rbacadmin->setProtected(
212 $this->object->getId(),
213 $form->getInput(
'protected') ?
'y' :
'n' 215 $this->
object->update();
216 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
217 $this->ctrl->returnToParent($this);
220 $form->setValuesByPost();
236 $rbacadmin = $DIC[
'rbacadmin'];
239 if (!
$rbacsystem->checkAccess(
"create_rolt", $this->rolf_ref_id)) {
240 $this->
ilias->raiseError($this->lng->txt(
"msg_no_perm_create_rolt"), $this->
ilias->error_obj->WARNING);
243 if ($form->checkInput()) {
244 include_once(
"./Services/AccessControl/classes/class.ilObjRoleTemplate.php");
246 $roltObj->setTitle($form->getInput(
'title'));
247 $roltObj->setDescription($form->getInput(
'desc'));
250 $rbacadmin->setProtected(
253 $form->getInput(
'protected') ?
'y' :
'n' 256 ilUtil::sendSuccess($this->lng->txt(
"rolt_added"),
true);
258 $this->ctrl->setParameter($this,
'obj_id', $roltObj->getId());
259 $this->ctrl->redirect($this,
'perm');
261 $form->setValuesByPost();
269 protected function permObject()
288 if (!
$rbacsystem->checkAccess(
'edit_permission', $this->ref_id)) {
289 $ilErr->raiseError($this->lng->txt(
'msg_no_perm_perm'),
$ilErr->MESSAGE);
292 $this->tabs_gui->activateTab(
'perm');
294 $this->tpl->addBlockFile(
297 'tpl.rbac_template_permissions.html',
298 'Services/AccessControl' 301 $this->tpl->setVariable(
'PERM_ACTION', $this->ctrl->getFormAction($this));
303 include_once
'./Services/Accordion/classes/class.ilAccordionGUI.php';
306 $acc->setId(
'template_perm_' . $this->ref_id);
308 $subs = ilObjRole::getSubObjects(
'root',
false);
310 foreach ($subs as $subtype => $def) {
319 $tbl->setShowChangeExistingObjects(
false);
322 $acc->addItem($def[
'translation'], $tbl->getHTML());
325 $this->tpl->setVariable(
'ACCORDION', $acc->getHTML());
328 include_once
'./Services/AccessControl/classes/class.ilObjectRoleTemplateOptionsTableGUI.php';
336 $options->setShowOptions(
false);
337 $options->addMultiCommand(
339 $this->lng->txt(
'save')
343 $this->tpl->setVariable(
'OPTIONS_TABLE', $options->getHTML());
352 protected function permSaveObject()
364 $rbacadmin = $DIC->rbac()->admin();
377 if (!
$rbacsystem->checkAccess(
'write', $this->rolf_ref_id)) {
378 $ilErr->raiseError($this->lng->txt(
'msg_no_perm_perm'),
$ilErr->MESSAGE);
383 $subs = ilObjRole::getSubObjects(
'root',
false);
385 foreach ($subs as $subtype => $def) {
387 $rbacadmin->deleteRolePermission($this->object->getId(),
$this->ref_id, $subtype);
390 foreach (
$_POST[
"template_perm"] as $key => $ops_array) {
391 $rbacadmin->setRolePermission($this->object->getId(), $key, $ops_array,
$this->rolf_ref_id);
395 $this->
object->update();
397 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
398 $this->ctrl->redirect($this,
"perm");
410 $rbacadmin = $DIC[
'rbacadmin'];
414 if (!
$rbacsystem->checkAccess(
'write', $this->rolf_ref_id)) {
415 $this->
ilias->raiseError($this->lng->txt(
"msg_no_perm_perm"), $this->
ilias->error_obj->WARNING);
416 } elseif ($this->obj_id ==
$_POST[
"adopt"]) {
419 $rbacadmin->deleteRolePermission($this->obj_id, $this->rolf_ref_id);
420 $parentRoles =
$rbacreview->getParentRoleIds($this->rolf_ref_id,
true);
421 $rbacadmin->copyRoleTemplatePermissions(
423 $parentRoles[
$_POST[
"adopt"]][
"parent"],
428 $this->
object->update();
431 $obj_data = &$this->
ilias->obj_factory->getInstanceByObjId($_POST[
"adopt"]);
432 ilUtil::sendSuccess($this->lng->txt(
"msg_perm_adopted_from1") .
" '" . $obj_data->getTitle() .
"'.<br/>" . $this->lng->txt(
"msg_perm_adopted_from2"),
true);
435 $this->ctrl->redirect($this,
"perm");
454 $this->tabs_gui->setBackTarget($this->lng->txt(
'btn_back'), $this->ctrl->getParentReturn($this));
456 if (
$rbacsystem->checkAccess(
'write', $this->ref_id)) {
457 $this->tabs_gui->addTab(
459 $this->lng->txt(
'settings'),
460 $this->ctrl->getLinkTarget($this,
'edit')
463 if (
$rbacsystem->checkAccess(
'edit_permission', $this->ref_id)) {
464 $this->tabs_gui->addTab(
466 $this->lng->txt(
'default_perm_settings'),
467 $this->ctrl->getLinkTarget($this,
'perm')
478 $this->ctrl->redirectByClass(
"ilobjrolefoldergui",
"view");
490 $ilLocator = $DIC[
'ilLocator'];
492 parent::addAdminLocatorItems(
true);
498 $this->ctrl->getLinkTargetByClass(
"ilobjrolefoldergui",
"view")
updateObject()
update role template object
addAdminLocatorItems($a_do_not_add_object=false)
setValue($a_value)
Set Value.
adoptPermSaveObject()
adopting permission setting from other roles/role templates
Table for object role permissions.
__construct($a_data, $a_id, $a_call_by_reference)
Constructor.
setValue($a_value)
Set Value.
static _lookupTitle($a_id)
lookup object title
createObject()
create new object form
Table for object role permissions.
saveObject()
save a new role template object
getAdminTabs()
admin and normal tabs are equal for roles
prepareOutput($a_show_subobjects=true)
prepare output
cancelObject()
cancelObject is called when an operation is canceled, method links back public
initFormRoleTemplate($a_mode=self::FORM_MODE_CREATE)
Init create form.
Class ilObjectGUI Basic methods of all Output classes.
static _lookupObjId($a_id)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
redirection script todo: (a better solution should control the processing via a xml file) ...
static _getTranslation($a_role_title)
static _lookupType($a_id, $a_reference=false)
lookup object type
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
This class represents a non editable value in a property form.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
Class ilObjRoleTemplateGUI.
Accordion user interface class.
createObject(ilPropertyFormGUI $form=null)
create new role definition template
editObject(ilPropertyFormGUI $form=null)
Create new object.