loremipsum / route-generator-bundle
Symfony bundle to create routes to resources.
Installs: 88
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.0
- symfony/framework-bundle: ^3.4 || ^4.0
- symfony/http-foundation: ^3.4 || ^4.0
README
Symfony bundle to create routes to resources.
Example route handler
<?php namespace App\RouteHandlers; use App\Entity\User; use LoremIpsum\RouteGeneratorBundle\Model\RouteHandlerInterface; use Symfony\Component\Routing\RouterInterface; class DefaultRouteHandler implements RouteHandlerInterface { protected $router; public function __construct(RouterInterface $router) { $this->router = $router; } public function handle($value, $view = null, $context = []) { if ($value instanceof User) { return $this->router->generate('userView', array_merge(['user' => $value->getId()], $context)); } return null; } }
Example usage
{% if <entity> is routable %}
<a href="{{ pathTo(<entity>) }}">{{ <entity> }}</a>
{% else %}
{{ <entity> }}
{% endif %}