12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Tree\Fixture;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity(repositoryClass="Gedmo\Tree\Entity\Repository\NestedTreeRepository")
- */
- class Node extends BaseNode
- {
- /**
- * @Gedmo\Translatable
- * @ORM\Column(name="title", type="string", length=64)
- */
- private $title;
- /**
- * @Gedmo\Translatable
- * @Gedmo\Slug(fields={"title"})
- * @ORM\Column(name="slug", type="string", length=128)
- */
- private $slug;
- public function getSlug()
- {
- return $this->slug;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|