当前位置: 首页>>代码示例>>PHP>>正文


PHP AUTH::get_support_auth_type方法代码示例

本文整理汇总了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');
开发者ID:nansenat16,项目名称:4money,代码行数:31,代码来源:user_mgr.php


注:本文中的AUTH::get_support_auth_type方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。