123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646 |
- <?php
- /*
- * This file is part of the Sonata 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\Admin;
- use Symfony\Component\Form\Form;
- use Symfony\Component\Form\FormBuilder;
- use Symfony\Component\PropertyAccess\PropertyPath;
- use Symfony\Component\PropertyAccess\PropertyAccess;
- use Symfony\Component\Validator\ValidatorInterface;
- use Symfony\Component\Translation\TranslatorInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\Security\Acl\Model\DomainObjectInterface;
- use Sonata\AdminBundle\Form\FormMapper;
- use Sonata\AdminBundle\Datagrid\ListMapper;
- use Sonata\AdminBundle\Datagrid\DatagridMapper;
- use Sonata\AdminBundle\Show\ShowMapper;
- use Sonata\AdminBundle\Admin\Pool;
- use Sonata\AdminBundle\Validator\ErrorElement;
- use Sonata\AdminBundle\Validator\Constraints\InlineConstraint;
- use Sonata\AdminBundle\Translator\LabelTranslatorStrategyInterface;
- use Sonata\AdminBundle\Builder\FormContractorInterface;
- use Sonata\AdminBundle\Builder\ListBuilderInterface;
- use Sonata\AdminBundle\Builder\DatagridBuilderInterface;
- use Sonata\AdminBundle\Builder\ShowBuilderInterface;
- use Sonata\AdminBundle\Builder\RouteBuilderInterface;
- use Sonata\AdminBundle\Route\RouteGeneratorInterface;
- use Sonata\AdminBundle\Security\Handler\SecurityHandlerInterface;
- use Sonata\AdminBundle\Security\Handler\AclSecurityHandlerInterface;
- use Sonata\AdminBundle\Route\RouteCollection;
- use Sonata\AdminBundle\Model\ModelManagerInterface;
- use Knp\Menu\FactoryInterface as MenuFactoryInterface;
- use Knp\Menu\ItemInterface as MenuItemInterface;
- abstract class Admin implements AdminInterface, DomainObjectInterface
- {
- const CONTEXT_MENU = 'menu';
- const CONTEXT_DASHBOARD = 'dashboard';
- const CLASS_REGEX = '@([A-Za-z0-9]*)\\\(Bundle\\\)?([A-Za-z0-9]+)Bundle\\\([A-Za-z0-9].*)\\\([A-Za-z0-9]*)$@';
- /**
- * The class name managed by the admin class
- *
- * @var string
- */
- private $class;
- /**
- * The subclasses supported by the admin class
- *
- * @var array
- */
- private $subClasses = array();
- /**
- * The list collection
- *
- * @var array
- */
- private $list;
- /**
- * The list FieldDescription constructed from the configureListField method
- *
- * @var array
- */
- protected $listFieldDescriptions = array();
- private $show;
- /**
- * The show FieldDescription constructed from the configureShowFields method
- *
- * @var array
- */
- protected $showFieldDescriptions = array();
- /**
- * @var Form
- */
- private $form;
- /**
- * The list FieldDescription constructed from the configureFormField method
- *
- * @var array
- */
- protected $formFieldDescriptions = array();
- /**
- * @var \Sonata\AdminBundle\Datagrid\DatagridInterface
- */
- private $filter;
- /**
- * The filter FieldDescription constructed from the configureFilterField method
- *
- * @var array
- */
- protected $filterFieldDescriptions = array();
- /**
- * The number of result to display in the list
- *
- * @var integer
- */
- protected $maxPerPage = 25;
- /**
- * The maximum number of page numbers to display in the list
- *
- * @var integer
- */
- protected $maxPageLinks = 25;
- /**
- * The base route name used to generate the routing information
- *
- * @var string
- */
- protected $baseRouteName;
- /**
- * The base route pattern used to generate the routing information
- *
- * @var string
- */
- protected $baseRoutePattern;
- /**
- * The base name controller used to generate the routing information
- *
- * @var string
- */
- protected $baseControllerName;
- /**
- * The form group disposition
- *
- * @var array|boolean
- */
- private $formGroups = false;
- /**
- * The view group disposition
- *
- * @var array|boolean
- */
- private $showGroups = false;
- /**
- * The label class name (used in the title/breadcrumb ...)
- *
- * @var string
- */
- protected $classnameLabel;
- /**
- * The translation domain to be used to translate messages
- *
- * @var string
- */
- protected $translationDomain = 'messages';
- /**
- * Options to set to the form (ie, validation_groups)
- *
- * @var array
- */
- protected $formOptions = array();
- /**
- * Default values to the datagrid
- *
- * @var array
- */
- protected $datagridValues = array(
- '_page' => 1,
- '_per_page' => 25,
- );
- /**
- * Predefined per page options
- *
- * @var array
- */
- protected $perPageOptions = array(15, 25, 50, 100, 150, 200);
- /**
- * The code related to the admin
- *
- * @var string
- */
- protected $code;
- /**
- * The label
- *
- * @var string
- */
- protected $label;
- /**
- * Whether or not to persist the filters in the session
- *
- * @var boolean
- */
- protected $persistFilters = false;
- /**
- * Array of routes related to this admin
- *
- * @var \Sonata\AdminBundle\Route\RouteCollection
- */
- protected $routes;
- /**
- * The subject only set in edit/update/create mode
- *
- * @var object
- */
- protected $subject;
- /**
- * Define a Collection of child admin, ie /admin/order/{id}/order-element/{childId}
- *
- * @var array
- */
- protected $children = array();
- /**
- * Reference the parent collection
- *
- * @var Admin
- */
- protected $parent = null;
- /**
- * The base code route refer to the prefix used to generate the route name
- *
- * @var string
- */
- protected $baseCodeRoute = '';
- /**
- * The related field reflection, ie if OrderElement is linked to Order,
- * then the $parentReflectionProperty must be the ReflectionProperty of
- * the order (OrderElement::$order)
- *
- * @var \ReflectionProperty $parentReflectionProperty
- */
- protected $parentAssociationMapping = null;
- /**
- * Reference the parent FieldDescription related to this admin
- * only set for FieldDescription which is associated to an Sub Admin instance
- *
- * @var FieldDescriptionInterface
- */
- protected $parentFieldDescription;
- /**
- * If true then the current admin is part of the nested admin set (from the url)
- *
- * @var boolean
- */
- protected $currentChild = false;
- /**
- * The uniqid is used to avoid clashing with 2 admin related to the code
- * ie: a Block linked to a Block
- *
- * @var string
- */
- protected $uniqid;
- /**
- * The Entity or Document manager
- *
- * @var \Sonata\AdminBundle\Model\ModelManagerInterface
- */
- protected $modelManager;
- /**
- * The manager type to use for the admin
- *
- * @var string
- */
- private $managerType;
- /**
- * The current request object
- *
- * @var \Symfony\Component\HttpFoundation\Request
- */
- protected $request;
- /**
- * The translator component
- *
- * @var \Symfony\Component\Translation\TranslatorInterface
- */
- protected $translator;
- /**
- * The related form contractor
- *
- * @var \Sonata\AdminBundle\Builder\FormContractorInterface
- */
- protected $formContractor;
- /**
- * The related list builder
- *
- * @var \Sonata\AdminBundle\Builder\ListBuilderInterface
- */
- protected $listBuilder;
- /**
- * The related view builder
- *
- * @var ShowBuilderInterface
- */
- protected $showBuilder;
- /**
- * The related datagrid builder
- *
- * @var \Sonata\AdminBundle\Builder\DatagridBuilderInterface
- */
- protected $datagridBuilder;
- /**
- * @var \Sonata\AdminBundle\Builder\RouteBuilderInterface
- */
- protected $routeBuilder;
- /**
- * The datagrid instance
- *
- * @var \Sonata\AdminBundle\Datagrid\DatagridInterface
- */
- protected $datagrid;
- /**
- * The router instance
- *
- * @var RouteGeneratorInterface
- */
- protected $routeGenerator;
- /**
- * The generated breadcrumbs
- *
- * @var array
- */
- protected $breadcrumbs = array();
- protected $securityHandler = null;
- /**
- * @var \Symfony\Component\Validator\ValidatorInterface $validator
- */
- protected $validator = null;
- /**
- * The configuration pool
- *
- * @var Pool
- */
- protected $configurationPool;
- protected $menu;
- /**
- * @var \Knp\Menu\FactoryInterface
- */
- protected $menuFactory;
- protected $loaded = array(
- 'view_fields' => false,
- 'view_groups' => false,
- 'routes' => false,
- 'side_menu' => false,
- );
- protected $formTheme = array();
- protected $filterTheme = array();
- protected $templates = array();
- protected $extensions = array();
- protected $labelTranslatorStrategy;
- /**
- * Setting to true will enable preview mode for
- * the entity and show a preview button in the
- * edit/create forms
- *
- * @var boolean
- */
- protected $supportsPreviewMode = false;
- /**
- * Roles and permissions per role
- *
- * @var array [role] => array([permission], [permission])
- */
- protected $securityInformation = array();
- /**
- * {@inheritdoc}
- */
- protected function configureFormFields(FormMapper $form)
- {
- }
- /**
- * {@inheritdoc}
- */
- protected function configureListFields(ListMapper $list)
- {
- }
- /**
- * {@inheritdoc}
- */
- protected function configureDatagridFilters(DatagridMapper $filter)
- {
- }
- /**
- * @deprecated removed with Symfony 2.2
- *
- * {@inheritdoc}
- */
- protected function configureShowField(ShowMapper $show)
- {
- }
- /**
- * {@inheritdoc}
- */
- protected function configureShowFields(ShowMapper $filter)
- {
- }
- /**
- * {@inheritdoc}
- */
- protected function configureRoutes(RouteCollection $collection)
- {
- }
- /**
- * {@inheritdoc}
- */
- protected function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function getExportFormats()
- {
- return array(
- 'json', 'xml', 'csv', 'xls'
- );
- }
- /**
- * @return array
- */
- public function getExportFields()
- {
- return $this->getModelManager()->getExportFields($this->getClass());
- }
- /**
- * @return
- */
- public function getDataSourceIterator()
- {
- $datagrid = $this->getDatagrid();
- $datagrid->buildPager();
- return $this->getModelManager()->getDataSourceIterator($datagrid, $this->getExportFields());
- }
- /**
- * {@inheritdoc}
- */
- public function validate(ErrorElement $errorElement, $object)
- {
- }
- /**
- * @param string $code
- * @param string $class
- * @param string $baseControllerName
- */
- public function __construct($code, $class, $baseControllerName)
- {
- $this->code = $code;
- $this->class = $class;
- $this->baseControllerName = $baseControllerName;
- $this->predefinePerPageOptions();
- $this->datagridValues['_per_page'] = $this->maxPerPage;
- }
- /**
- * define custom variable
- */
- public function initialize()
- {
- $this->uniqid = "s".uniqid();
- if (!$this->classnameLabel) {
- $this->classnameLabel = substr($this->getClass(), strrpos($this->getClass(), '\\') + 1);
- }
- $this->baseCodeRoute = $this->getCode();
- $this->configure();
- }
- /**
- * {@inheritdoc}
- */
- public function configure()
- {
- }
- /**
- * {@inheritdoc}
- */
- public function update($object)
- {
- $this->preUpdate($object);
- $this->getModelManager()->update($object);
- $this->postUpdate($object);
- }
- /**
- * {@inheritdoc}
- */
- public function create($object)
- {
- $this->prePersist($object);
- $this->getModelManager()->create($object);
- $this->postPersist($object);
- $this->createObjectSecurity($object);
- }
- /**
- * {@inheritdoc}
- */
- public function delete($object)
- {
- $this->preRemove($object);
- $this->getSecurityHandler()->deleteObjectSecurity($this, $object);
- $this->getModelManager()->delete($object);
- $this->postRemove($object);
- }
- /**
- * {@inheritdoc}
- */
- public function preUpdate($object)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function postUpdate($object)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function prePersist($object)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function postPersist($object)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function preRemove($object)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function postRemove($object)
- {
- }
- /**
- * build the view FieldDescription array
- *
- * @return void
- */
- protected function buildShow()
- {
- if ($this->show) {
- return;
- }
- $this->show = new FieldDescriptionCollection();
- $mapper = new ShowMapper($this->showBuilder, $this->show, $this);
- $this->configureShowField($mapper); // deprecated, use configureShowFields instead
- $this->configureShowFields($mapper);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureShowFields($mapper);
- }
- }
- /**
- * build the list FieldDescription array
- *
- * @return void
- */
- protected function buildList()
- {
- if ($this->list) {
- return;
- }
- $this->list = $this->getListBuilder()->getBaseList();
- $mapper = new ListMapper($this->getListBuilder(), $this->list, $this);
- if (count($this->getBatchActions()) > 0) {
- $fieldDescription = $this->getModelManager()->getNewFieldDescriptionInstance($this->getClass(), 'batch', array(
- 'label' => 'batch',
- 'code' => '_batch',
- 'sortable' => false
- ));
- $fieldDescription->setAdmin($this);
- $fieldDescription->setTemplate($this->getTemplate('batch'));
- $mapper->add($fieldDescription, 'batch');
- }
- $this->configureListFields($mapper);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureListFields($mapper);
- }
- if ($this->hasRequest() && $this->getRequest()->isXmlHttpRequest()) {
- $fieldDescription = $this->getModelManager()->getNewFieldDescriptionInstance($this->getClass(), 'select', array(
- 'label' => false,
- 'code' => '_select',
- 'sortable' => false,
- ));
- $fieldDescription->setAdmin($this);
- $fieldDescription->setTemplate($this->getTemplate('select'));
- $mapper->add($fieldDescription, 'select');
- }
- }
- /**
- * {@inheritdoc}
- */
- public function getFilterParameters()
- {
- $parameters = array();
- // build the values array
- if ($this->hasRequest()) {
- $filters = $this->request->query->get('filter', array());
- // if persisting filters, save filters to session, or pull them out of session if no new filters set
- if ($this->persistFilters) {
- if ($filters == array() && $this->request->query->get('filters') != 'reset') {
- $filters = $this->request->getSession()->get($this->getCode().'.filter.parameters', array());
- } else {
- $this->request->getSession()->set($this->getCode().'.filter.parameters', $filters);
- }
- }
- $parameters = array_merge(
- $this->getModelManager()->getDefaultSortValues($this->getClass()),
- $this->datagridValues,
- $filters
- );
- if (!$this->determinedPerPageValue($parameters['_per_page'])) {
- $parameters['_per_page'] = $this->maxPerPage;
- }
- // always force the parent value
- if ($this->isChild() && $this->getParentAssociationMapping()) {
- $parameters[$this->getParentAssociationMapping()] = array('value' => $this->request->get($this->getParent()->getIdParameter()));
- }
- }
- return $parameters;
- }
- /**
- * {@inheritdoc}
- */
- public function buildDatagrid()
- {
- if ($this->datagrid) {
- return;
- }
- $filterParameters = $this->getFilterParameters();
- // transform _sort_by from a string to a FieldDescriptionInterface for the datagrid.
- if (isset($filterParameters['_sort_by']) && is_string($filterParameters['_sort_by'])) {
- if ($this->hasListFieldDescription($filterParameters['_sort_by'])) {
- $filterParameters['_sort_by'] = $this->getListFieldDescription($filterParameters['_sort_by']);
- } else {
- $filterParameters['_sort_by'] = $this->getModelManager()->getNewFieldDescriptionInstance(
- $this->getClass(),
- $filterParameters['_sort_by'],
- array()
- );
- $this->getListBuilder()->buildField(null, $filterParameters['_sort_by'], $this);
- }
- }
- // initialize the datagrid
- $this->datagrid = $this->getDatagridBuilder()->getBaseDatagrid($this, $filterParameters);
- $this->datagrid->getPager()->setMaxPageLinks($this->maxPageLinks);
- $mapper = new DatagridMapper($this->getDatagridBuilder(), $this->datagrid, $this);
- // build the datagrid filter
- $this->configureDatagridFilters($mapper);
- // ok, try to limit to add parent filter
- if ($this->isChild() && $this->getParentAssociationMapping() && !$mapper->has($this->getParentAssociationMapping())) {
- $mapper->add($this->getParentAssociationMapping(), null, array(
- 'field_type' => 'sonata_type_model_reference',
- 'field_options' => array(
- 'model_manager' => $this->getModelManager()
- ),
- 'operator_type' => 'hidden'
- ));
- }
- foreach ($this->getExtensions() as $extension) {
- $extension->configureDatagridFilters($mapper);
- }
- }
- /**
- * Returns the name of the parent related field, so the field can be use to set the default
- * value (ie the parent object) or to filter the object
- *
- * @return string the name of the parent related field
- */
- public function getParentAssociationMapping()
- {
- return $this->parentAssociationMapping;
- }
- /**
- * Build the form FieldDescription collection
- *
- * @return void
- */
- protected function buildForm()
- {
- if ($this->form) {
- return;
- }
- // append parent object if any
- // todo : clean the way the Admin class can retrieve set the object
- if ($this->isChild() && $this->getParentAssociationMapping()) {
- $parent = $this->getParent()->getObject($this->request->get($this->getParent()->getIdParameter()));
- $propertyAccessor = PropertyAccess::getPropertyAccessor();
- $propertyPath = new PropertyPath($this->getParentAssociationMapping());
- $object = $this->getSubject();
- $propertyAccessor->setValue($object, $propertyPath, $parent);
- }
- $this->form = $this->getFormBuilder()->getForm();
- }
- /**
- * Returns the baseRoutePattern used to generate the routing information
- *
- * @throws \RuntimeException
- *
- * @return string the baseRoutePattern used to generate the routing information
- */
- public function getBaseRoutePattern()
- {
- if (!$this->baseRoutePattern) {
- preg_match(self::CLASS_REGEX, $this->class, $matches);
- if (!$matches) {
- throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', get_class($this)));
- }
- if ($this->isChild()) { // the admin class is a child, prefix it with the parent route name
- $this->baseRoutePattern = sprintf('%s/{id}/%s',
- $this->getParent()->getBaseRoutePattern(),
- $this->urlize($matches[5], '-')
- );
- } else {
- $this->baseRoutePattern = sprintf('/%s/%s/%s',
- $this->urlize($matches[1], '-'),
- $this->urlize($matches[3], '-'),
- $this->urlize($matches[5], '-')
- );
- }
- }
- return $this->baseRoutePattern;
- }
- /**
- * Returns the baseRouteName used to generate the routing information
- *
- * @throws \RuntimeException
- *
- * @return string the baseRouteName used to generate the routing information
- */
- public function getBaseRouteName()
- {
- if (!$this->baseRouteName) {
- preg_match(self::CLASS_REGEX, $this->class , $matches);
- if (!$matches) {
- throw new \RuntimeException(sprintf('Cannot automatically determine base route name, please define a default `baseRouteName` value for the admin class `%s`', get_class($this)));
- }
- if ($this->isChild()) { // the admin class is a child, prefix it with the parent route name
- $this->baseRouteName = sprintf('%s_%s',
- $this->getParent()->getBaseRouteName(),
- $this->urlize($matches[5])
- );
- } else {
- $this->baseRouteName = sprintf('admin_%s_%s_%s',
- $this->urlize($matches[1]),
- $this->urlize($matches[3]),
- $this->urlize($matches[5])
- );
- }
- }
- return $this->baseRouteName;
- }
- /**
- * urlize the given word
- *
- * @param string $word
- * @param string $sep the separator
- *
- * @return string
- */
- public function urlize($word, $sep = '_')
- {
- return strtolower(preg_replace('/[^a-z0-9_]/i', $sep.'$1', $word));
- }
- /**
- * {@inheritdoc}
- */
- public function getClass()
- {
- if (!$this->hasActiveSubClass()) {
- $subject = $this->getSubject();
- if ($subject) {
- return get_class($subject);
- }
- return $this->class;
- }
- $subClass = $this->getRequest()->query->get('subclass');
- return $this->getSubClass($subClass);
- }
- /**
- * {@inheritdoc}
- */
- public function getSubClasses()
- {
- return $this->subClasses;
- }
- /**
- * {@inheritdoc}
- */
- public function setSubClasses(array $subClasses)
- {
- $this->subClasses = $subClasses;
- }
- /**
- * Gets the subclass corresponding to the given name
- *
- * @param string $name The name of the sub class
- *
- * @return string the subclass
- */
- protected function getSubClass($name)
- {
- if ($this->hasSubClass($name)) {
- return $this->subClasses[$name];
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function hasSubClass($name)
- {
- return isset($this->subClasses[$name]);
- }
- /**
- * {@inheritdoc}
- */
- public function hasActiveSubClass()
- {
- if ($this->request) {
- return null !== $this->getRequest()->query->get('subclass');
- }
- return false;
- }
- /**
- * {@inheritdoc}
- */
- public function getActiveSubClass()
- {
- if (!$this->hasActiveSubClass()) {
- return null;
- }
-
- return $this->getClass();
- }
-
- /**
- * {@inheritdoc}
- */
- public function getActiveSubclassCode()
- {
- if (!$this->hasActiveSubClass()) {
- return null;
- }
-
- $subClass = $this->getRequest()->query->get('subclass');
-
- if(! $this->hasSubClass($subClass)){
- return null;
- }
-
- return $subClass;
- }
-
- /**
- * Returns the list of batchs actions
- *
- * @return array the list of batchs actions
- */
- public function getBatchActions()
- {
- $actions = array();
- if ($this->hasRoute('delete') && $this->isGranted('DELETE')) {
- $actions['delete'] = array(
- 'label' => $this->trans('action_delete', array(), 'SonataAdminBundle'),
- 'ask_confirmation' => true, // by default always true
- );
- }
- return $actions;
- }
- /**
- * Returns the list of available urls
- *
- * @return \Sonata\AdminBundle\Route\RouteCollection the list of available urls
- */
- public function getRoutes()
- {
- $this->buildRoutes();
- return $this->routes;
- }
- /**
- * {@inheritdoc}
- */
- public function getRouterIdParameter()
- {
- return $this->isChild() ? '{childId}' : '{id}';
- }
- /**
- * Returns the parameter representing request id, ie: id or childId
- *
- * @return string
- */
- public function getIdParameter()
- {
- return $this->isChild() ? 'childId' : 'id';
- }
- /**
- * Build all the related urls to the current admin
- *
- * @return void
- */
- public function buildRoutes()
- {
- if ($this->loaded['routes']) {
- return;
- }
- $this->loaded['routes'] = true;
- $this->routes = new RouteCollection(
- $this->getBaseCodeRoute(),
- $this->getBaseRouteName(),
- $this->getBaseRoutePattern(),
- $this->getBaseControllerName()
- );
- $this->routeBuilder->build($this, $this->routes);
- $this->configureRoutes($this->routes);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureRoutes($this, $this->routes);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function getRoute($name)
- {
- $this->buildRoutes();
- if (!$this->routes->has($name)) {
- return false;
- }
- return $this->routes->get($name);
- }
- /**
- * @param string $name
- *
- * @return bool
- */
- public function hasRoute($name)
- {
- $this->buildRoutes();
- if (
- ! $this->isChild()
- && strpos($name, '.') !== false
- && strpos($name, $this->getBaseCodeRoute() . '|') !== 0
- && strpos($name, $this->getBaseCodeRoute() . '.') !== 0
- ) {
- $name = $this->getCode() . '|' . $name;
- }
- return $this->routes->has($name);
- }
- /**
- * {@inheritdoc}
- */
- public function generateObjectUrl($name, $object, array $parameters = array(), $absolute = false)
- {
- $parameters['id'] = $this->getUrlsafeIdentifier($object);
- return $this->generateUrl($name, $parameters, $absolute);
- }
- /**
- * {@inheritdoc}
- */
- public function generateUrl($name, array $parameters = array(), $absolute = false)
- {
- return $this->routeGenerator->generateUrl($this, $name, $parameters, $absolute);
- }
- /**
- * @param array $templates
- *
- * @return void
- */
- public function setTemplates(array $templates)
- {
- $this->templates = $templates;
- }
- /**
- * @param string $name
- * @param string $template
- *
- * @return void
- */
- public function setTemplate($name, $template)
- {
- $this->templates[$name] = $template;
- }
- /**
- * @return array
- */
- public function getTemplates()
- {
- return $this->templates;
- }
- /**
- * @param string $name
- *
- * @return null|string
- */
- public function getTemplate($name)
- {
- if (isset($this->templates[$name])) {
- return $this->templates[$name];
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function getNewInstance()
- {
- $object = $this->getModelManager()->getModelInstance($this->getClass());
- foreach($this->getExtensions() as $extension) {
- $extension->alterNewInstance($this, $object);
- }
- return $object;
- }
- /**
- * {@inheritdoc}
- */
- public function getFormBuilder()
- {
- $this->formOptions['data_class'] = $this->getClass();
- $formBuilder = $this->getFormContractor()->getFormBuilder(
- $this->getUniqid(),
- $this->formOptions
- );
- $this->defineFormBuilder($formBuilder);
- return $formBuilder;
- }
- /**
- * This method is being called by the main admin class and the child class,
- * the getFormBuilder is only call by the main admin class
- *
- * @param \Symfony\Component\Form\FormBuilder $formBuilder
- *
- * @return void
- */
- public function defineFormBuilder(FormBuilder $formBuilder)
- {
- $mapper = new FormMapper($this->getFormContractor(), $formBuilder, $this);
- $this->configureFormFields($mapper);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureFormFields($mapper);
- }
- $this->attachInlineValidator();
- }
- /**
- * Attach the inline validator to the model metadata, this must be done once per admin
- */
- protected function attachInlineValidator()
- {
- $admin = $this;
- // add the custom inline validation option
- $metadata = $this->validator->getMetadataFactory()->getMetadataFor($this->getClass());
- $metadata->addConstraint(new InlineConstraint(array(
- 'service' => $this,
- 'method' => function(ErrorElement $errorElement, $object) use ($admin) {
- /* @var \Sonata\AdminBundle\Admin\AdminInterface $admin */
- // This avoid the main validation to be cascaded to children
- // The problem occurs when a model Page has a collection of Page as property
- if ($admin->hasSubject() && spl_object_hash($object) !== spl_object_hash($admin->getSubject())) {
- return;
- }
- $admin->validate($errorElement, $object);
- foreach ($admin->getExtensions() as $extension) {
- $extension->validate($admin, $errorElement, $object);
- }
- }
- )));
- }
- /**
- * {@inheritdoc}
- */
- public function attachAdminClass(FieldDescriptionInterface $fieldDescription)
- {
- $pool = $this->getConfigurationPool();
- $adminCode = $fieldDescription->getOption('admin_code');
- if ($adminCode !== null) {
- $admin = $pool->getAdminByAdminCode($adminCode);
- } else {
- $admin = $pool->getAdminByClass($fieldDescription->getTargetEntity());
- }
- if (!$admin) {
- return;
- }
- if ($this->hasRequest()) {
- $admin->setRequest($this->getRequest());
- }
- $fieldDescription->setAssociationAdmin($admin);
- }
- /**
- * {@inheritdoc}
- */
- public function getObject($id)
- {
- return $this->getModelManager()->find($this->getClass(), $id);
- }
- /**
- * Returns a form depend on the given $object
- *
- * @return \Symfony\Component\Form\Form
- */
- public function getForm()
- {
- $this->buildForm();
- return $this->form;
- }
- /**
- * {@inheritdoc}
- */
- public function getList()
- {
- $this->buildList();
- return $this->list;
- }
- /**
- * {@inheritdoc}
- */
- public function createQuery($context = 'list')
- {
- $query = $this->getModelManager()->createQuery($this->class);
- foreach ($this->extensions as $extension) {
- $extension->configureQuery($this, $query, $context);
- }
- return $query;
- }
- /**
- * {@inheritdoc}
- */
- public function getDatagrid()
- {
- $this->buildDatagrid();
- return $this->datagrid;
- }
- /**
- * Build the side menu related to the current action
- *
- * @param string $action
- * @param \Sonata\AdminBundle\Admin\AdminInterface $childAdmin
- *
- * @return \Knp\Menu\ItemInterface|boolean
- */
- public function buildSideMenu($action, AdminInterface $childAdmin = null)
- {
- if ($this->loaded['side_menu']) {
- return;
- }
- $this->loaded['side_menu'] = true;
- $menu = $this->menuFactory->createItem('root');
- $menu->setChildrenAttribute('class', 'nav nav-list');
- $menu->setCurrentUri($this->getRequest()->getBaseUrl().$this->getRequest()->getPathInfo());
- $this->configureSideMenu($menu, $action, $childAdmin);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureSideMenu($this, $menu, $action, $childAdmin);
- }
- $this->menu = $menu;
- }
- /**
- * @param string $action
- * @param \Sonata\AdminBundle\Admin\AdminInterface $childAdmin
- *
- * @return \Knp\Menu\ItemInterface
- */
- public function getSideMenu($action, AdminInterface $childAdmin = null)
- {
- if ($this->isChild()) {
- return $this->getParent()->getSideMenu($action, $this);
- }
- $this->buildSideMenu($action, $childAdmin);
- return $this->menu;
- }
- /**
- * Returns the root code
- *
- * @return string the root code
- */
- public function getRootCode()
- {
- return $this->getRoot()->getCode();
- }
- /**
- * Returns the master admin
- *
- * @return \Sonata\AdminBundle\Admin\Admin the root admin class
- */
- public function getRoot()
- {
- $parentFieldDescription = $this->getParentFieldDescription();
- if (!$parentFieldDescription) {
- return $this;
- }
- return $parentFieldDescription->getAdmin()->getRoot();
- }
- /**
- * @param string $baseControllerName
- */
- public function setBaseControllerName($baseControllerName)
- {
- $this->baseControllerName = $baseControllerName;
- }
- /**
- * @return string
- */
- public function getBaseControllerName()
- {
- return $this->baseControllerName;
- }
- /**
- * @param string $label
- */
- public function setLabel($label)
- {
- $this->label = $label;
- }
- /**
- * @return string
- */
- public function getLabel()
- {
- return $this->label;
- }
- /**
- * @param boolean $persist
- */
- public function setPersistFilters($persist)
- {
- $this->persistFilters = $persist;
- }
- /**
- * @param int $maxPerPage
- */
- public function setMaxPerPage($maxPerPage)
- {
- $this->maxPerPage = $maxPerPage;
- }
- /**
- * @return int
- */
- public function getMaxPerPage()
- {
- return $this->maxPerPage;
- }
- /**
- * @param int $maxPageLinks
- */
- public function setMaxPageLinks($maxPageLinks)
- {
- $this->maxPageLinks = $maxPageLinks;
- }
- /**
- * @return int
- */
- public function getMaxPageLinks()
- {
- return $this->maxPageLinks;
- }
- /**
- * {@inheritdoc}
- */
- public function getFormGroups()
- {
- return $this->formGroups;
- }
- /**
- * {@inheritdoc}
- */
- public function setFormGroups(array $formGroups)
- {
- $this->formGroups = $formGroups;
- }
- /**
- * @param array $group
- * @param array $keys
- */
- public function reorderFormGroup($group, array $keys)
- {
- $formGroups = $this->getFormGroups();
- $formGroups[$group]['fields'] = array_merge(array_flip($keys), $formGroups[$group]['fields']);
- $this->setFormGroups($formGroups);
- }
- /**
- * @return array
- */
- public function getShowGroups()
- {
- return $this->showGroups;
- }
- /**
- * @param array $showGroups
- */
- public function setShowGroups(array $showGroups)
- {
- $this->showGroups = $showGroups;
- }
- /**
- * @param string $group
- * @param array $keys
- */
- public function reorderShowGroup($group, array $keys)
- {
- $showGroups = $this->getShowGroups();
- $showGroups[$group]['fields'] = array_merge(array_flip($keys), $showGroups[$group]['fields']);
- $this->setShowGroups($showGroups);
- }
- /**
- * {@inheritdoc}
- */
- public function setParentFieldDescription(FieldDescriptionInterface $parentFieldDescription)
- {
- $this->parentFieldDescription = $parentFieldDescription;
- }
- /**
- *
- * @return \Sonata\AdminBundle\Admin\FieldDescriptionInterface the parent field description
- */
- public function getParentFieldDescription()
- {
- return $this->parentFieldDescription;
- }
- /**
- * Returns true if the Admin is linked to a parent FieldDescription
- *
- * @return bool
- */
- public function hasParentFieldDescription()
- {
- return $this->parentFieldDescription instanceof FieldDescriptionInterface;
- }
- /**
- * {@inheritdoc}
- */
- public function setSubject($subject)
- {
- $this->subject = $subject;
- }
- /**
- * {@inheritdoc}
- */
- public function getSubject()
- {
- if ($this->subject === null && $this->request) {
- $id = $this->request->get($this->getIdParameter());
- if (!preg_match('#^[0-9A-Fa-f]+$#', $id)) {
- $this->subject = false;
- } else {
- $this->subject = $this->getModelManager()->find($this->class, $id);
- }
- }
- return $this->subject;
- }
- /**
- * {@inheritdoc}
- */
- public function hasSubject()
- {
- return $this->subject != null;
- }
- /**
- * build and return the collection of form FieldDescription
- *
- * @return array collection of form FieldDescription
- */
- public function getFormFieldDescriptions()
- {
- $this->buildForm();
- return $this->formFieldDescriptions;
- }
- /**
- * {@inheritdoc}
- */
- public function getFormFieldDescription($name)
- {
- return $this->hasFormFieldDescription($name) ? $this->formFieldDescriptions[$name] : null;
- }
- /**
- * Returns true if the admin has a FieldDescription with the given $name
- *
- * @param string $name
- *
- * @return bool
- */
- public function hasFormFieldDescription($name)
- {
- return array_key_exists($name, $this->formFieldDescriptions) ? true : false;
- }
- /**
- * {@inheritdoc}
- */
- public function addFormFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->formFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a FieldDescription
- *
- * @param string $name
- *
- * @return void
- */
- public function removeFormFieldDescription($name)
- {
- unset($this->formFieldDescriptions[$name]);
- }
- /**
- * build and return the collection of form FieldDescription
- *
- * @return array collection of form FieldDescription
- */
- public function getShowFieldDescriptions()
- {
- $this->buildShow();
- return $this->showFieldDescriptions;
- }
- /**
- * Returns the form FieldDescription with the given $name
- *
- * @param string $name
- *
- * @return \Sonata\AdminBundle\Admin\FieldDescriptionInterface
- */
- public function getShowFieldDescription($name)
- {
- $this->buildShow();
- return $this->hasShowFieldDescription($name) ? $this->showFieldDescriptions[$name] : null;
- }
- /**
- * Returns true if the admin has a FieldDescription with the given $name
- *
- * @param string $name
- *
- * @return bool
- */
- public function hasShowFieldDescription($name)
- {
- return array_key_exists($name, $this->showFieldDescriptions);
- }
- /**
- * {@inheritdoc}
- */
- public function addShowFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->showFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a FieldDescription
- *
- * @param string $name
- *
- * @return void
- */
- public function removeShowFieldDescription($name)
- {
- unset($this->showFieldDescriptions[$name]);
- }
- /**
- * Returns the collection of list FieldDescriptions
- *
- * @return array
- */
- public function getListFieldDescriptions()
- {
- $this->buildList();
- return $this->listFieldDescriptions;
- }
- /**
- * {@inheritdoc}
- */
- public function getListFieldDescription($name)
- {
- return $this->hasListFieldDescription($name) ? $this->listFieldDescriptions[$name] : null;
- }
- /**
- * Returns true if the list FieldDescription exists
- *
- * @param string $name
- *
- * @return bool
- */
- public function hasListFieldDescription($name)
- {
- $this->buildList();
- return array_key_exists($name, $this->listFieldDescriptions) ? true : false;
- }
- /**
- * {@inheritdoc}
- */
- public function addListFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->listFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a list FieldDescription
- *
- * @param string $name
- *
- * @return void
- */
- public function removeListFieldDescription($name)
- {
- unset($this->listFieldDescriptions[$name]);
- }
- /**
- * Returns a filter FieldDescription
- *
- * @param string $name
- *
- * @return array|null
- */
- public function getFilterFieldDescription($name)
- {
- return $this->hasFilterFieldDescription($name) ? $this->filterFieldDescriptions[$name] : null;
- }
- /**
- * Returns true if the filter FieldDescription exists
- *
- * @param string $name
- *
- * @return bool
- */
- public function hasFilterFieldDescription($name)
- {
- return array_key_exists($name, $this->filterFieldDescriptions) ? true : false;
- }
- /**
- * {@inheritdoc}
- */
- public function addFilterFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->filterFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a filter FieldDescription
- *
- * @param string $name
- */
- public function removeFilterFieldDescription($name)
- {
- unset($this->filterFieldDescriptions[$name]);
- }
- /**
- * Returns the filter FieldDescription collection
- *
- * @return FieldDescriptionInterface[]
- */
- public function getFilterFieldDescriptions()
- {
- $this->buildDatagrid();
- return $this->filterFieldDescriptions;
- }
- /**
- * {@inheritdoc}
- */
- public function addChild(AdminInterface $child)
- {
- $this->children[$child->getCode()] = $child;
- $child->setBaseCodeRoute($this->getCode().'|'.$child->getCode());
- $child->setParent($this);
- }
- /**
- * {@inheritdoc}
- */
- public function hasChild($code)
- {
- return isset($this->children[$code]);
- }
- /**
- * {@inheritdoc}
- */
- public function getChildren()
- {
- return $this->children;
- }
- /**
- * {@inheritdoc}
- */
- public function getChild($code)
- {
- return $this->hasChild($code) ? $this->children[$code] : null;
- }
- /**
- * {@inheritdoc}
- */
- public function setParent(AdminInterface $parent)
- {
- $this->parent = $parent;
- }
- /**
- * {@inheritdoc}
- */
- public function getParent()
- {
- return $this->parent;
- }
- /**
- * Returns true if the Admin class has an Parent Admin defined
- *
- * @return boolean
- */
- public function isChild()
- {
- return $this->parent instanceof AdminInterface;
- }
- /**
- * Returns true if the admin has children, false otherwise
- *
- * @return bool if the admin has children
- */
- public function hasChildren()
- {
- return count($this->children) > 0;
- }
- /**
- * {@inheritdoc}
- */
- public function setUniqid($uniqid)
- {
- $this->uniqid = $uniqid;
- }
- /**
- * Returns the uniqid
- *
- * @return integer
- */
- public function getUniqid()
- {
- return $this->uniqid;
- }
- /**
- * Returns the classname label
- *
- * @return string the classname label
- */
- public function getClassnameLabel()
- {
- return $this->classnameLabel;
- }
- /**
- * Returns an array of persistent parameters
- *
- * @return array
- */
- public function getPersistentParameters()
- {
- return array();
- }
- /**
- * @param string $name
- *
- * @return null|mixed
- */
- public function getPersistentParameter($name)
- {
- $parameters = $this->getPersistentParameters();
- return isset($parameters[$name]) ? $parameters[$name] : null;
- }
- /**
- * @param string $action
- *
- * @return array
- */
- public function getBreadcrumbs($action)
- {
- if ($this->isChild()) {
- return $this->getParent()->getBreadcrumbs($action);
- }
- $menu = $this->buildBreadcrumbs($action);
- do {
- $breadcrumbs[] = $menu;
- } while ($menu = $menu->getParent());
- $breadcrumbs = array_reverse($breadcrumbs);
- array_shift($breadcrumbs);
- return $breadcrumbs;
- }
- /**
- * Generates the breadcrumbs array
- *
- * Note: the method will be called by the top admin instance (parent => child)
- *
- * @param string $action
- * @param \Knp\Menu\ItemInterface|null $menu
- *
- * @return array
- */
- public function buildBreadcrumbs($action, MenuItemInterface $menu = null)
- {
- if (isset($this->breadcrumbs[$action])) {
- return $this->breadcrumbs[$action];
- }
- if (!$menu) {
- $menu = $this->menuFactory->createItem('root');
- $menu = $menu->addChild(
- $this->trans($this->getLabelTranslatorStrategy()->getLabel('dashboard', 'breadcrumb', 'link'), array(), 'SonataAdminBundle'),
- array('uri' => $this->routeGenerator->generate('sonata_admin_dashboard'))
- );
- }
- $menu = $menu->addChild(
- $this->trans($this->getLabelTranslatorStrategy()->getLabel(sprintf('%s_list', $this->getClassnameLabel()), 'breadcrumb', 'link')),
- array('uri' => $this->hasRoute('list') && $this->isGranted('LIST') ? $this->generateUrl('list') : null)
- );
- $childAdmin = $this->getCurrentChildAdmin();
- if ($childAdmin) {
- $id = $this->request->get($this->getIdParameter());
- $menu = $menu->addChild(
- $this->toString($this->getSubject()),
- array('uri' => $this->hasRoute('edit') && $this->isGranted('EDIT') ? $this->generateUrl('edit', array('id' => $id)) : null)
- );
- return $childAdmin->buildBreadcrumbs($action, $menu);
- } elseif ($this->isChild()) {
- if ($action == 'list') {
- $menu->setUri(false);
- } elseif ($action != 'create' && $this->hasSubject()) {
- $menu = $menu->addChild($this->toString($this->getSubject()));
- } else {
- $menu = $menu->addChild(
- $this->trans($this->getLabelTranslatorStrategy()->getLabel(sprintf('%s_%s', $this->getClassnameLabel(), $action), 'breadcrumb', 'link'))
- );
- }
- } elseif ($action != 'list' && $this->hasSubject()) {
- $menu = $menu->addChild($this->toString($this->getSubject()));
- } elseif ($action != 'list') {
- $menu = $menu->addChild(
- $this->trans($this->getLabelTranslatorStrategy()->getLabel(sprintf('%s_%s', $this->getClassnameLabel(), $action), 'breadcrumb', 'link'))
- );
- } else {
- $menu->getBreadcrumbsArray();
- }
- return $this->breadcrumbs[$action] = $menu;
- }
- /**
- * set the current child status
- *
- * @param boolean $currentChild
- *
- * @return void
- */
- public function setCurrentChild($currentChild)
- {
- $this->currentChild = $currentChild;
- }
- /**
- * Returns the current child status
- *
- * @return bool
- */
- public function getCurrentChild()
- {
- return $this->currentChild;
- }
- /**
- * Returns the current child admin instance
- *
- * @return \Sonata\AdminBundle\Admin\AdminInterface|null the current child admin instance
- */
- public function getCurrentChildAdmin()
- {
- foreach ($this->children as $children) {
- if ($children->getCurrentChild()) {
- return $children;
- }
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function trans($id, array $parameters = array(), $domain = null, $locale = null)
- {
- $domain = $domain ?: $this->translationDomain;
- if (!$this->translator) {
- return $id;
- }
- return $this->translator->trans($id, $parameters, $domain, $locale);
- }
- /**
- * translate a message id
- *
- * @param string $id
- * @param integer $count
- * @param array $parameters
- * @param null $domain
- * @param null $locale
- *
- * @return string the translated string
- */
- public function transChoice($id, $count, array $parameters = array(), $domain = null, $locale = null)
- {
- $domain = $domain ?: $this->translationDomain;
- if (!$this->translator) {
- return $id;
- }
- return $this->translator->transChoice($id, $count, $parameters, $domain, $locale);
- }
- /**
- * {@inheritdoc}
- */
- public function setTranslationDomain($translationDomain)
- {
- $this->translationDomain = $translationDomain;
- }
- /**
- * {@inheritdoc}
- */
- public function getTranslationDomain()
- {
- return $this->translationDomain;
- }
- /**
- * {@inheritdoc}
- */
- public function setTranslator(TranslatorInterface $translator)
- {
- $this->translator = $translator;
- }
- /**
- * @return \Symfony\Component\Translation\TranslatorInterface
- */
- public function getTranslator()
- {
- return $this->translator;
- }
- /**
- * {@inheritdoc}
- */
- public function setRequest(Request $request)
- {
- $this->request = $request;
- foreach ($this->getChildren() as $children) {
- $children->setRequest($request);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function getRequest()
- {
- if (!$this->request) {
- throw new \RuntimeException('The Request object has not been set');
- }
- return $this->request;
- }
- /**
- * {@inheritdoc}
- */
- public function hasRequest()
- {
- return $this->request !== null;
- }
- /**
- * {@inheritdoc}
- */
- public function setFormContractor(FormContractorInterface $formBuilder)
- {
- $this->formContractor = $formBuilder;
- }
- /**
- * @return \Sonata\AdminBundle\Builder\FormContractorInterface
- */
- public function getFormContractor()
- {
- return $this->formContractor;
- }
- /**
- * {@inheritdoc}
- */
- public function setDatagridBuilder(DatagridBuilderInterface $datagridBuilder)
- {
- $this->datagridBuilder = $datagridBuilder;
- }
- /**
- * @return \Sonata\AdminBundle\Builder\DatagridBuilderInterface
- */
- public function getDatagridBuilder()
- {
- return $this->datagridBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function setListBuilder(ListBuilderInterface $listBuilder)
- {
- $this->listBuilder = $listBuilder;
- }
- /**
- * @return \Sonata\AdminBundle\Builder\ListBuilderInterface
- */
- public function getListBuilder()
- {
- return $this->listBuilder;
- }
- /**
- * @param \Sonata\AdminBundle\Builder\ShowBuilderInterface $showBuilder
- *
- * @return void
- */
- public function setShowBuilder(ShowBuilderInterface $showBuilder)
- {
- $this->showBuilder = $showBuilder;
- }
- /**
- * @return \Sonata\AdminBundle\Builder\ShowBuilderInterface
- */
- public function getShowBuilder()
- {
- return $this->showBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function setConfigurationPool(Pool $configurationPool)
- {
- $this->configurationPool = $configurationPool;
- }
- /**
- * @return Pool
- */
- public function getConfigurationPool()
- {
- return $this->configurationPool;
- }
- /**
- * {@inheritdoc}
- */
- public function setRouteGenerator(RouteGeneratorInterface $routeGenerator)
- {
- $this->routeGenerator = $routeGenerator;
- }
- /**
- * @return \Sonata\AdminBundle\Route\RouteGeneratorInterface
- */
- public function getRouteGenerator()
- {
- return $this->routeGenerator;
- }
- /**
- * {@inheritdoc}
- */
- public function getCode()
- {
- return $this->code;
- }
- /**
- * @param string $baseCodeRoute
- */
- public function setBaseCodeRoute($baseCodeRoute)
- {
- $this->baseCodeRoute = $baseCodeRoute;
- }
- /**
- * @return string
- */
- public function getBaseCodeRoute()
- {
- return $this->baseCodeRoute;
- }
- /**
- * {@inheritdoc}
- */
- public function getModelManager()
- {
- return $this->modelManager;
- }
- /**
- * @param \Sonata\AdminBundle\Model\ModelManagerInterface $modelManager
- */
- public function setModelManager(ModelManagerInterface $modelManager)
- {
- $this->modelManager = $modelManager;
- }
- /**
- * {@inheritdoc}
- */
- public function getManagerType()
- {
- return $this->managerType;
- }
- /**
- * @param string $type
- */
- public function setManagerType($type)
- {
- $this->managerType = $type;
- }
- /**
- * {@inheritdoc}
- */
- public function getObjectIdentifier()
- {
- return $this->getCode();
- }
- /**
- * Set the roles and permissions per role
- *
- * @param array $information
- */
- public function setSecurityInformation(array $information)
- {
- $this->securityInformation = $information;
- }
- /**
- * {@inheritdoc}
- */
- public function getSecurityInformation()
- {
- return $this->securityInformation;
- }
- /**
- * Return the list of permissions the user should have in order to display the admin
- *
- * @param string $context
- *
- * @return array
- */
- public function getPermissionsShow($context)
- {
- switch ($context) {
- case self::CONTEXT_DASHBOARD:
- case self::CONTEXT_MENU:
- default:
- return array('LIST');
- }
- }
- /**
- * {@inheritdoc}
- */
- public function showIn($context)
- {
- switch ($context) {
- case self::CONTEXT_DASHBOARD:
- case self::CONTEXT_MENU:
- default:
- return $this->isGranted($this->getPermissionsShow($context));
- }
- }
- /**
- * {@inheritdoc}
- */
- public function createObjectSecurity($object)
- {
- $this->getSecurityHandler()->createObjectSecurity($this, $object);
- }
- /**
- * {@inheritdoc}
- */
- public function setSecurityHandler(SecurityHandlerInterface $securityHandler)
- {
- $this->securityHandler = $securityHandler;
- }
- /**
- * {@inheritdoc}
- */
- public function getSecurityHandler()
- {
- return $this->securityHandler;
- }
- /**
- * {@inheritdoc}
- */
- public function isGranted($name, $object = null)
- {
- return $this->securityHandler->isGranted($this, $name, $object ?: $this);
- }
- /**
- * {@inheritdoc}
- */
- public function getUrlsafeIdentifier($entity)
- {
- return $this->getModelManager()->getUrlsafeIdentifier($entity);
- }
- /**
- * {@inheritdoc}
- */
- public function getNormalizedIdentifier($entity)
- {
- return $this->getModelManager()->getNormalizedIdentifier($entity);
- }
- /**
- * {@inheritdoc}
- */
- public function id($entity)
- {
- return $this->getNormalizedIdentifier($entity);
- }
- /**
- * {@inheritdoc}
- */
- public function setValidator(ValidatorInterface $validator)
- {
- $this->validator = $validator;
- }
- /**
- * {@inheritdoc}
- */
- public function getValidator()
- {
- return $this->validator;
- }
- /**
- * {@inheritdoc}
- */
- public function getShow()
- {
- $this->buildShow();
- return $this->show;
- }
- /**
- * {@inheritdoc}
- */
- public function setFormTheme(array $formTheme)
- {
- $this->formTheme = $formTheme;
- }
- /**
- * {@inheritdoc}
- */
- public function getFormTheme()
- {
- return $this->formTheme;
- }
- /**
- * {@inheritdoc}
- */
- public function setFilterTheme(array $filterTheme)
- {
- $this->filterTheme = $filterTheme;
- }
- /**
- * {@inheritdoc}
- */
- public function getFilterTheme()
- {
- return $this->filterTheme;
- }
- /**
- * {@inheritdoc}
- */
- public function addExtension(AdminExtensionInterface $extension)
- {
- $this->extensions[] = $extension;
- }
- /**
- * {@inheritdoc}
- */
- public function getExtensions()
- {
- return $this->extensions;
- }
- /**
- * {@inheritdoc}
- */
- public function setMenuFactory(MenuFactoryInterface $menuFactory)
- {
- $this->menuFactory = $menuFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function getMenuFactory()
- {
- return $this->menuFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function setRouteBuilder(RouteBuilderInterface $routeBuilder)
- {
- $this->routeBuilder = $routeBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function getRouteBuilder()
- {
- return $this->routeBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function toString($object)
- {
- if (!is_object($object)) {
- return '';
- }
- if (method_exists($object, '__toString') && null !== $object->__toString()) {
- return (string) $object;
- }
- return sprintf("%s:%s", get_class($object), spl_object_hash($object));
- }
- /**
- * {@inheritdoc}
- */
- public function setLabelTranslatorStrategy(LabelTranslatorStrategyInterface $labelTranslatorStrategy)
- {
- $this->labelTranslatorStrategy = $labelTranslatorStrategy;
- }
- /**
- * {@inheritdoc}
- */
- public function getLabelTranslatorStrategy()
- {
- return $this->labelTranslatorStrategy;
- }
- /**
- * Returning true will enable preview mode for
- * the target entity and show a preview button
- * when editing/creating an entity
- *
- * @return boolean
- */
- public function supportsPreviewMode()
- {
- return $this->supportsPreviewMode;
- }
- /**
- * Set custom per page options
- *
- * @param $options
- */
- public function setPerPageOptions($options)
- {
- $this->perPageOptions = $options;
- }
- /**
- * Returns predefined per page options
- *
- * @return array
- */
- public function getPerPageOptions()
- {
- return $this->perPageOptions;
- }
- /**
- * Returns true if the per page value is allowed, false otherwise
- *
- * @param $per_page
- * @return bool
- */
- public function determinedPerPageValue($per_page)
- {
- return in_array($per_page, $this->perPageOptions);
- }
- /**
- * Predefine per page options
- */
- protected function predefinePerPageOptions()
- {
- array_unshift($this->perPageOptions, $this->maxPerPage);
- $this->perPageOptions = array_unique($this->perPageOptions);
- sort($this->perPageOptions);
- }
- /**
- * {@inheritdoc}
- */
- public function isAclEnabled()
- {
- return $this->getSecurityHandler() instanceof AclSecurityHandlerInterface;
- }
- }
|