本文整理汇总了PHP中YumUser::validate_password方法的典型用法代码示例。如果您正苦于以下问题:PHP YumUser::validate_password方法的具体用法?PHP YumUser::validate_password怎么用?PHP YumUser::validate_password使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YumUser
的用法示例。
在下文中一共展示了YumUser::validate_password方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionDelete
/**
* Deletes a user by setting the status to 'deleted'
*/
public function actionDelete($id = null) {
if(!$id)
$id = Yii::app()->user->id;
$user = YumUser::model()->findByPk($id);
if(Yii::app()->user->isAdmin()) {
//This is necesary for handling human stupidity.
if($user && ($user->id == Yii::app()->user->id)) {
Yum::setFlash('You can not delete your own admin account');
$this->redirect(array('//user/user/admin'));
}
if($user->delete()) {
Yum::setFlash('The User has been deleted');
if(!Yii::app()->request->isAjaxRequest)
$this->redirect('//user/user/admin');
}
} else if(isset($_POST['confirmPassword'])) {
if(YumUser::validate_password($_POST['confirmPassword'], $user->password, $user->salt)) {
if($user->delete())
$this->actionLogout();
else
Yum::setFlash('Error while deleting Account. Account was not deleted');
} else {
Yum::setFlash('Wrong password confirmation! Account was not deleted');
}
$this->redirect(array('//profile/profile/view'));
}
$this->render('confirmDeletion', array('model' => $user));
}