當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DAOFactory::getUserDAO方法代碼示例

本文整理匯總了PHP中DAOFactory::getUserDAO方法的典型用法代碼示例。如果您正苦於以下問題:PHP DAOFactory::getUserDAO方法的具體用法?PHP DAOFactory::getUserDAO怎麽用?PHP DAOFactory::getUserDAO使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DAOFactory的用法示例。


在下文中一共展示了DAOFactory::getUserDAO方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct(Video $video)
 {
     $this->video = $video;
     $this->details = $this->getVideoDetails();
     $this->user = DAOFactory::getUserDAO()->findById($video->getUserId());
     $this->videoTO = new VideoTO($this->video, $this->user);
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:7,代碼來源:abstractfiller.class.php

示例2: getComments

 public function getComments($type, $typeId, $start)
 {
     $span = 10;
     $limit = 10;
     $position = 0;
     if ($start != null) {
         $limit = $start * $span;
         $position = $limit - $span;
     }
     $comments = DAOFactory::getCommentDAO()->findByTypeAndTypeIdAndLimit($type, $typeId, $position, $limit);
     $users = DAOFactory::getUserDAO()->findByCommentTypeAndCommentTypeIdAndLimit($type, $typeId);
     $users = $this->convertToIdMap($users);
     $commentTOs = $this->makeCommentTOs($comments, $users);
     return $commentTOs;
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:15,代碼來源:commentmodel.class.php

示例3: getUser

 public function getUser($login)
 {
     return DAOFactory::getUserDAO()->findByLogin($login);
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:4,代碼來源:profilemodel.class.php

示例4: getUsersWithName

 public function getUsersWithName($name)
 {
     return DAOFactory::getUserDAO()->findByName($name);
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:4,代碼來源:friendsmodel.class.php

示例5: activate

 /**
  * Activate existing User.
  * @param string $activeHash
  */
 public function activate($activeHash)
 {
     $user = DAOFactory::getUserDAO()->findByActivation($activeHash);
     $user->setActive(true);
     DAOFactory::getUserDAO()->save($user);
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:10,代碼來源:authmodel.class.php

示例6: register

 /**
  * Register new User.
  * @param RegisterFO $fo
  */
 public function register(RegisterFO $fo)
 {
     $user = $this->makeUser($fo);
     DAOFactory::getUserDAO()->save($user);
     $this->sendActivationLink($user);
 }
開發者ID:anzasolutions,項目名稱:simlandia,代碼行數:10,代碼來源:registermodel.class.php


注:本文中的DAOFactory::getUserDAO方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。