12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Sluggable\Fixture;
- use Gedmo\Sluggable\Sluggable;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class ConfigurationArticle implements Sluggable
- {
- /** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") */
- private $id;
- /**
- * @ORM\Column(name="title", type="string", length=64)
- */
- private $title;
- /**
- * @ORM\Column(name="code", type="string", length=16)
- */
- private $code;
- /**
- * @Gedmo\Slug(updatable=false, unique=false, unique_base=null, fields={"title", "code"})
- * @ORM\Column(name="slug", type="string", length=32)
- */
- 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 setSlug($slug)
- {
- $this->slug = $slug;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|