本文整理匯總了PHP中Projects::getUserProjects方法的典型用法代碼示例。如果您正苦於以下問題:PHP Projects::getUserProjects方法的具體用法?PHP Projects::getUserProjects怎麽用?PHP Projects::getUserProjects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Projects
的用法示例。
在下文中一共展示了Projects::getUserProjects方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: resetClientProjectToFirst
/**
* Function resets values of client and project to the first found for given user
* @param $user_id
*/
public static function resetClientProjectToFirst ($user_id) {
//find companies(clients) available for user
$users_clients = Clients::getClientsIDList($user_id);
//set up session variable to the first client in the list
$_SESSION['last_client'] = $users_clients[0];
//find projects of client
$projects = Projects::getUserProjects($user_id, $users_clients[0]);
$_SESSION['last_project'] = $projects[0]->Project_ID;
}
示例2: actionGetUserClientProjects
/**
* Get user's client project
*/
public function actionGetUserClientProjects()
{
if (Yii::app()->request->isAjaxRequest && isset($_POST['userId']) && isset($_POST['clientId'])) {
$userId = intval($_POST['userId']);
$clientId = intval($_POST['clientId']);
$userProjects = Projects::getUserProjects($userId, $clientId);
$list = $this->renderPartial('user_client_projects' , array(
'userProjects' => $userProjects,
), true);
$projectID = 0;
$projectName = 'No projects';
if (count($userProjects) > 0) {
foreach ($userProjects as $id => $project) {
$projectID = $id;
$projectName = $project;
break;
}
}
$result = array(
'list' => $list,
'projectID' => $projectID,
'projectName' => $projectName,
);
echo CJSON::encode($result);
}
}