123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace Sluggable\Fixture\Document;
- use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
- use Gedmo\Mapping\Annotation as Gedmo;
- /**
- * @ODM\Document(collection="articles")
- */
- class Article
- {
- /** @ODM\Id */
- private $id;
- /**
- * @Gedmo\Sluggable
- * @ODM\String
- */
- private $title;
- /**
- * @Gedmo\Sluggable
- * @ODM\String
- */
- private $code;
- /**
- * @Gedmo\Slug(handlers={
- * @Gedmo\SlugHandler(class="Gedmo\Sluggable\Handler\InversedRelativeSlugHandler", options={
- * @Gedmo\SlugHandlerOption(name="relationClass", value="Sluggable\Fixture\Document\RelativeSlug"),
- * @Gedmo\SlugHandlerOption(name="mappedBy", value="article"),
- * @Gedmo\SlugHandlerOption(name="inverseSlugField", value="alias")
- * })
- * }, separator="-", updatable=true)
- * @ODM\String
- */
- private $slug;
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|