setObjectInformation(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $id); $return .= $this->getIncludeContents('UserColumn.php'); } return $return; } /** * @throws UserGroupTypeException */ public function showUserProfile(): void { $userId = $this->getRequestParameter('user_id'); $this->setObjectInformation(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $userId); echo $this->getIncludeContents('UserProfileEditForm.php'); } /** * @throws UserGroupTypeException */ public function saveUserData(int|string|null $userId): void { $this->saveObjectData(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $userId); } public function removeUserData(int|string|null $userId): void { $this->removeObjectData(ObjectHandler::GENERAL_USER_OBJECT_TYPE, $userId); } }