本文整理汇总了PHP中UserDAO::getUserByUserId方法的典型用法代码示例。如果您正苦于以下问题:PHP UserDAO::getUserByUserId方法的具体用法?PHP UserDAO::getUserByUserId怎么用?PHP UserDAO::getUserByUserId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserDAO
的用法示例。
在下文中一共展示了UserDAO::getUserByUserId方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addFriendModel
function addFriendModel($friendId)
{
try {
$responseDTO = new ResponseDTO(ADD_FRIEND_FORM);
$friendsDAO = new FriendsDAO();
$userDAO = new UserDAO();
$newFriendDTO = $userDAO->getUserByUserId($friendId);
$userLogged = SessionUtils::getUserLogged();
$userDTO = $userDAO->getUserByUserId($userLogged->getUserId());
$newFriend = $friendsDAO->addNewFriend($friendId);
SessionUtils::addFriendInUserLoggedFriendList($newFriendDTO);
DataModelUtils::notifyAction($newFriendDTO->getUserId() . SEPARATOR . $newFriendDTO->getUserName(), ADD_FRIEND_FORM);
$result = DataModelUtils::sendMail($userDTO, ADD_FRIEND_FORM, $newFriendDTO);
$responseDTO->setResponseSucc("friend" . $friendId);
return $responseDTO;
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
throw $authExp;
} catch (Exception $e) {
throw $e;
}
}
示例2: confirmFriendshipModel
public function confirmFriendshipModel($notificationId, $userForm)
{
$formObjRaw = new FormDTO(CONFIRM_FRIENDSHIP_FORM, $userForm);
$formObjRaw->setSubElementId($notificationId);
try {
$formDataObj = $formObjRaw->getFormData();
$friendDAO = new FriendsDAO();
$result = $friendDAO->confirmFriendship($formDataObj[CONFIRM_FRIENDSHIP_FORM . FRIENDID]);
$userDAO = new UserDAO();
$friendDTO = $userDAO->getUserByUserId($formDataObj[CONFIRM_FRIENDSHIP_FORM . FRIENDID]);
$friendDTO->setPassword(NULL);
$notificationDAO = new NotificationDAO();
$result = $notificationDAO->setNotificationAsRead($formDataObj[CONFIRM_FRIENDSHIP_FORM . NOTIFICATIONID]);
SessionUtils::addFriendInUserLoggedFriendList($friendDTO, date(DATE_FORMAT));
DataModelUtils::notifyAction($friendDTO->getUserId() . SEPARATOR . $friendDTO->getUserName(), CONFIRM_FRIENDSHIP_FORM);
return $friendDTO;
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (Exception $e) {
throw $e;
}
}
示例3: addAlbumModel
function addAlbumModel($albumForm)
{
$formObjRaw = new FormDTO(ADD_ALBUM_FORM, $albumForm);
$responseDTO = new ResponseDTO(ADD_ALBUM_FORM);
try {
$formDataObj = $formObjRaw->getFormData();
$validator = new FormValidator(ADD_ALBUM_FORM, $formDataObj);
$validationError = $validator->checkAll();
// $validationError = array();
if (sizeof($validationError) == 0) {
$userLogged = SessionUtils::getUserLogged();
$uploadedPhoto = FileUtils::uploadPhotoModel($formDataObj[ADD_ALBUM_FORM . COVER], NULL, ADD_ALBUM_FORM);
if (get_class($uploadedPhoto) === PHOTODTO) {
$userDAO = new UserDAO();
$userDTO = $userDAO->getUserByUserId($userLogged->getUserId());
$albumDAO = new AlbumDAO();
$albumDTO = new AlbumDTO(null, date(DATE_FORMAT), $formDataObj[ADD_ALBUM_FORM . TITLE], $uploadedPhoto, $userDTO);
$albumDTO = $albumDAO->insertNewAlbum($albumDTO);
if ($albumDTO->getAlbumId() != 0) {
$photoAlbumPath = FileUtils::createAlbumDirOnServer($userDTO->getUserId(), $albumDTO->getAlbumId());
DataModelUtils::notifyAction($albumDTO->getCover()->getPhotoId() . SEPARATOR . $albumDTO->getCover()->getPhotoUrl() . SEPARATOR . $albumDTO->getAlbumId() . SEPARATOR . $albumDTO->getTitle(), ADD_ALBUM_FORM);
return $albumDTO;
} else {
$responseDTO->setErrField(ERROR_RESPONSE, "Errore durante l'inserimento dell'album");
}
} else {
$responseDTO->setErrField(ERROR_RESPONSE, "Errore durante l'inserimento della foto profilo");
}
} else {
if (array_key_exists(TITLE, $validationError)) {
$responseDTO->setErrField(TITLE, $validationError[TITLE]);
}
if (array_key_exists(PHOTO, $validationError)) {
$responseDTO->setErrField(COVER, $validationError[PHOTO]);
}
SessionUtils::setFormValue($formDataObj);
}
return $responseDTO;
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
throw $authExp;
} catch (Exception $e) {
throw $e;
}
}
示例4: loadDashboardUser
function loadDashboardUser()
{
if (SessionUtils::getDashboardId() != 1) {
$userDAO = new UserDAO();
$dashboardUser = $userDAO->getUserByUserId(SessionUtils::getDashboardId());
$this->view->setArg('dashboardUser', $dashboardUser);
}
}