19 declare(strict_types=1);
39 $this->
lng->loadLanguageModule(
'chatroom');
40 $this->
lng->loadLanguageModule(
'chatroom_adm');
49 $main_tpl = $DIC->ui()->mainTemplate();
57 $DIC->ctrl()->setParameterByClass(self::class,
'sub', $sub);
60 $DIC->ctrl()->setParameterByClass(self::class,
'ref_id',
$ref_id);
61 $DIC->ctrl()->redirectByClass(
63 ilRepositoryGUI::class,
69 $DIC->ctrl()->setParameterByClass(ilInfoScreenGUI::class,
'ref_id',
$ref_id);
70 $DIC->ctrl()->redirectByClass(
72 ilRepositoryGUI::class,
74 ilInfoScreenGUI::class
78 } elseif ($DIC->rbac()->system()->checkAccess(
'read',
ROOT_FOLDER_ID)) {
79 $main_tpl->setOnScreenMessage(
'info', sprintf(
80 $DIC->language()->txt(
'msg_no_perm_read_item'),
86 $DIC[
'ilErr']->raiseError(
88 $DIC->language()->txt(
'msg_no_perm_read_item'),
102 $forms = parent::initCreationForms($new_type);
104 $forms[self::CFORM_NEW]->clearCommandButtons();
105 $forms[self::CFORM_NEW]->addCommandButton(
'create-save', $this->
lng->txt($new_type .
'_add'));
106 $forms[self::CFORM_NEW]->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
113 if (is_object($this->
object)) {
115 $this->
object->getTitle(),
116 $this->
ctrl->getLinkTarget($this,
'view'),
125 return $this->
object->getRefId();
142 'view-toggleAutoMessageDisplayState',
155 $refId = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
157 $DIC[
'ilNavigationHistory']->addItem(
159 './goto.php?target=' . $this->type .
'_' .
$refId,
164 $next_class = $this->
ctrl->getNextClass();
171 if ($this->
http->wrapper()->query()->has(
'baseClass')) {
172 $baseClass = $this->
http->wrapper()->query()->retrieve(
174 $this->
refinery->kindlyTo()->string()
177 if (strtolower($baseClass) === strtolower(ilAdministrationGUI::class)) {
178 $tabFactory->getAdminTabsForCommand($this->
ctrl->getCmd());
180 $DIC[
'ilHelp']->setScreenIdComponent(
'chtr');
181 $tabFactory->getTabsForCommand($this->
ctrl->getCmd());
186 if ($this->
ctrl->getCmd() !==
'info' && strtolower($next_class) === strtolower(ilInfoScreenGUI::class)) {
187 $this->
ctrl->setCmd(
'info-' . $this->
ctrl->getCmd());
191 if ($this->
ctrl->getCmd() ===
'infoScreen') {
192 $this->
ctrl->setCmdClass(ilInfoScreenGUI::class);
193 $this->
ctrl->setCmd(
'info');
196 switch (strtolower($next_class)) {
197 case strtolower(ilPropertyFormGUI::class):
199 $form =
$factory->getClientSettingsForm();
200 $this->
ctrl->forwardCommand($form);
203 case strtolower(ilPermissionGUI::class):
206 $this->
ctrl->forwardCommand($perm_gui);
209 case strtolower(ilExportGUI::class):
212 $GLOBALS[
'DIC']->tabs()->setTabActive(
'export');
215 $exp->addFormat(
'xml');
216 $this->
ctrl->forwardCommand($exp);
219 case strtolower(ilObjectCopyGUI::class):
222 $cp->setType(
'chtr');
223 $this->
ctrl->forwardCommand($cp);
226 case strtolower(ilCommonActionDispatcherGUI::class):
229 $this->
ctrl->forwardCommand($gui);
234 $res = explode(
'-', $this->
ctrl->getCmd(
''), 2);
236 if (!$result && method_exists($this, $this->
ctrl->getCmd() .
'Object')) {
238 $this->{$this->
ctrl->getCmd() .
'Object'}();
241 if ($this->
ctrl->isAsynch()) {
242 $responseStream = Streams::ofString(json_encode([
244 'reason' => $e->getMessage()
245 ], JSON_THROW_ON_ERROR));
246 $this->
http->saveResponse(
247 $this->
http->response()
248 ->withBody($responseStream)
249 ->withHeader(ResponseHeader::CONTENT_TYPE,
'application/json')
251 $this->
http->sendResponse();
252 $this->
http->close();
260 if ($tabFactory !== null &&
261 $tabFactory->getActivatedTab() !== null &&
262 $this->tabs_gui->getActiveTab() !== $tabFactory->getActivatedTab()) {
263 $this->tabs_gui->activateTab($tabFactory->getActivatedTab());
278 $this->tpl->setVariable(
'ADM_CONTENT', $this->
lng->txt(
'invalid_operation'));
292 $refId = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
294 if ($this->
http->wrapper()->post()->has(
'title')) {
296 $this->
http->wrapper()->post()->retrieve(
298 $this->
refinery->kindlyTo()->string()
303 if ($this->
http->wrapper()->post()->has(
'desc')) {
305 $this->
http->wrapper()->post()->retrieve(
307 $this->
refinery->kindlyTo()->string()
314 if (!$this->rbac_system->checkAccess(
'create',
$refId, $new_type)) {
315 $this->
ilias->raiseError(
316 $this->
lng->txt(
'no_create_permission'),
317 $this->
ilias->error_obj->MESSAGE
322 $class_name =
'ilObj' . $this->obj_definition->getClassName($new_type);
324 $newObj =
new $class_name();
325 $newObj->setType($new_type);
326 $newObj->setTitle($title);
327 $newObj->setDescription($desc);
329 $newObj->createReference();
330 $newObj->putInTree(
$refId);
331 $newObj->setPermissions(
$refId);
333 $objId = $newObj->getId();
336 $room->saveSettings([
338 'autogen_usernames' =>
'Autogen #',
339 'display_past_msgs' => 20,
340 'private_rooms_enabled' => 0
343 $rbac_log_roles = $this->rbac_review->getParentRoleIds($newObj->getRefId());
347 $this->
object = $newObj;
static checkUserPermissions($permissions, int $ref_id, bool $send_info=true)
Checks user permissions by given array and ref_id.
static gatherFaPa(int $a_ref_id, array $a_role_ids, bool $a_add_action=false)
__construct($data=null, ?int $id=0, bool $call_by_reference=true, bool $prepare_output=true)
cancelCreation()
cancel create action and go back to repository parent
GUI class for the workflow of copying objects.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
prepareOutput(bool $show_sub_objects=true)
static getDefaultConfiguration()
Instantiates and returns ilChatroomAdmin object using instance_id and settings from settingsTable...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _gotoRepositoryNode(int $ref_id, string $cmd="")
settings()
Calls prepareOutput method.
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
static add(int $a_action, int $a_ref_id, array $a_diff, bool $a_source_ref_id=false)
static _lookupTitle(int $obj_id)
static checkPermissionsOfUser(int $usr_id, $permissions, int $ref_id)
Checks user permissions in question for a given user id in relation to a given ref_id.
Class ilChatroomServerConnector.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
header include for all ilias files.
dispatchCall(string $gui, string $method)
Class ilChatroomTabGUIFactory.
static getDefaultDefinition(string $moduleName)
Returns an Instance of ilChatroomObjectDefinition, using given $moduleName as parameter.
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
Interface ilCtrlSecurityInterface provides ilCtrl security information.
initCreationForms(string $new_type)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
fallback()
Calls $this->prepareOutput method and sets template variable.