1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Sluggable\Fixture\Handler\People;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class Person
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @ORM\Column(length=64)
- */
- private $name;
- /**
- * @Gedmo\Slug(handlers={
- * @Gedmo\SlugHandler(class="Gedmo\Sluggable\Handler\RelativeSlugHandler", options={
- * @Gedmo\SlugHandlerOption(name="relationField", value="occupation"),
- * @Gedmo\SlugHandlerOption(name="relationSlugField", value="slug"),
- * @Gedmo\SlugHandlerOption(name="separator", value="/")
- * })
- * }, separator="-", updatable=true, fields={"name"})
- * @ORM\Column(name="slug", type="string", length=64, unique=true)
- */
- private $slug;
- /**
- * @ORM\ManyToOne(targetEntity="Occupation")
- */
- private $occupation;
- public function setOccupation(Occupation $occupation = null)
- {
- $this->occupation = $occupation;
- }
- public function getOccupation()
- {
- return $this->occupation;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|