本文整理汇总了PHP中UserController::updatePassword方法的典型用法代码示例。如果您正苦于以下问题:PHP UserController::updatePassword方法的具体用法?PHP UserController::updatePassword怎么用?PHP UserController::updatePassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserController
的用法示例。
在下文中一共展示了UserController::updatePassword方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
UserController::save();
});
$routes->get('/user', function () {
UserController::all();
});
$routes->get('/user/:id/edit', function ($id) {
UserController::edit($id);
});
$routes->post('/user/:id/edit', function ($id) {
UserController::updateUsername($id);
});
$routes->get('/user/:id/password', function ($id) {
UserController::editPassword($id);
});
$routes->post('/user/:id/password', function ($id) {
UserController::updatePassword($id);
});
//site
$routes->get('/site/new_site', 'check_logged_in', function () {
SiteController::new_site();
});
$routes->get('/site/show_site/:id', 'check_logged_in', function ($id) {
SiteController::show($id);
});
$routes->get('/site/show_site/:id/edit', 'check_logged_in', function ($id) {
SiteController::edit($id);
});
$routes->post('/site/show_site/:id/edit', 'check_logged_in', function ($id) {
SiteController::update($id);
});
$routes->post('/site/:id/destroy', 'check_logged_in', function ($id) {
示例2: function
$controller->changeInfo();
});
$app->post('/change/info', function () {
fAuthorization::requireLoggedIn();
$controller = new UserController();
$controller->updateInfo();
});
$app->get('/change/password', function () {
fAuthorization::requireLoggedIn();
$controller = new UserController();
$controller->changePassword();
});
$app->post('/change/password', function () {
fAuthorization::requireLoggedIn();
$controller = new UserController();
$controller->updatePassword();
});
$app->get('/home', function () {
$controller = new HomeController();
$controller->index();
});
$app->get('/sets', function () {
$controller = new HomeController();
$controller->showProblemSets();
});
$app->get('/page/:name', function ($name) {
$controller = new HomeController();
$controller->showPage($name);
});
$app->get('/problems', function () {
$controller = new ProblemController();