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


PHP BaseUser::changePassword方法代码示例

本文整理汇总了PHP中BaseUser::changePassword方法的典型用法代码示例。如果您正苦于以下问题:PHP BaseUser::changePassword方法的具体用法?PHP BaseUser::changePassword怎么用?PHP BaseUser::changePassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BaseUser的用法示例。


在下文中一共展示了BaseUser::changePassword方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: EventTiming

$page_body = "";
$et = new EventTiming($debug_time_mode);
$cs = new CriteriaState("base_user.php");
$cs->ReadState();
$userprefs = new BaseUserPrefs();
$userobj = new BaseUser();
$username = $userobj->returnUser();
$page_title = gettext("BASE User preferences");
PrintBASESubHeader($page_title, $page_title, $cs->GetBackLink(), 1);
if (isset($_GET['action'])) {
    //This is where the processing of this page happens.
    switch ($_GET['action']) {
        case "change":
            //call auth.inc
            if ($_POST['newpasswd1'] == $_POST['newpasswd2'] && $_POST['newpasswd1'] != "") {
                $pwdresponse = $userobj->changePassword($username, filterSql($_POST['oldpasswd']), filterSql($_POST['newpasswd1']));
                $page_body = $pwdresponse;
                break;
            } else {
                $page_body = gettext("Your password can not be blank or the two passwords did not match!");
            }
        case "changepassword":
            $form = "<form action='base_user.php?action=change' Method='POST'>";
            $form = $form . "<table border=1 class='query'>";
            $form = $form . "<tr><td width='25%' align='right'>" . gettext("Old Password:") . "</td>";
            $form = $form . "<td align='left'><input type='password' name='oldpasswd'></td></tr>";
            $form = $form . "<tr><td width='25%' align='right'>" . gettext("New Password:") . "</td>";
            $form = $form . "<td align='left'><input type='password' name='newpasswd1'></td></tr>";
            $form = $form . "<tr><td width='25%' align='right'>" . gettext("New Password Again:") . "</td>";
            $form = $form . "<td align='left'><input type='password' name='newpasswd2'></td></tr>";
            $form = $form . "<tr><td colspan='2' align='center'><input type='submit' name='submit'></td>";
开发者ID:jhbsz,项目名称:ossimTest,代码行数:31,代码来源:base_user.php


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