Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->roles = array('ROLE_USER');
     $this->accepteCGU = true;
     $this->possession = new arrayCollection();
     $this->profilComplet = 0;
 }
Ejemplo n.º 2
0
 function __construct($Array)
 {
     parent::__construct($Array);
     foreach ($this->EducationInfo as $Key => $Value) {
         if (isset($Array[$Key])) {
             $this->EducationInfo[$Key] = $Array[$Key];
         }
     }
 }
Ejemplo n.º 3
0
 function __construct($username, $password, $user_id, $ip = '', $last_login = 0)
 {
     parent::__construct($username, $password, $user_id, $ip, $last_login);
     self::$db = MySQL_Database::instance();
     $this->username = $username;
     $this->password = $password;
     $this->user_id = (int) $user_id;
     $this->ip = $ip;
     $this->last_login = $last_login;
 }
Ejemplo n.º 4
0
 /**
 * Construct user object
 *
 * @param void
 * @return User
 */
 function __construct() {
   parent::__construct();
   $this->addProtectedAttribute('password', 'salt', 'session_lifetime', 'token', 'twister', 'last_login', 'last_visit', 'last_activity');
   $this->active_projects = array();
 } // __construct
Ejemplo n.º 5
0
 /**
  * Initializes internal state of User object.
  * @see        parent::__construct()
  */
 public function __construct()
 {
     // Make sure that parent constructor is always invoked, since that
     // is where any default values for this object are set.
     parent::__construct();
 }
Ejemplo n.º 6
0
 function User($object = null)
 {
     parent::__construct($object);
 }
Ejemplo n.º 7
0
Archivo: User.php Proyecto: habtom/uas
 public function __construct()
 {
     parent::__construct();
     $this->setExpiresAt(time() + sfConfig::get('app_account_expire_days') * 86400);
 }