当前位置: 首页>>代码示例>>PHP>>正文


PHP ModuleUser_EntityUser::getProfileFoto方法代码示例

本文整理汇总了PHP中ModuleUser_EntityUser::getProfileFoto方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleUser_EntityUser::getProfileFoto方法的具体用法?PHP ModuleUser_EntityUser::getProfileFoto怎么用?PHP ModuleUser_EntityUser::getProfileFoto使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ModuleUser_EntityUser的用法示例。


在下文中一共展示了ModuleUser_EntityUser::getProfileFoto方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Update

 /**
  * Обновляет юзера
  *
  * @param ModuleUser_EntityUser $oUser Объект пользователя
  * @return bool
  */
 public function Update(ModuleUser_EntityUser $oUser)
 {
     $sql = "UPDATE " . Config::Get('db.table.user') . "\n      SET\n        user_password = ? ,\n        user_mail = ? ,\n        user_skill = ? ,\n        user_date_activate = ? ,\n        user_date_comment_last = ? ,\n        user_rating = ? ,\n        user_count_vote = ? ,\n        user_activate = ? ,\n                user_activate_key = ? ,\n        user_profile_name = ? ,\n        user_profile_sex = ? ,\n        user_profile_country = ? ,\n        user_profile_region = ? ,\n        user_profile_city = ? ,\n        user_profile_birthday = ? ,\n        user_profile_about = ? ,\n        user_profile_date = ? ,\n        user_profile_avatar = ?  ,\n        user_profile_foto = ? ,\n        user_settings_notice_new_topic = ?  ,\n        user_settings_notice_new_comment = ? ,\n        user_settings_notice_new_talk = ?  ,\n        user_settings_notice_reply_comment = ? ,\n        user_settings_notice_new_friend = ? ,\n        user_settings_timezone = ?\n      WHERE user_id = ?\n    ";
     if ($this->oDb->query($sql, $oUser->getPassword(), $oUser->getMail(), $oUser->getSkill(), $oUser->getDateActivate(), $oUser->getDateCommentLast(), $oUser->getRating(), $oUser->getCountVote(), $oUser->getActivate(), $oUser->getActivateKey(), $oUser->getProfileName(), $oUser->getProfileSex(), $oUser->getProfileCountry(), $oUser->getProfileRegion(), $oUser->getProfileCity(), $oUser->getProfileBirthday(), $oUser->getProfileAbout(), $oUser->getProfileDate(), $oUser->getProfileAvatar(), $oUser->getProfileFoto(), $oUser->getSettingsNoticeNewTopic(), $oUser->getSettingsNoticeNewComment(), $oUser->getSettingsNoticeNewTalk(), $oUser->getSettingsNoticeReplyComment(), $oUser->getSettingsNoticeNewFriend(), $oUser->getSettingsTimezone(), $oUser->getId())) {
         return true;
     }
     return false;
 }
开发者ID:cbrspc,项目名称:LIVESTREET-1-DISTRIB,代码行数:14,代码来源:User.mapper.class.php

示例2: EventResizeFoto

 /**
  * Вырезает из временной фотки область нужного размера, ту что задал пользователь
  */
 protected function EventResizeFoto()
 {
     /**
      * Устанавливаем формат Ajax ответа
      */
     $this->Viewer_SetResponseAjax('json');
     /**
      * Достаем из сессии временный файл
      */
     $sFile = $this->Session_Get('sFotoFileTmp');
     $sFilePreview = $this->Session_Get('sFotoFilePreviewTmp');
     if (!file_exists($sFile)) {
         $this->Message_AddErrorSingle($this->Lang_Get('system_error'));
         return;
     }
     /**
      * Определяем размер большого фото для подсчета множителя пропорции
      */
     $fRation = 1;
     if ($aSizeFile = getimagesize($sFile) and isset($aSizeFile[0])) {
         $fRation = $aSizeFile[0] / 200;
         // 200 - размер превью по которой пользователь определяет область для ресайза
         if ($fRation < 1) {
             $fRation = 1;
         }
     }
     /**
      * Получаем размер области из параметров
      */
     $aSize = array();
     $aSizeTmp = getRequest('size');
     if (isset($aSizeTmp['x']) and is_numeric($aSizeTmp['x']) and isset($aSizeTmp['y']) and is_numeric($aSizeTmp['y']) and isset($aSizeTmp['x2']) and is_numeric($aSizeTmp['x2']) and isset($aSizeTmp['y2']) and is_numeric($aSizeTmp['y2'])) {
         $aSize = array('x1' => round($fRation * $aSizeTmp['x']), 'y1' => round($fRation * $aSizeTmp['y']), 'x2' => round($fRation * $aSizeTmp['x2']), 'y2' => round($fRation * $aSizeTmp['y2']));
     }
     /**
      * Вырезаем аватарку
      */
     if ($sFileWeb = $this->User_UploadFoto($sFile, $this->oUserCurrent, $aSize)) {
         /**
          * Удаляем старые аватарки
          */
         $this->oUserCurrent->setProfileFoto($sFileWeb);
         $this->User_Update($this->oUserCurrent);
         $this->Image_RemoveFile($sFilePreview);
         /**
          * Удаляем из сессии
          */
         $this->Session_Drop('sFotoFileTmp');
         $this->Session_Drop('sFotoFilePreviewTmp');
         $this->Viewer_AssignAjax('sFile', $this->oUserCurrent->getProfileFoto());
         $this->Viewer_AssignAjax('sTitleUpload', $this->Lang_Get('settings_profile_photo_change'));
     } else {
         $this->Message_AddError($this->Lang_Get('settings_profile_avatar_error'), $this->Lang_Get('error'));
     }
 }
开发者ID:cbrspc,项目名称:LIVESTREET-1-DISTRIB,代码行数:58,代码来源:ActionSettings.class.php

示例3: DeleteFoto

 /**
  * Delete user foto from server
  *
  * @param ModuleUser_EntityUser $oUser
  */
 public function DeleteFoto($oUser)
 {
     @unlink($this->Image_GetServerPath($oUser->getProfileFoto()));
 }
开发者ID:lifecom,项目名称:Huddlebuddle,代码行数:9,代码来源:User.class.php

示例4: DeleteFoto

 /**
  * Удаляет фото пользователя
  *
  * @param ModuleUser_EntityUser $oUser
  */
 public function DeleteFoto($oUser)
 {
     $this->Image_RemoveFile($this->Image_GetServerPath($oUser->getProfileFoto()));
 }
开发者ID:lunavod,项目名称:bunker_stable,代码行数:9,代码来源:User.class.php

示例5: DeleteProfilePhoto

 /**
  * Удаляет фото пользователя
  *
  * @param ModuleUser_EntityUser $oUser
  */
 public function DeleteProfilePhoto($oUser)
 {
     if ($oUser->getProfileFoto()) {
         $this->Image_RemoveFile($oUser->getProfileFoto());
         $oUser->setProfileFoto(null);
     }
 }
开发者ID:pinguo-liguo,项目名称:livestreet,代码行数:12,代码来源:User.class.php


注:本文中的ModuleUser_EntityUser::getProfileFoto方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。