phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
UserModel.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class UserModel {
6  protected $lastname;
7  protected $firstname;
8  protected $login;
9  protected $password;
10  protected $email;
11 
12  public function getLogin() {
13  return $this->login;
14  }
15 
16  public function setLogin($login) {
17  $this->login=$login;
18  return $this;
19  }
20 
21  public function getPassword() {
22  return $this->password;
23  }
24 
25  public function setPassword($password) {
26  $this->password=$password;
27  return $this;
28  }
29 
30 }