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


PHP DAOFactory::getNotificationsDAO方法代码示例

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


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

示例1: rtrim

 function __construct()
 {
     global $configs;
     $this->baseUrl = $configs["COLLAP_BASE_URL"];
     $this->jobsBaseUrl = $configs["JOBS_COLLAP_BASE_URL"];
     $this->url = rtrim($this->baseUrl, "/") . $_SERVER[REQUEST_URI];
     global $logger;
     $this->logger = $logger;
     $this->logger->debug("BaseController started");
     if (isset($_SESSION["user_id"])) {
         $this->userId = $_SESSION["user_id"];
         $this->username = $_SESSION["username"];
         $this->firstName = $_SESSION['first_name'];
         $this->lastName = $_SESSION['last_name'];
     }
     $DAOFactory = new DAOFactory();
     $this->challengesDAO = $DAOFactory->getChallengesDAO();
     $this->projectsDAO = $DAOFactory->getProjectsDAO();
     $this->userInfoDAO = $DAOFactory->getUserInfoDAO();
     $this->userSkillDAO = $DAOFactory->getSkillsDAO();
     $this->challengeResponsesDAO = $DAOFactory->getChallengeResponsesDAO();
     $this->projectResponsesDAO = $DAOFactory->getProjectResponsesDAO();
     $this->teamsDAO = $DAOFactory->getTeamsDAO();
     $this->notificationsDAO = $DAOFactory->getNotificationsDAO();
     $this->userEducationDAO = $DAOFactory->getEducationDAO();
     $this->userTechStrengthDAO = $DAOFactory->getTechnicalStrengthDAO();
     $this->userWorkHistoryDAO = $DAOFactory->getWorkingHistoryDAO();
     $this->userJobPreferenceDAO = $DAOFactory->getJobPreferenceDAO();
     $this->userSkillsInsertDAO = $DAOFactory->getUserSkillsDAO();
     $this->jobLocationsDAO = $DAOFactory->getWorkingLocationsDAO();
     $this->userPreferredLocationsDAO = $DAOFactory->getUserLocationsDAO();
     $this->involveInDAO = $DAOFactory->getInvolveInDAO();
     $this->userSocialLinksDAO = $DAOFactory->getUserSocialLinksDAO();
     $this->collaborativeRoleDAO = $DAOFactory->getUserCollaborativeRoleDAO();
     $this->userPushFormsDAO = $DAOFactory->getFormsDAO();
     $this->userPushFormsInsertDAO = $DAOFactory->getUserFormsDAO();
     $this->userAccessAidDAO = $DAOFactory->getUserAccessAidDAO();
     $this->process();
 }
开发者ID:rajnishp,项目名称:teamroomV3,代码行数:39,代码来源:BaseController.class.php

示例2: __construct

 public function __construct()
 {
     $DAOFactory = new DAOFactory();
     $this->collapDAO = $DAOFactory->getNotificationsDAO();
 }
开发者ID:rajnishp,项目名称:teamroomV3,代码行数:5,代码来源:UserNotificationsResource.class.php


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