2008-02-09 02:20:35 +03:00
|
|
|
<?php
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\Tests\Models\CMS;
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2009-07-29 15:57:27 +04:00
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
2009-07-28 20:36:24 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Entity
|
|
|
|
* @Table(name="cms_users")
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
class CmsUser
|
2008-02-09 02:20:35 +03:00
|
|
|
{
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Id @Column(type="integer")
|
2010-02-09 20:13:49 +03:00
|
|
|
* @GeneratedValue
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $id;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Column(type="string", length=50)
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $status;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-09-08 22:12:01 +04:00
|
|
|
* @Column(type="string", length=255, unique=true)
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $username;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Column(type="string", length=255)
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $name;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-07-25 20:33:29 +04:00
|
|
|
* @OneToMany(targetEntity="CmsPhonenumber", mappedBy="user", cascade={"persist", "remove", "merge"}, orphanRemoval=true)
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $phonenumbers;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @OneToMany(targetEntity="CmsArticle", mappedBy="user")
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $articles;
|
2009-02-02 14:55:50 +03:00
|
|
|
/**
|
2009-07-25 20:33:29 +04:00
|
|
|
* @OneToOne(targetEntity="CmsAddress", mappedBy="user", cascade={"persist"})
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $address;
|
2009-02-04 19:35:36 +03:00
|
|
|
/**
|
2009-07-25 20:33:29 +04:00
|
|
|
* @ManyToMany(targetEntity="CmsGroup", cascade={"persist"})
|
2009-05-29 14:23:13 +04:00
|
|
|
* @JoinTable(name="cms_users_groups",
|
2009-07-28 20:36:24 +04:00
|
|
|
* joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
|
|
|
|
* inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id")}
|
|
|
|
* )
|
2009-02-04 19:35:36 +03:00
|
|
|
*/
|
|
|
|
public $groups;
|
2009-07-28 20:36:24 +04:00
|
|
|
|
|
|
|
public function __construct() {
|
2009-07-29 15:57:27 +04:00
|
|
|
$this->phonenumbers = new ArrayCollection;
|
|
|
|
$this->articles = new ArrayCollection;
|
|
|
|
$this->groups = new ArrayCollection;
|
2009-07-28 20:36:24 +04:00
|
|
|
}
|
2009-01-09 19:25:06 +03:00
|
|
|
|
2009-05-11 14:43:27 +04:00
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getStatus() {
|
|
|
|
return $this->status;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUsername() {
|
|
|
|
return $this->username;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
2009-01-09 19:25:06 +03:00
|
|
|
/**
|
|
|
|
* Adds a phonenumber to the user.
|
|
|
|
*
|
2009-02-02 14:55:50 +03:00
|
|
|
* @param CmsPhonenumber $phone
|
2009-01-09 19:25:06 +03:00
|
|
|
*/
|
|
|
|
public function addPhonenumber(CmsPhonenumber $phone) {
|
|
|
|
$this->phonenumbers[] = $phone;
|
2009-07-02 15:48:44 +04:00
|
|
|
$phone->setUser($this);
|
2009-01-09 19:25:06 +03:00
|
|
|
}
|
2009-01-29 20:00:44 +03:00
|
|
|
|
2009-05-11 14:43:27 +04:00
|
|
|
public function getPhonenumbers() {
|
|
|
|
return $this->phonenumbers;
|
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
public function addArticle(CmsArticle $article) {
|
|
|
|
$this->articles[] = $article;
|
2009-07-02 15:48:44 +04:00
|
|
|
$article->setAuthor($this);
|
2009-05-07 17:54:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function addGroup(CmsGroup $group) {
|
|
|
|
$this->groups[] = $group;
|
|
|
|
$group->addUser($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGroups() {
|
|
|
|
return $this->groups;
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-01-29 20:00:44 +03:00
|
|
|
public function removePhonenumber($index) {
|
|
|
|
if (isset($this->phonenumbers[$index])) {
|
|
|
|
$ph = $this->phonenumbers[$index];
|
|
|
|
unset($this->phonenumbers[$index]);
|
|
|
|
$ph->user = null;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-01 16:00:14 +04:00
|
|
|
|
2009-10-07 16:39:46 +04:00
|
|
|
public function getAddress() { return $this->address; }
|
|
|
|
|
2009-10-01 16:00:14 +04:00
|
|
|
public function setAddress(CmsAddress $address) {
|
|
|
|
if ($this->address !== $address) {
|
|
|
|
$this->address = $address;
|
|
|
|
$address->setUser($this);
|
|
|
|
}
|
|
|
|
}
|
2008-02-15 03:57:34 +03:00
|
|
|
}
|