1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace Sluggable\Fixture;
- use Gedmo\Sluggable\Sluggable;
- /**
- * @Entity
- */
- class ConfigurationArticle implements Sluggable
- {
- /** @Id @GeneratedValue @Column(type="integer") */
- private $id;
- /**
- * @gedmo:Sluggable
- * @Column(name="title", type="string", length=64)
- */
- private $title;
- /**
- * @gedmo:Sluggable
- * @Column(name="code", type="string", length=16)
- */
- private $code;
-
- /**
- * @gedmo:Slug(updatable=false, unique=false)
- * @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 getSlug()
- {
- return $this->slug;
- }
- }
|