lib/boab/cms-bundle/src/Entity/TermRoute.php line 13

Open in your IDE?
  1. <?php
  2. namespace Boab\CmsBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * TaxonomyRoute
  6.  * 
  7.  * @ORM\Table(name="route_term")  
  8.  * @ORM\Entity(repositoryClass="Boab\CmsBundle\Repository\RouteRepository")
  9.  */
  10. class TermRoute extends PostRoute
  11. {
  12.     const DEFAULT_CONTROLLER 'content_controller:categoryAction';  
  13.     public function setPath($path)
  14.     {
  15.         return parent::setPath($path);
  16.     }
  17.     
  18.     public function getController()
  19.     {
  20.         return self::DEFAULT_CONTROLLER;
  21.     }
  22.     public function setDefaults( array $defauts=[])
  23.     {
  24.         $defauts = [
  25.             '_controller' => self::DEFAULT_CONTROLLER,
  26.             '_title' => $this->getTitle(),
  27.         ];
  28.         $this->addDefaults($defauts);
  29.     }    
  30. }