98 lines
No EOL
1.9 KiB
PHP
98 lines
No EOL
1.9 KiB
PHP
<?php
|
|
/**
|
|
* User
|
|
*
|
|
*/
|
|
class User
|
|
{
|
|
protected $_email;
|
|
protected $_firstName;
|
|
protected $_lastName;
|
|
protected $_regDate;
|
|
protected $_isDeleted = false;
|
|
|
|
|
|
/**
|
|
* Set user lastname
|
|
*
|
|
* @param string $name
|
|
* @return boolean
|
|
*/
|
|
public function setLastName($name)
|
|
{
|
|
if (is_string($name) && preg_match('/^[A-ö\ \.\-]{0,20}$/', $name)) {
|
|
$this->_lastName = $name;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
/**
|
|
* Set user firstname
|
|
*
|
|
* @param string $name
|
|
* @return boolean
|
|
*/
|
|
public function setFirstName($name)
|
|
{
|
|
if (is_string($name) && preg_match('/^[A-ö]{2,8}\-?[A-ö]{2,8}$/', $name)) {
|
|
$this->_firstName = $name;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
public function setRegDate($date)
|
|
{
|
|
if (is_string($date) && preg_match('/^(?:(?:19[0-9]{2})|(?:20[0-9]{2}))\-' .
|
|
'(?:(?:0[1-9])|(?:1[012]))\-(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01]))$/', $date)) {
|
|
|
|
$this->_regDate = $date;
|
|
} else if ($date instanceof Zend_Date) {
|
|
|
|
$this->_regDate = $date->toString('yyyy-MM-dd');
|
|
} else {
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns the user registration date
|
|
*
|
|
* @return string $_regDate
|
|
*/
|
|
public function userSince()
|
|
{
|
|
return !empty($_regDate) ? $_regDate : false;
|
|
}
|
|
|
|
|
|
/**
|
|
* Controll wheter the user is currently active on the
|
|
* site.
|
|
* TODO: Make sure we have a way to see if the user is logged in.
|
|
* @return boolean
|
|
*/
|
|
public function isActive()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
/**
|
|
* String representation of the object
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return '{' . $this->_firstName . ' ' . $this->_lastName . '}';
|
|
}
|
|
} |