本文整理汇总了PHP中AUTH::get_support_auth_type方法的典型用法代码示例。如果您正苦于以下问题:PHP AUTH::get_support_auth_type方法的具体用法?PHP AUTH::get_support_auth_type怎么用?PHP AUTH::get_support_auth_type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AUTH
的用法示例。
在下文中一共展示了AUTH::get_support_auth_type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: AUTH
$acc->acc_company = $company;
$acc->save();
if ($post['account_type'] == 'db' && $post['account_pwd'] != '') {
$auth = new AUTH($post['account_id']);
$auth->setpwd($post['account_pwd']);
}
$msg = array('class' => 'success', 'msg' => '帳號修改完成');
}
$app->render('_notice.html', $msg);
});
/*
* 刪除
*/
$app->get('/user_delete/:id', function ($id) use($app) {
$app->applyHook('account.check_sysadmin');
$type_words = AUTH::get_support_auth_type();
$tpl = array('breadcrumb_title' => '刪除帳號', 'type_words' => $type_words);
$user = ORM::for_table('account')->where('acc_name', $id)->find_one();
$tpl['acc_name'] = $user->acc_name;
$tpl['acc_auth_type'] = $user->acc_auth_type;
$info = unserialize($user->acc_company);
if (is_array($info)) {
while ($k = key($info)) {
$tpl['info_' . $k] = $info[$k];
next($info);
}
}
$app->render('user_mgr_delete.html', $tpl);
});
$app->post('/ajax_user_delete', function () use($app) {
$app->applyHook('account.check_sysadmin');