2009-02-02 11:55:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\CMS;
|
|
|
|
|
|
|
|
/**
|
2009-02-18 07:59:11 +00:00
|
|
|
* CmsAddress
|
2009-02-02 11:55:50 +00:00
|
|
|
*
|
2009-02-18 07:59:11 +00:00
|
|
|
* @author Roman S. Borschel
|
2009-05-29 10:23:13 +00:00
|
|
|
* @Entity
|
|
|
|
* @Table(name="cms_addresses")
|
2012-02-26 16:51:39 -03:00
|
|
|
*
|
|
|
|
* @NamedNativeQueries({
|
|
|
|
* @NamedNativeQuery(
|
|
|
|
* name = "find-all",
|
|
|
|
* resultSetMapping = "mapping-find-all",
|
|
|
|
* query = "SELECT id, country, city FROM cms_addresses"
|
2012-02-26 21:10:19 -03:00
|
|
|
* ),
|
|
|
|
* @NamedNativeQuery(
|
|
|
|
* name = "find-by-id",
|
|
|
|
* resultClass = "CmsAddress",
|
|
|
|
* query = "SELECT * FROM cms_addresses WHERE id = ?"
|
|
|
|
* ),
|
|
|
|
* @NamedNativeQuery(
|
|
|
|
* name = "count",
|
|
|
|
* resultSetMapping= "mapping-count",
|
|
|
|
* query = "SELECT COUNT(*) AS count FROM cms_addresses"
|
2012-02-26 16:51:39 -03:00
|
|
|
* )
|
|
|
|
* })
|
|
|
|
*
|
|
|
|
* @SqlResultSetMappings({
|
|
|
|
* @SqlResultSetMapping(
|
|
|
|
* name = "mapping-find-all",
|
|
|
|
* entities= {
|
|
|
|
* @EntityResult(
|
|
|
|
* entityClass = "CmsAddress",
|
|
|
|
* fields = {
|
|
|
|
* @FieldResult(name = "id", column="id"),
|
|
|
|
* @FieldResult(name = "city", column="city"),
|
|
|
|
* @FieldResult(name = "country", column="country")
|
|
|
|
* }
|
|
|
|
* )
|
|
|
|
* }
|
2012-02-26 21:10:19 -03:00
|
|
|
* ),
|
|
|
|
* @SqlResultSetMapping(
|
|
|
|
* name = "mapping-without-fields",
|
|
|
|
* entities= {
|
|
|
|
* @EntityResult(
|
|
|
|
* entityClass = "__CLASS__"
|
|
|
|
* )
|
|
|
|
* }
|
|
|
|
* ),
|
|
|
|
* @SqlResultSetMapping(
|
|
|
|
* name = "mapping-count",
|
|
|
|
* columns = {
|
|
|
|
* @ColumnResult(
|
|
|
|
* name = "count"
|
|
|
|
* )
|
|
|
|
* }
|
2012-02-26 16:51:39 -03:00
|
|
|
* )
|
|
|
|
* })
|
|
|
|
*
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
class CmsAddress
|
|
|
|
{
|
|
|
|
/**
|
2009-05-29 10:23:13 +00:00
|
|
|
* @Column(type="integer")
|
2010-04-10 00:00:36 +02:00
|
|
|
* @Id @GeneratedValue
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
public $id;
|
2009-02-18 07:59:11 +00:00
|
|
|
|
2009-02-02 11:55:50 +00:00
|
|
|
/**
|
2010-04-10 00:00:36 +02:00
|
|
|
* @Column(length=50)
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
public $country;
|
2009-02-18 07:59:11 +00:00
|
|
|
|
2009-02-02 11:55:50 +00:00
|
|
|
/**
|
2010-04-10 00:00:36 +02:00
|
|
|
* @Column(length=50)
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
public $zip;
|
2009-02-18 07:59:11 +00:00
|
|
|
|
2009-02-02 11:55:50 +00:00
|
|
|
/**
|
2010-04-10 00:00:36 +02:00
|
|
|
* @Column(length=50)
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
public $city;
|
2009-02-18 07:59:11 +00:00
|
|
|
|
2009-10-31 22:24:29 +00:00
|
|
|
/**
|
|
|
|
* Testfield for Schema Updating Tests.
|
|
|
|
*/
|
|
|
|
public $street;
|
|
|
|
|
2009-02-02 11:55:50 +00:00
|
|
|
/**
|
2011-11-14 21:05:44 +01:00
|
|
|
* @OneToOne(targetEntity="CmsUser", inversedBy="address")
|
2010-08-26 13:47:22 +02:00
|
|
|
* @JoinColumn(referencedColumnName="id")
|
2009-02-02 11:55:50 +00:00
|
|
|
*/
|
|
|
|
public $user;
|
2009-05-13 15:19:27 +00:00
|
|
|
|
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
2011-11-13 23:14:31 +01:00
|
|
|
|
2009-10-22 09:10:59 +00:00
|
|
|
public function getUser() {
|
|
|
|
return $this->user;
|
|
|
|
}
|
2009-05-13 15:19:27 +00:00
|
|
|
|
|
|
|
public function getCountry() {
|
|
|
|
return $this->country;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getZipCode() {
|
|
|
|
return $this->zip;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCity() {
|
|
|
|
return $this->city;
|
|
|
|
}
|
2011-11-13 23:14:31 +01:00
|
|
|
|
2009-10-01 12:00:14 +00:00
|
|
|
public function setUser(CmsUser $user) {
|
|
|
|
if ($this->user !== $user) {
|
|
|
|
$this->user = $user;
|
|
|
|
$user->setAddress($this);
|
|
|
|
}
|
|
|
|
}
|
2009-02-18 07:59:11 +00:00
|
|
|
}
|