2009-02-02 14:55:50 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\CMS;
|
|
|
|
|
|
|
|
/**
|
2009-02-18 10:59:11 +03:00
|
|
|
* CmsAddress
|
2009-02-02 14:55:50 +03:00
|
|
|
*
|
2009-02-18 10:59:11 +03:00
|
|
|
* @author Roman S. Borschel
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Entity
|
|
|
|
* @Table(name="cms_addresses")
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
class CmsAddress
|
|
|
|
{
|
|
|
|
/**
|
2009-05-29 14:23:13 +04:00
|
|
|
* @Column(type="integer")
|
2010-04-10 02:00:36 +04:00
|
|
|
* @Id @GeneratedValue
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $id;
|
2009-02-18 10:59:11 +03:00
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* @Column(length=50)
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $country;
|
2009-02-18 10:59:11 +03:00
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* @Column(length=50)
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $zip;
|
2009-02-18 10:59:11 +03:00
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* @Column(length=50)
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $city;
|
2009-02-18 10:59:11 +03:00
|
|
|
|
2009-11-01 01:24:29 +03:00
|
|
|
/**
|
|
|
|
* Testfield for Schema Updating Tests.
|
|
|
|
*/
|
|
|
|
public $street;
|
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* @OneToOne(targetEntity="CmsUser", inversedBy="address")
|
2010-08-26 15:47:22 +04:00
|
|
|
* @JoinColumn(referencedColumnName="id")
|
2009-02-02 14:55:50 +03:00
|
|
|
*/
|
|
|
|
public $user;
|
2009-05-13 19:19:27 +04:00
|
|
|
|
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
2009-10-22 13:10:59 +04:00
|
|
|
|
|
|
|
public function getUser() {
|
|
|
|
return $this->user;
|
|
|
|
}
|
2009-05-13 19:19:27 +04:00
|
|
|
|
|
|
|
public function getCountry() {
|
|
|
|
return $this->country;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getZipCode() {
|
|
|
|
return $this->zip;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCity() {
|
|
|
|
return $this->city;
|
|
|
|
}
|
2009-10-01 16:00:14 +04:00
|
|
|
|
|
|
|
public function setUser(CmsUser $user) {
|
|
|
|
if ($this->user !== $user) {
|
|
|
|
$this->user = $user;
|
|
|
|
$user->setAddress($this);
|
|
|
|
}
|
|
|
|
}
|
2009-02-18 10:59:11 +03:00
|
|
|
}
|