ECommerceCategory.php 2.53 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

namespace Doctrine\Tests\Models\ECommerce;

/**
 * ECommerceCategory
 * Represents a tag applied on particular products.
 *
 * @author Giorgio Sironi
 * @Entity
 * @Table(name="ecommerce_categories")
 */
class ECommerceCategory
{
    /**
     * @Column(type="integer")
     * @Id
     * @GeneratedValue(strategy="AUTO")
     */
20
    private $id;
21 22 23 24

    /**
     * @Column(type="string", length=50)
     */
25
    private $name;
26 27 28 29

    /**
     * @ManyToMany(targetEntity="ECommerceProduct", mappedBy="categories")
     */
30 31 32 33 34 35 36 37 38 39 40 41
    private $products;

    /**
     * @OneToMany(targetEntity="ECommerceCategory", mappedBy="parent", cascade={"save"})
     */
    private $children;

    /**
     * @ManyToOne(targetEntity="ECommerceCategory")
     * @JoinColumn(name="parent_id", referencedColumnName="id")
     */
    private $parent;
42 43 44 45

    public function __construct()
    {
        $this->products = new \Doctrine\Common\Collections\Collection();
46
        $this->children = new \Doctrine\Common\Collections\Collection();
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    }

    public function getId()
    {
        return $this->id;
    }

    public function getName()
    {
        return $this->name;
    }

    public function setName($name)
    {
        $this->name = $name;
    }

    public function addProduct(ECommerceProduct $product)
    {
        if (!$this->products->contains($product)) {
            $this->products[] = $product;
            $product->addCategory($this);
        }
    }

    public function removeProduct(ECommerceProduct $product)
    {
74 75 76
        $removed = $this->products->removeElement($product);
        if ($removed !== null) {
            $removed->removeCategory($this);
77 78 79 80 81 82 83
        }
    }

    public function getProducts()
    {
        return $this->products;
    }
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

    private function setParent(ECommerceCategory $parent)
    {
        $this->parent = $parent;
    }

    public function getChildren()
    {
        return $this->children;
    }

    public function getParent()
    {
        return $this->parent;
    }

    public function addChild(ECommerceCategory $child)
    {
        $this->children[] = $child;
        $child->setParent($this);
    }

    /** does not set the owning side. */
    public function brokenAddChild(ECommerceCategory $child)
    {
        $this->children[] = $child;
    }


    public function removeChild(ECommerceCategory $child)
    {
        $removed = $this->children->removeElement($child);
        if ($removed !== null) {
            $removed->removeParent();
        }
    }

    private function removeParent()
    {
        $this->parent = null;
    }
125
}