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


PHP AdminForm::save方法代码示例

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


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

示例1: PasswordField

         $err["password_confirm"] = "Passwords must match";
         $valid = false;
     }
 }
 $form->load_by_pk($_SESSION['usr_id']);
 //load the data from the table by using the user type
 $panel_head = false;
 if ($valid && isset($_POST['new_password']) && isset($_POST['password_confirm']) && isset($_POST['old_password'])) {
     //if old and new password are set, check if the old
     $pass = new PasswordField();
     //password matches the one that's currently in the database, if so check if the newpassowrd and the confirmation match. if they do, save it to the database
     $pass->new_password($_POST['old_password']);
     if ($pass->value == $form->fields['password']->value) {
         if ($_POST['new_password'] == $_POST['password_confirm']) {
             $form->fields['password']->new_password($_POST['new_password']);
             if ($form->save()) {
                 $panel_head = true;
             } else {
                 echo "Password not changed.";
             }
         }
     } else {
         $err['password_confirm'] = "Either old password is incorrect or new passwords do not match.";
     }
 }
 //load the html templates for the look of the change_password page
 $logout = "logout_button.php";
 $page_title = "Change Password";
 $panel_heading = "Change your password";
 if ($panel_head) {
     $panel_heading = "Success!";
开发者ID:SirTekno,项目名称:cfa_dev,代码行数:31,代码来源:change_password.php

示例2: header

} else {
    header('Location: index.php');
}
include "models/admin_model.php";
$admins = new AdminForm();
$to_edit = new AdminForm();
if (isset($_POST['add_admin'])) {
    $to_edit->load_from_post();
    $valid = $to_edit->validate();
    if ($_POST['password2'] != $to_edit->fields['password']->value) {
        $valid = false;
    } else {
        $to_edit->fields['password']->hash_pass();
    }
    if ($valid) {
        $to_edit->save();
    }
} elseif (isset($_POST['admin_id'])) {
    $to_edit->load_by_pk($_POST['admin_id']);
    $to_edit->load_from_post();
    $valid = $to_edit->validate();
    if ($valid) {
        $to_edit->save();
        $to_edit = new AdminForm();
    }
}
$admins->load_by_filter("");
$page_title = "Manage Administrators";
$panel_heading = "Manage Administrators";
$page_body = "manage_admins_template.php";
include "templates/template.php";
开发者ID:SirTekno,项目名称:cfa_dev,代码行数:31,代码来源:manage_admins.php


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