本文整理汇总了PHP中DAOFactory::getUserInfoDAO方法的典型用法代码示例。如果您正苦于以下问题:PHP DAOFactory::getUserInfoDAO方法的具体用法?PHP DAOFactory::getUserInfoDAO怎么用?PHP DAOFactory::getUserInfoDAO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAOFactory
的用法示例。
在下文中一共展示了DAOFactory::getUserInfoDAO方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkAuth
function checkAuth($projectId, $userId)
{
//returns true in case of public
$projectType = $this->load($projectId);
if ($projectType) {
if ($projectType->getType() == 'Public') {
return true;
} else {
if ($projectType->getType() == 'Classified') {
if (isset($userId)) {
$sql = "(SELECT user_id from projects where id = ? and user_id = ?)\r\n\t\t\t\t\t\t\tUNION \r\n\t\t\t\t\t\t\t(SELECT DISTINCT team.user_id FROM teams as team join projects as project \r\n\t\t\t\t\t\t\t\t\tWHERE team.user_id = ? and team.project_id = project.id and project.id = ? and team.member_status = '1')\r\n\t\t\t\t\t\t\t;";
$sqlQuery = new SqlQuery($sql);
$sqlQuery->setNumber($projectId);
$sqlQuery->setNumber($userId);
$sqlQuery->setNumber($userId);
$sqlQuery->setNumber($projectId);
$projectAccess = $this->getListProjects($sqlQuery);
if ($projectAccess) {
return true;
} else {
return false;
}
} else {
return false;
}
} else {
if ($projectType->getType() == 'Private') {
if (isset($userId)) {
$DAOFactory = new DAOFactory();
$userInfoDAO = $DAOFactory->getUserInfoDAO();
$userType = $userInfoDAO->load($userId);
if ($userType->getUserType() == "investor" || $userType->getUserType() == "collaboratorInvestor" || $userType->getUserType() == "fundsearcherInvestor" || $userType->getUserType() == "collaboratorInvestorFundsearcher") {
return true;
} else {
$sql = "(SELECT user_id from projects where id = ? and user_id = ?)\r\n\t\t\t\t\t\t\t\tUNION \r\n\t\t\t\t\t\t\t\t(SELECT DISTINCT team.user_id FROM teams as team join projects as project \r\n\t\t\t\t\t\t\t\t\t\tWHERE team.user_id = ? and team.project_id = project.id and project.id = ? and team.member_status = '1')\r\n\t\t\t\t\t\t\t\t;";
$sqlQuery = new SqlQuery($sql);
$sqlQuery->setNumber($projectId);
$sqlQuery->setNumber($userId);
$sqlQuery->setNumber($userId);
$sqlQuery->setNumber($projectId);
$projectAccessPrivate = $this->getListProjects($sqlQuery);
if ($projectAccessPrivate) {
return true;
} else {
return false;
}
}
} else {
return false;
}
} else {
return false;
}
}
}
} else {
return false;
}
//check user have access if access the return true
}
示例2: 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("RecoverPasswordController started");
$DAOFactory = new DAOFactory();
$this->userInfoDAO = $DAOFactory->getUserInfoDAO();
$this->userAccessAidDAO = $DAOFactory->getUserAccessAidDAO();
}
示例3: 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();
}
示例4: __construct
public function __construct()
{
$DAOFactory = new DAOFactory();
$this->collapDAO = $DAOFactory->getUserInfoDAO();
}