ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilChatroomClearGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 {
30  public function executeDefault(string $requestedMethod): void
31  {
32  $this->redirectIfNoPermission('moderate');
33 
34  $room = $this->getRoomByObjectId($this->gui->getObject()->getId());
35  $this->exitIfNoRoomExists($room);
36 
37  $chat_user = new ilChatroomUser($this->ilUser, $room);
38 
39  $room->clearMessages();
40 
41  $connector = $this->gui->getConnector();
42  $response = $connector->sendClearMessages($room->getRoomId(), $chat_user->getUserId());
43 
44  $this->sendResponse($response, 'application/json');
45  }
46 }
redirectIfNoPermission($permission)
Checks for requested permissions and redirects if the permission check failed.
$response
Definition: xapitoken.php:93
exitIfNoRoomExists(?ilChatroom $room)
Checks if a ilChatroom exists.
sendResponse(string $content, string $type)
Sends a response and exits the php process.
Class ilChatroomGUIHandler.
executeDefault(string $requestedMethod)
Class ilChatroomUser.
Class ilChatroomKickGUI.