public function __construct() { parent::__construct(); $this->roles = array('ROLE_USER'); $this->accepteCGU = true; $this->possession = new arrayCollection(); $this->profilComplet = 0; }
function __construct($Array) { parent::__construct($Array); foreach ($this->EducationInfo as $Key => $Value) { if (isset($Array[$Key])) { $this->EducationInfo[$Key] = $Array[$Key]; } } }
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; }
/** * 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
/** * 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(); }
function User($object = null) { parent::__construct($object); }
public function __construct() { parent::__construct(); $this->setExpiresAt(time() + sfConfig::get('app_account_expire_days') * 86400); }