<?php /* * This file is part of the Sonata Project package. * * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\AdminBundle\Route; use Sonata\AdminBundle\Admin\AdminInterface; use Sonata\AdminBundle\Builder\RouteBuilderInterface; use Sonata\AdminBundle\Model\AuditManagerInterface; /** * @author Thomas Rabaix <thomas.rabaix@sonata-project.org> */ class QueryStringBuilder implements RouteBuilderInterface { /** * @var AuditManagerInterface */ protected $manager; /** * @param AuditManagerInterface $manager */ public function __construct(AuditManagerInterface $manager) { $this->manager = $manager; } /** * @param AdminInterface $admin * @param RouteCollection $collection */ public function build(AdminInterface $admin, RouteCollection $collection) { $collection->add('list'); $collection->add('create'); $collection->add('batch'); $collection->add('edit'); $collection->add('delete'); $collection->add('show'); $collection->add('export'); if ($this->manager->hasReader($admin->getClass())) { $collection->add('history', '/audit-history'); $collection->add('history_view_revision', '/audit-history-view'); $collection->add('history_compare_revisions', '/audit-history-compare'); } if ($admin->isAclEnabled()) { $collection->add('acl', $admin->getRouterIdParameter().'/acl'); } // an admin can have only one level of nested child if ($admin->getParent()) { return; } // add children urls foreach ($admin->getChildren() as $children) { $collection->addCollection($children->getRoutes()); } } }