Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | <?php /* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. # Copyright (C) 2008 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # InDefero is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # ***** END LICENSE BLOCK ***** */ /** * Allow a user to update its details. */ class IDF_Form_UserAccount extends Pluf_Form { public $user = null; public function initFields( $extra = array ()) { $this ->user = $extra [ 'user' ]; $this ->fields[ 'first_name' ] = new Pluf_Form_Field_Varchar( array ( 'required' => false, 'label' => __( 'First name' ), 'initial' => $this ->user->first_name, 'widget_attrs' => array ( 'maxlength' => 50, 'size' => 15, ), )); $this ->fields[ 'last_name' ] = new Pluf_Form_Field_Varchar( array ( 'required' => true, 'label' => __( 'Last name' ), 'initial' => $this ->user->last_name, 'widget_attrs' => array ( 'maxlength' => 50, 'size' => 20, ), )); $this ->fields[ 'language' ] = new Pluf_Form_Field_Varchar( array ( 'required' => true, 'label' => __( 'Language' ), 'initial' => $this ->user->language, 'widget' => 'Pluf_Form_Widget_SelectInput' , 'widget_attrs' => array ( 'choices' => Pluf_L10n::getInstalledLanguages() ), )); $this ->fields[ 'password' ] = new Pluf_Form_Field_Varchar( array ( 'required' => false, 'label' => __( 'Your password' ), 'initial' => '' , 'widget' => 'Pluf_Form_Widget_PasswordInput' , 'help_text' => Pluf_Template::markSafe(__( 'Leave blank if you do not want to change your password.' ). '<br />' .__( 'Your password must be hard for other people to find it, but easy for you to remember.' )), 'widget_attrs' => array ( 'maxlength' => 50, 'size' => 15, ), )); $this ->fields[ 'password2' ] = new Pluf_Form_Field_Varchar( array ( 'required' => false, 'label' => __( 'Confirm your password' ), 'initial' => '' , 'widget' => 'Pluf_Form_Widget_PasswordInput' , 'widget_attrs' => array ( 'maxlength' => 50, 'size' => 15, ), )); } /** * Save the model in the database. * * @param bool Commit in the database or not. If not, the object * is returned but not saved in the database. * @return Object Model with data set from the form. */ function save( $commit =true) { if (! $this ->isValid()) { throw new Exception(__( 'Cannot save the model from an invalid form.' )); } unset( $this ->cleaned_data[ 'password2' ]); $update_pass = false; if ( strlen ( $this ->cleaned_data[ 'password' ]) == 0) { unset( $this ->cleaned_data[ 'password' ]); } else { $update_pass = true; } $this ->user->setFromFormData( $this ->cleaned_data); if ( $commit ) { $this ->user->update(); if ( $update_pass ) { /** * [signal] * * Pluf_User::passwordUpdated * * [sender] * * IDF_Form_UserAccount * * [description] * * This signal is sent when the user updated his * password from his account page. * * [parameters] * * array('user' => $user) * */ $params = array ( 'user' => $this ->user); Pluf_Signal::send( 'Pluf_User::passwordUpdated' , 'IDF_Form_UserAccount' , $params ); } } return $this ->user; } function clean_last_name() { $last_name = trim( $this ->cleaned_data[ 'last_name' ]); if ( $last_name == mb_strtoupper( $last_name )) { return mb_convert_case(mb_strtolower( $last_name ), MB_CASE_TITLE, 'UTF-8' ); } return $last_name ; } function clean_first_name() { $first_name = trim( $this ->cleaned_data[ 'first_name' ]); if ( $first_name == mb_strtoupper( $first_name )) { return mb_convert_case(mb_strtolower( $first_name ), MB_CASE_TITLE, 'UTF-8' ); } return $first_name ; } /** * Check to see if the 2 passwords are the same. */ public function clean() { if (!isset( $this ->errors[ 'password' ]) && !isset( $this ->errors[ 'password2' ])) { $password1 = $this ->cleaned_data[ 'password' ]; $password2 = $this ->cleaned_data[ 'password2' ]; if ( $password1 != $password2 ) { throw new Pluf_Form_Invalid(__( 'The passwords do not match. Please give them again.' )); } } return $this ->cleaned_data; } } |