本文整理汇总了PHP中Parse\ParseUser::getUsername方法的典型用法代码示例。如果您正苦于以下问题:PHP ParseUser::getUsername方法的具体用法?PHP ParseUser::getUsername怎么用?PHP ParseUser::getUsername使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parse\ParseUser
的用法示例。
在下文中一共展示了ParseUser::getUsername方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dispatch
/**
* Dispatch is called before the action, using this to make sure any request to the app without an authenticated
* user is directed to the signin,
*
* @param Request $request
* @param Response $response
* @return mixed|\Zend\Http\Response|Response
*/
public function dispatch(Request $request, Response $response = null)
{
$this->user = ParseUser::getCurrentUser();
if (!$this->user or !isset($_SESSION['todo']['user']) or $this->user->getUsername() !== $_SESSION['todo']['user']) {
return $this->redirect()->toRoute('auth', ['action' => 'signin']);
}
return parent::dispatch($request, $response);
// TODO: Change the autogenerated stub
}
示例2: testUserAttributes
public function testUserAttributes()
{
$user = new ParseUser();
$user->setUsername('asdf');
$user->setPassword('zxcv');
$user->setEmail('asds@mail.com');
$this->assertEquals('asdf', $user->getUsername());
$this->assertEquals('asds@mail.com', $user->getEmail());
}
示例3: signupAction
/**
* Expects a post with email / password (or the form is just shown). Creates a new user (if possible) then redirects
* to the app controller on success, or itself (PRG) with a flash message on error.
*/
public function signupAction()
{
if (!$this->request instanceof Request or !$this->request->isPost()) {
return;
//nothing to do
}
$email = $this->request->getPost('email');
$password = $this->request->getPost('password');
$user = new ParseUser();
$user->setUsername($email);
$user->setPassword($password);
try {
$user->signUp();
$_SESSION['todo']['user'] = $user->getUsername();
$this->redirect()->toRoute('app');
} catch (ParseException $e) {
$this->flashMessenger()->addErrorMessage($e->getMessage());
$this->redirect()->toRoute('auth', ['action' => 'signup']);
}
}