123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129 |
- <?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\Admin;
- use Doctrine\Common\Util\ClassUtils;
- use Knp\Menu\FactoryInterface as MenuFactoryInterface;
- use Knp\Menu\ItemInterface;
- use Knp\Menu\ItemInterface as MenuItemInterface;
- use Sonata\AdminBundle\Builder\DatagridBuilderInterface;
- use Sonata\AdminBundle\Builder\FormContractorInterface;
- use Sonata\AdminBundle\Builder\ListBuilderInterface;
- use Sonata\AdminBundle\Builder\RouteBuilderInterface;
- use Sonata\AdminBundle\Builder\ShowBuilderInterface;
- use Sonata\AdminBundle\Datagrid\DatagridInterface;
- use Sonata\AdminBundle\Datagrid\DatagridMapper;
- use Sonata\AdminBundle\Datagrid\ListMapper;
- use Sonata\AdminBundle\Datagrid\Pager;
- use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
- use Sonata\AdminBundle\Form\FormMapper;
- use Sonata\AdminBundle\Model\ModelManagerInterface;
- use Sonata\AdminBundle\Route\RouteCollection;
- use Sonata\AdminBundle\Route\RouteGeneratorInterface;
- use Sonata\AdminBundle\Security\Handler\AclSecurityHandlerInterface;
- use Sonata\AdminBundle\Security\Handler\SecurityHandlerInterface;
- use Sonata\AdminBundle\Show\ShowMapper;
- use Sonata\AdminBundle\Translator\LabelTranslatorStrategyInterface;
- use Sonata\CoreBundle\Model\Metadata;
- use Sonata\CoreBundle\Validator\Constraints\InlineConstraint;
- use Sonata\CoreBundle\Validator\ErrorElement;
- use Symfony\Component\Form\Form;
- use Symfony\Component\Form\FormBuilderInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\PropertyAccess\PropertyPath;
- use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
- use Symfony\Component\Security\Acl\Model\DomainObjectInterface;
- use Symfony\Component\Security\Core\Exception\AccessDeniedException;
- use Symfony\Component\Translation\TranslatorInterface;
- use Symfony\Component\Validator\Validator\ValidatorInterface;
- use Symfony\Component\Validator\ValidatorInterface as LegacyValidatorInterface;
- /**
- * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
- */
- abstract class AbstractAdmin implements AdminInterface, DomainObjectInterface
- {
- const CONTEXT_MENU = 'menu';
- const CONTEXT_DASHBOARD = 'dashboard';
- const CLASS_REGEX =
- '@
- (?:([A-Za-z0-9]*)\\\)? # vendor name / app name
- (Bundle\\\)? # optional bundle directory
- ([A-Za-z0-9]+?)(?:Bundle)?\\\ # bundle name, with optional suffix
- (
- Entity|Document|Model|PHPCR|CouchDocument|Phpcr|
- Doctrine\\\Orm|Doctrine\\\Phpcr|Doctrine\\\MongoDB|Doctrine\\\CouchDB
- )\\\(.*)@x';
- /**
- * The list FieldDescription constructed from the configureListField method.
- *
- * @var array
- */
- protected $listFieldDescriptions = array();
- /**
- * The show FieldDescription constructed from the configureShowFields method.
- *
- * @var array
- */
- protected $showFieldDescriptions = array();
- /**
- * The list FieldDescription constructed from the configureFormField method.
- *
- * @var array
- */
- protected $formFieldDescriptions = array();
- /**
- * The filter FieldDescription constructed from the configureFilterField method.
- *
- * @var array
- */
- protected $filterFieldDescriptions = array();
- /**
- * The number of result to display in the list.
- *
- * @var int
- */
- protected $maxPerPage = 32;
- /**
- * The maximum number of page numbers to display in the list.
- *
- * @var int
- */
- 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 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' => 32,
- );
- /**
- * Predefined per page options.
- *
- * @var array
- */
- protected $perPageOptions = array(16, 32, 64, 128, 192);
- /**
- * Pager type.
- *
- * @var string
- */
- protected $pagerType = Pager::TYPE_DEFAULT;
- /**
- * 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 bool
- */
- protected $persistFilters = false;
- /**
- * Array of routes related to this admin.
- *
- * @var 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 AdminInterface|null
- */
- 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
- */
- 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 bool
- */
- 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 ModelManagerInterface
- */
- protected $modelManager;
- /**
- * 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 FormContractorInterface
- */
- protected $formContractor;
- /**
- * The related list builder.
- *
- * @var ListBuilderInterface
- */
- protected $listBuilder;
- /**
- * The related view builder.
- *
- * @var ShowBuilderInterface
- */
- protected $showBuilder;
- /**
- * The related datagrid builder.
- *
- * @var DatagridBuilderInterface
- */
- protected $datagridBuilder;
- /**
- * @var 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();
- /**
- * @var SecurityHandlerInterface
- */
- protected $securityHandler = null;
- /**
- * @var ValidatorInterface|LegacyValidatorInterface
- */
- protected $validator = null;
- /**
- * The configuration pool.
- *
- * @var Pool
- */
- protected $configurationPool;
- /**
- * @var MenuItemInterface
- */
- protected $menu;
- /**
- * @var MenuFactoryInterface
- */
- protected $menuFactory;
- /**
- * @var array
- */
- protected $loaded = array(
- 'view_fields' => false,
- 'view_groups' => false,
- 'routes' => false,
- 'tab_menu' => false,
- );
- /**
- * @var array
- */
- protected $formTheme = array();
- /**
- * @var array
- */
- protected $filterTheme = array();
- /**
- * @var array
- */
- protected $templates = array();
- /**
- * @var AdminExtensionInterface[]
- */
- protected $extensions = array();
- /**
- * @var LabelTranslatorStrategyInterface
- */
- protected $labelTranslatorStrategy;
- /**
- * Setting to true will enable preview mode for
- * the entity and show a preview button in the
- * edit/create forms.
- *
- * @var bool
- */
- protected $supportsPreviewMode = false;
- /**
- * Roles and permissions per role.
- *
- * @var array [role] => array([permission], [permission])
- */
- protected $securityInformation = array();
- protected $cacheIsGranted = array();
- protected $listModes = array(
- 'list' => array(
- 'class' => 'fa fa-list fa-fw',
- ),
- 'mosaic' => array(
- 'class' => 'fa fa-th-large fa-fw',
- ),
- );
- /**
- * The Access mapping.
- *
- * @var array
- */
- protected $accessMapping = array();
- /**
- * 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;
- /**
- * @var FieldDescriptionCollection
- */
- private $show;
- /**
- * @var Form
- */
- private $form;
- /**
- * @var DatagridInterface
- */
- private $filter;
- /**
- * The cached base route name.
- *
- * @var string
- */
- private $cachedBaseRouteName;
- /**
- * The cached base route pattern.
- *
- * @var string
- */
- private $cachedBaseRoutePattern;
- /**
- * The form group disposition.
- *
- * @var array|bool
- */
- private $formGroups = false;
- /**
- * The form tabs disposition.
- *
- * @var array|bool
- */
- private $formTabs = false;
- /**
- * The view group disposition.
- *
- * @var array|bool
- */
- private $showGroups = false;
- /**
- * The view tab disposition.
- *
- * @var array|bool
- */
- private $showTabs = false;
- /**
- * The manager type to use for the admin.
- *
- * @var string
- */
- private $managerType;
- /**
- * @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;
- }
- /**
- * {@inheritdoc}
- */
- public function getExportFormats()
- {
- return array(
- 'json', 'xml', 'csv', 'xls',
- );
- }
- /**
- * @return array
- */
- public function getExportFields()
- {
- $fields = $this->getModelManager()->getExportFields($this->getClass());
- foreach ($this->getExtensions() as $extension) {
- if (method_exists($extension, 'configureExportFields')) {
- $fields = $extension->configureExportFields($this, $fields);
- }
- }
- return $fields;
- }
- /**
- * {@inheritdoc}
- */
- public function getDataSourceIterator()
- {
- $datagrid = $this->getDatagrid();
- $datagrid->buildPager();
- return $this->getModelManager()->getDataSourceIterator($datagrid, $this->getExportFields());
- }
- /**
- * {@inheritdoc}
- */
- public function validate(ErrorElement $errorElement, $object)
- {
- }
- /**
- * define custom variable.
- */
- public function initialize()
- {
- 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);
- foreach ($this->extensions as $extension) {
- $extension->preUpdate($this, $object);
- }
- $result = $this->getModelManager()->update($object);
- // BC compatibility
- if (null !== $result) {
- $object = $result;
- }
- $this->postUpdate($object);
- foreach ($this->extensions as $extension) {
- $extension->postUpdate($this, $object);
- }
- return $object;
- }
- /**
- * {@inheritdoc}
- */
- public function create($object)
- {
- $this->prePersist($object);
- foreach ($this->extensions as $extension) {
- $extension->prePersist($this, $object);
- }
- $result = $this->getModelManager()->create($object);
- // BC compatibility
- if (null !== $result) {
- $object = $result;
- }
- $this->postPersist($object);
- foreach ($this->extensions as $extension) {
- $extension->postPersist($this, $object);
- }
- $this->createObjectSecurity($object);
- return $object;
- }
- /**
- * {@inheritdoc}
- */
- public function delete($object)
- {
- $this->preRemove($object);
- foreach ($this->extensions as $extension) {
- $extension->preRemove($this, $object);
- }
- $this->getSecurityHandler()->deleteObjectSecurity($this, $object);
- $this->getModelManager()->delete($object);
- $this->postRemove($object);
- foreach ($this->extensions as $extension) {
- $extension->postRemove($this, $object);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function preValidate($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)
- {
- }
- /**
- * {@inheritdoc}
- */
- public function preBatchAction($actionName, ProxyQueryInterface $query, array &$idx, $allElements)
- {
- }
- /**
- * {@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()) {
- $name = str_replace('.', '__', $this->getParentAssociationMapping());
- $parameters[$name] = 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(
- 'show_filter' => false,
- 'label' => false,
- 'field_type' => 'sonata_type_model_hidden',
- 'field_options' => array(
- 'model_manager' => $this->getModelManager(),
- ),
- 'operator_type' => 'hidden',
- ), null, null, array(
- 'admin_code' => $this->getParent()->getCode(),
- ));
- }
- 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;
- }
- /**
- * 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 (null !== $this->cachedBaseRoutePattern) {
- return $this->cachedBaseRoutePattern;
- }
- if ($this->isChild()) { // the admin class is a child, prefix it with the parent route pattern
- 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)));
- }
- }
- $this->cachedBaseRoutePattern = sprintf('%s/{id}/%s',
- $this->getParent()->getBaseRoutePattern(),
- $this->baseRoutePattern ?: $this->urlize($matches[5], '-')
- );
- } elseif ($this->baseRoutePattern) {
- $this->cachedBaseRoutePattern = $this->baseRoutePattern;
- } else {
- 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)));
- }
- $this->cachedBaseRoutePattern = sprintf('/%s%s/%s',
- empty($matches[1]) ? '' : $this->urlize($matches[1], '-').'/',
- $this->urlize($matches[3], '-'),
- $this->urlize($matches[5], '-')
- );
- }
- return $this->cachedBaseRoutePattern;
- }
- /**
- * 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 (null !== $this->cachedBaseRouteName) {
- return $this->cachedBaseRouteName;
- }
- if ($this->isChild()) { // the admin class is a child, prefix it with the parent route name
- 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)));
- }
- }
- $this->cachedBaseRouteName = sprintf('%s_%s',
- $this->getParent()->getBaseRouteName(),
- $this->baseRouteName ?: $this->urlize($matches[5])
- );
- } elseif ($this->baseRouteName) {
- $this->cachedBaseRouteName = $this->baseRouteName;
- } else {
- 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)));
- }
- $this->cachedBaseRouteName = sprintf('admin_%s%s_%s',
- empty($matches[1]) ? '' : $this->urlize($matches[1]).'_',
- $this->urlize($matches[3]),
- $this->urlize($matches[5])
- );
- }
- return $this->cachedBaseRouteName;
- }
- /**
- * 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()
- {
- // see https://github.com/sonata-project/SonataCoreBundle/commit/247eeb0a7ca7211142e101754769d70bc402a5b4
- if ($this->hasSubject() && is_object($this->getSubject())) {
- return ClassUtils::getClass($this->getSubject());
- }
- if (!$this->hasActiveSubClass()) {
- if (count($this->getSubClasses()) > 0) {
- $subject = $this->getSubject();
- if ($subject && is_object($subject)) {
- return ClassUtils::getClass($subject);
- }
- }
- return $this->class;
- }
- if ($this->getParentFieldDescription() && $this->hasActiveSubClass()) {
- throw new \RuntimeException('Feature not implemented: an embedded admin cannot have subclass');
- }
- $subClass = $this->getRequest()->query->get('subclass');
- return $this->getSubClass($subClass);
- }
- /**
- * {@inheritdoc}
- */
- public function getSubClasses()
- {
- return $this->subClasses;
- }
- /**
- * {@inheritdoc}
- */
- public function addSubClass($subClass)
- {
- if (!in_array($subClass, $this->subClasses)) {
- $this->subClasses[] = $subClass;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function setSubClasses(array $subClasses)
- {
- $this->subClasses = $subClasses;
- }
- /**
- * {@inheritdoc}
- */
- public function hasSubClass($name)
- {
- return isset($this->subClasses[$name]);
- }
- /**
- * {@inheritdoc}
- */
- public function hasActiveSubClass()
- {
- if (count($this->subClasses) > 0 && $this->request) {
- return null !== $this->getRequest()->query->get('subclass');
- }
- return false;
- }
- /**
- * {@inheritdoc}
- */
- public function getActiveSubClass()
- {
- if (!$this->hasActiveSubClass()) {
- return;
- }
- return $this->getClass();
- }
- /**
- * {@inheritdoc}
- */
- public function getActiveSubclassCode()
- {
- if (!$this->hasActiveSubClass()) {
- return;
- }
- $subClass = $this->getRequest()->query->get('subclass');
- if (!$this->hasSubClass($subClass)) {
- return;
- }
- return $subClass;
- }
- /**
- * {@inheritdoc}
- */
- public function getBatchActions()
- {
- $actions = array();
- if ($this->hasRoute('delete') && $this->isGranted('DELETE')) {
- $actions['delete'] = array(
- 'label' => 'action_delete',
- 'translation_domain' => 'SonataAdminBundle',
- 'ask_confirmation' => true, // by default always true
- );
- }
- foreach ($this->getExtensions() as $extension) {
- // TODO: remove method check in next major release
- if (method_exists($extension, 'configureBatchActions')) {
- $actions = $extension->configureBatchActions($this, $actions);
- }
- }
- return $actions;
- }
- /**
- * {@inheritdoc}
- */
- public function getRoutes()
- {
- $this->buildRoutes();
- return $this->routes;
- }
- /**
- * {@inheritdoc}
- */
- public function getRouterIdParameter()
- {
- return $this->isChild() ? '{childId}' : '{id}';
- }
- /**
- * {@inheritdoc}
- */
- public function getIdParameter()
- {
- return $this->isChild() ? 'childId' : 'id';
- }
- /**
- * {@inheritdoc}
- */
- public function hasRoute($name)
- {
- if (!$this->routeGenerator) {
- throw new \RuntimeException('RouteGenerator cannot be null');
- }
- return $this->routeGenerator->hasAdminRoute($this, $name);
- }
- /**
- * {@inheritdoc}
- */
- public function isCurrentRoute($name, $adminCode = null)
- {
- if (!$this->hasRequest()) {
- return false;
- }
- $request = $this->getRequest();
- $route = $request->get('_route');
- if ($adminCode) {
- $admin = $this->getConfigurationPool()->getAdminByAdminCode($adminCode);
- } else {
- $admin = $this;
- }
- if (!$admin) {
- return false;
- }
- return ($admin->getBaseRouteName().'_'.$name) == $route;
- }
- /**
- * {@inheritdoc}
- */
- public function generateObjectUrl($name, $object, array $parameters = array(), $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
- {
- $parameters['id'] = $this->getUrlsafeIdentifier($object);
- return $this->generateUrl($name, $parameters, $absolute);
- }
- /**
- * {@inheritdoc}
- */
- public function generateUrl($name, array $parameters = array(), $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
- {
- return $this->routeGenerator->generateUrl($this, $name, $parameters, $absolute);
- }
- /**
- * {@inheritdoc}
- */
- public function generateMenuUrl($name, array $parameters = array(), $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
- {
- return $this->routeGenerator->generateMenuUrl($this, $name, $parameters, $absolute);
- }
- /**
- * @param array $templates
- */
- public function setTemplates(array $templates)
- {
- $this->templates = $templates;
- }
- /**
- * @param string $name
- * @param string $template
- */
- public function setTemplate($name, $template)
- {
- $this->templates[$name] = $template;
- }
- /**
- * @return array
- */
- public function getTemplates()
- {
- return $this->templates;
- }
- /**
- * {@inheritdoc}
- */
- public function getTemplate($name)
- {
- if (isset($this->templates[$name])) {
- return $this->templates[$name];
- }
- }
- /**
- * {@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 FormBuilderInterface $formBuilder
- */
- public function defineFormBuilder(FormBuilderInterface $formBuilder)
- {
- $mapper = new FormMapper($this->getFormContractor(), $formBuilder, $this);
- $this->configureFormFields($mapper);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureFormFields($mapper);
- }
- $this->attachInlineValidator();
- }
- /**
- * {@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)
- {
- $object = $this->getModelManager()->find($this->getClass(), $id);
- foreach ($this->getExtensions() as $extension) {
- $extension->alterObject($this, $object);
- }
- return $object;
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- public function buildTabMenu($action, AdminInterface $childAdmin = null)
- {
- if ($this->loaded['tab_menu']) {
- return;
- }
- $this->loaded['tab_menu'] = true;
- $menu = $this->menuFactory->createItem('root');
- $menu->setChildrenAttribute('class', 'nav navbar-nav');
- // Prevents BC break with KnpMenuBundle v1.x
- if (method_exists($menu, 'setCurrentUri')) {
- $menu->setCurrentUri($this->getRequest()->getBaseUrl().$this->getRequest()->getPathInfo());
- }
- $this->configureTabMenu($menu, $action, $childAdmin);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureTabMenu($this, $menu, $action, $childAdmin);
- }
- $this->menu = $menu;
- }
- /**
- * {@inheritdoc}
- */
- public function buildSideMenu($action, AdminInterface $childAdmin = null)
- {
- return $this->buildTabMenu($action, $childAdmin);
- }
- /**
- * @param string $action
- * @param AdminInterface $childAdmin
- *
- * @return 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 Admin the root admin class
- */
- public function getRoot()
- {
- $parentFieldDescription = $this->getParentFieldDescription();
- if (!$parentFieldDescription) {
- return $this;
- }
- return $parentFieldDescription->getAdmin()->getRoot();
- }
- /**
- * {@inheritdoc}
- */
- public function setBaseControllerName($baseControllerName)
- {
- $this->baseControllerName = $baseControllerName;
- }
- /**
- * {@inheritdoc}
- */
- public function getBaseControllerName()
- {
- return $this->baseControllerName;
- }
- /**
- * @param string $label
- */
- public function setLabel($label)
- {
- $this->label = $label;
- }
- /**
- * {@inheritdoc}
- */
- public function getLabel()
- {
- return $this->label;
- }
- /**
- * @param bool $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;
- }
- /**
- * {@inheritdoc}
- */
- public function removeFieldFromFormGroup($key)
- {
- foreach ($this->formGroups as $name => $formGroup) {
- unset($this->formGroups[$name]['fields'][$key]);
- if (empty($this->formGroups[$name]['fields'])) {
- unset($this->formGroups[$name]);
- }
- }
- }
- /**
- * @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);
- }
- /**
- * {@inheritdoc}
- */
- public function getFormTabs()
- {
- return $this->formTabs;
- }
- /**
- * {@inheritdoc}
- */
- public function setFormTabs(array $formTabs)
- {
- $this->formTabs = $formTabs;
- }
- /**
- * {@inheritdoc}
- */
- public function getShowTabs()
- {
- return $this->showTabs;
- }
- /**
- * {@inheritdoc}
- */
- public function setShowTabs(array $showTabs)
- {
- $this->showTabs = $showTabs;
- }
- /**
- * {@inheritdoc}
- */
- public function getShowGroups()
- {
- return $this->showGroups;
- }
- /**
- * {@inheritdoc}
- */
- public function setShowGroups(array $showGroups)
- {
- $this->showGroups = $showGroups;
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- public function getParentFieldDescription()
- {
- return $this->parentFieldDescription;
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- 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
- */
- 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 FieldDescriptionInterface
- */
- public function getShowFieldDescription($name)
- {
- $this->buildShow();
- return $this->hasShowFieldDescription($name) ? $this->showFieldDescriptions[$name] : null;
- }
- /**
- * {@inheritdoc}
- */
- public function hasShowFieldDescription($name)
- {
- return array_key_exists($name, $this->showFieldDescriptions);
- }
- /**
- * {@inheritdoc}
- */
- public function addShowFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->showFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * {@inheritdoc}
- */
- public function removeShowFieldDescription($name)
- {
- unset($this->showFieldDescriptions[$name]);
- }
- /**
- * {@inheritdoc}
- */
- public function getListFieldDescriptions()
- {
- $this->buildList();
- return $this->listFieldDescriptions;
- }
- /**
- * {@inheritdoc}
- */
- public function getListFieldDescription($name)
- {
- return $this->hasListFieldDescription($name) ? $this->listFieldDescriptions[$name] : null;
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- public function removeListFieldDescription($name)
- {
- unset($this->listFieldDescriptions[$name]);
- }
- /**
- * {@inheritdoc}
- */
- public function getFilterFieldDescription($name)
- {
- return $this->hasFilterFieldDescription($name) ? $this->filterFieldDescriptions[$name] : null;
- }
- /**
- * {@inheritdoc}
- */
- public function hasFilterFieldDescription($name)
- {
- return array_key_exists($name, $this->filterFieldDescriptions) ? true : false;
- }
- /**
- * {@inheritdoc}
- */
- public function addFilterFieldDescription($name, FieldDescriptionInterface $fieldDescription)
- {
- $this->filterFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * {@inheritdoc}
- */
- public function removeFilterFieldDescription($name)
- {
- unset($this->filterFieldDescriptions[$name]);
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- 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;
- }
- /**
- * {@inheritdoc}
- */
- public function getUniqid()
- {
- if (!$this->uniqid) {
- $this->uniqid = 's'.uniqid();
- }
- return $this->uniqid;
- }
- /**
- * Returns the classname label.
- *
- * @return string the classname label
- */
- public function getClassnameLabel()
- {
- return $this->classnameLabel;
- }
- /**
- * {@inheritdoc}
- */
- public function getPersistentParameters()
- {
- $parameters = array();
- foreach ($this->getExtensions() as $extension) {
- $params = $extension->getPersistentParameters($this);
- if (!is_array($params)) {
- throw new \RuntimeException(sprintf('The %s::getPersistentParameters must return an array', get_class($extension)));
- }
- $parameters = array_merge($parameters, $params);
- }
- return $parameters;
- }
- /**
- * @param string $name
- *
- * @return null|mixed
- */
- public function getPersistentParameter($name)
- {
- $parameters = $this->getPersistentParameters();
- return isset($parameters[$name]) ? $parameters[$name] : null;
- }
- /**
- * {@inheritdoc}
- */
- 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 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);
- }
- if ($action === 'list' && $this->isChild()) {
- $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'
- )
- )
- );
- }
- return $this->breadcrumbs[$action] = $menu;
- }
- /**
- * {@inheritdoc}
- */
- public function setCurrentChild($currentChild)
- {
- $this->currentChild = $currentChild;
- }
- /**
- * {@inheritdoc}
- */
- public function getCurrentChild()
- {
- return $this->currentChild;
- }
- /**
- * Returns the current child admin instance.
- *
- * @return AdminInterface|null the current child admin instance
- */
- public function getCurrentChildAdmin()
- {
- foreach ($this->children as $children) {
- if ($children->getCurrentChild()) {
- return $children;
- }
- }
- return;
- }
- /**
- * {@inheritdoc}
- */
- public function trans($id, array $parameters = array(), $domain = null, $locale = null)
- {
- $domain = $domain ?: $this->getTranslationDomain();
- if (!$this->translator) {
- return $id;
- }
- return $this->translator->trans($id, $parameters, $domain, $locale);
- }
- /**
- * Translate a message id.
- *
- * @param string $id
- * @param int $count
- * @param array $parameters
- * @param string|null $domain
- * @param string|null $locale
- *
- * @return string the translated string
- */
- public function transChoice($id, $count, array $parameters = array(), $domain = null, $locale = null)
- {
- $domain = $domain ?: $this->getTranslationDomain();
- 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;
- }
- /**
- * {@inheritdoc}
- */
- public function getTranslator()
- {
- return $this->translator;
- }
- /**
- * {@inheritdoc}
- */
- public function getTranslationLabel($label, $context = '', $type = '')
- {
- return $this->getLabelTranslatorStrategy()->getLabel($label, $context, $type);
- }
- /**
- * {@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 FormContractorInterface
- */
- public function getFormContractor()
- {
- return $this->formContractor;
- }
- /**
- * {@inheritdoc}
- */
- public function setDatagridBuilder(DatagridBuilderInterface $datagridBuilder)
- {
- $this->datagridBuilder = $datagridBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function getDatagridBuilder()
- {
- return $this->datagridBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function setListBuilder(ListBuilderInterface $listBuilder)
- {
- $this->listBuilder = $listBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function getListBuilder()
- {
- return $this->listBuilder;
- }
- /**
- * @param ShowBuilderInterface $showBuilder
- */
- public function setShowBuilder(ShowBuilderInterface $showBuilder)
- {
- $this->showBuilder = $showBuilder;
- }
- /**
- * @return 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 RouteGeneratorInterface
- */
- public function getRouteGenerator()
- {
- return $this->routeGenerator;
- }
- /**
- * {@inheritdoc}
- */
- public function getCode()
- {
- return $this->code;
- }
- /**
- * @param string $baseCodeRoute
- */
- public function setBaseCodeRoute($baseCodeRoute)
- {
- $this->baseCodeRoute = $baseCodeRoute;
- }
- /**
- * {@inheritdoc}
- */
- public function getBaseCodeRoute()
- {
- return $this->baseCodeRoute;
- }
- /**
- * {@inheritdoc}
- */
- public function getModelManager()
- {
- return $this->modelManager;
- }
- /**
- * @param 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)
- {
- $key = md5(json_encode($name).($object ? '/'.spl_object_hash($object) : ''));
- if (!array_key_exists($key, $this->cacheIsGranted)) {
- $this->cacheIsGranted[$key] = $this->securityHandler->isGranted($this, $name, $object ?: $this);
- }
- return $this->cacheIsGranted[$key];
- }
- /**
- * {@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($validator)
- {
- // TODO: Remove it when bumping requirements to SF 2.5+
- if (!$validator instanceof ValidatorInterface && !$validator instanceof LegacyValidatorInterface) {
- throw new \InvalidArgumentException('Argument 1 must be an instance of Symfony\Component\Validator\Validator\ValidatorInterface or Symfony\Component\Validator\ValidatorInterface');
- }
- $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', ClassUtils::getClass($object), spl_object_hash($object));
- }
- /**
- * {@inheritdoc}
- */
- public function setLabelTranslatorStrategy(LabelTranslatorStrategyInterface $labelTranslatorStrategy)
- {
- $this->labelTranslatorStrategy = $labelTranslatorStrategy;
- }
- /**
- * {@inheritdoc}
- */
- public function getLabelTranslatorStrategy()
- {
- return $this->labelTranslatorStrategy;
- }
- /**
- * {@inheritdoc}
- */
- public function supportsPreviewMode()
- {
- return $this->supportsPreviewMode;
- }
- /**
- * Set custom per page options.
- *
- * @param array $options
- */
- public function setPerPageOptions(array $options)
- {
- $this->perPageOptions = $options;
- }
- /**
- * Returns predefined per page options.
- *
- * @return array
- */
- public function getPerPageOptions()
- {
- return $this->perPageOptions;
- }
- /**
- * Set pager type.
- *
- * @param string $pagerType
- */
- public function setPagerType($pagerType)
- {
- $this->pagerType = $pagerType;
- }
- /**
- * Get pager type.
- *
- * @return string
- */
- public function getPagerType()
- {
- return $this->pagerType;
- }
- /**
- * Returns true if the per page value is allowed, false otherwise.
- *
- * @param int $perPage
- *
- * @return bool
- */
- public function determinedPerPageValue($perPage)
- {
- return in_array($perPage, $this->perPageOptions);
- }
- /**
- * {@inheritdoc}
- */
- public function isAclEnabled()
- {
- return $this->getSecurityHandler() instanceof AclSecurityHandlerInterface;
- }
- /**
- * {@inheritdoc}
- */
- public function getObjectMetadata($object)
- {
- return new Metadata($this->toString($object));
- }
- /**
- * {@inheritdoc}
- */
- public function getListModes()
- {
- return $this->listModes;
- }
- /**
- * {@inheritdoc}
- */
- public function setListMode($mode)
- {
- if (!$this->hasRequest()) {
- throw new \RuntimeException(sprintf('No request attached to the current admin: %s', $this->getCode()));
- }
- $this->getRequest()->getSession()->set(sprintf('%s.list_mode', $this->getCode()), $mode);
- }
- /**
- * {@inheritdoc}
- */
- public function getListMode()
- {
- if (!$this->hasRequest()) {
- return 'list';
- }
- return $this->getRequest()->getSession()->get(sprintf('%s.list_mode', $this->getCode()), 'list');
- }
- /**
- * {@inheritdoc}
- */
- public function getAccessMapping()
- {
- return $this->accessMapping;
- }
- /**
- * {@inheritdoc}
- */
- public function checkAccess($action, $object = null)
- {
- $access = $this->getAccess();
- if (!array_key_exists($action, $access)) {
- throw new \InvalidArgumentException(sprintf('Action "%s" could not be found in access mapping. Please make sure your action is defined into your admin class accessMapping property.', $action));
- }
- if (!is_array($access[$action])) {
- $access[$action] = array($access[$action]);
- }
- foreach ($access[$action] as $role) {
- if (false === $this->isGranted($role, $object)) {
- throw new AccessDeniedException(sprintf('Access Denied to the action %s and role %s', $action, $role));
- }
- }
- }
- /**
- * Hook to handle access authorization, without throw Exception.
- *
- * @param string $action
- * @param object $object
- *
- * @return bool
- */
- public function hasAccess($action, $object = null)
- {
- $access = $this->getAccess();
- if (!array_key_exists($action, $access)) {
- return false;
- }
- if (!is_array($access[$action])) {
- $access[$action] = array($access[$action]);
- }
- foreach ($access[$action] as $role) {
- if (false === $this->isGranted($role, $object)) {
- return false;
- }
- }
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function configureActionButtons($action, $object = null)
- {
- $list = array();
- if (in_array($action, array('tree', 'show', 'edit', 'delete', 'list', 'batch'))) {
- $list['create'] = array(
- 'template' => 'SonataAdminBundle:Button:create_button.html.twig',
- );
- }
- if (in_array($action, array('show', 'delete', 'acl', 'history')) && $object) {
- $list['edit'] = array(
- 'template' => 'SonataAdminBundle:Button:edit_button.html.twig',
- );
- }
- if (in_array($action, array('show', 'edit', 'acl')) && $object) {
- $list['history'] = array(
- 'template' => 'SonataAdminBundle:Button:history_button.html.twig',
- );
- }
- if (in_array($action, array('edit', 'history')) && $object) {
- $list['acl'] = array(
- 'template' => 'SonataAdminBundle:Button:acl_button.html.twig',
- );
- }
- if (in_array($action, array('edit', 'history', 'acl')) && $object) {
- $list['show'] = array(
- 'template' => 'SonataAdminBundle:Button:show_button.html.twig',
- );
- }
- if (in_array($action, array('show', 'edit', 'delete', 'acl', 'batch'))) {
- $list['list'] = array(
- 'template' => 'SonataAdminBundle:Button:list_button.html.twig',
- );
- }
- return $list;
- }
- /**
- * @param string $action
- * @param mixed $object
- *
- * @return array
- */
- public function getActionButtons($action, $object = null)
- {
- $list = $this->configureActionButtons($action, $object);
- foreach ($this->getExtensions() as $extension) {
- // TODO: remove method check in next major release
- if (method_exists($extension, 'configureActionButtons')) {
- $list = $extension->configureActionButtons($this, $list, $action, $object);
- }
- }
- return $list;
- }
- /**
- * Get the list of actions that can be accessed directly from the dashboard.
- *
- * @return array
- */
- public function getDashboardActions()
- {
- $actions = array();
- if ($this->hasRoute('create') && $this->isGranted('CREATE')) {
- $actions['create'] = array(
- 'label' => 'link_add',
- 'translation_domain' => 'SonataAdminBundle',
- 'template' => 'SonataAdminBundle:CRUD:dashboard__action_create.html.twig',
- 'url' => $this->generateUrl('create'),
- 'icon' => 'plus-circle',
- );
- }
- if ($this->hasRoute('list') && $this->isGranted('LIST')) {
- $actions['list'] = array(
- 'label' => 'link_list',
- 'translation_domain' => 'SonataAdminBundle',
- 'url' => $this->generateUrl('list'),
- 'icon' => 'list',
- );
- }
- return $actions;
- }
- /**
- * @param FormMapper $form
- */
- protected function configureFormFields(FormMapper $form)
- {
- }
- /**
- * @param ListMapper $list
- */
- protected function configureListFields(ListMapper $list)
- {
- }
- /**
- * @param DatagridMapper $filter
- */
- protected function configureDatagridFilters(DatagridMapper $filter)
- {
- }
- /**
- * @param ShowMapper $show
- */
- protected function configureShowFields(ShowMapper $show)
- {
- }
- /**
- * @param RouteCollection $collection
- */
- protected function configureRoutes(RouteCollection $collection)
- {
- }
- /**
- * DEPRECATED: Use configureTabMenu instead.
- *
- * @param MenuItemInterface $menu
- * @param $action
- * @param AdminInterface $childAdmin
- *
- * @return mixed
- *
- * @deprecated Use configureTabMenu instead
- */
- protected function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null)
- {
- }
- /**
- * Configures the tab menu in your admin.
- *
- * @param MenuItemInterface $menu
- * @param string $action
- * @param AdminInterface $childAdmin
- *
- * @return mixed
- */
- protected function configureTabMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null)
- {
- // Use configureSideMenu not to mess with previous overrides
- // TODO remove once deprecation period is over
- $this->configureSideMenu($menu, $action, $childAdmin);
- }
- /**
- * build the view FieldDescription array.
- */
- protected function buildShow()
- {
- if ($this->show) {
- return;
- }
- $this->show = new FieldDescriptionCollection();
- $mapper = new ShowMapper($this->showBuilder, $this->show, $this);
- $this->configureShowFields($mapper);
- foreach ($this->getExtensions() as $extension) {
- $extension->configureShowFields($mapper);
- }
- }
- /**
- * build the list FieldDescription array.
- */
- 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,
- 'virtual_field' => true,
- ));
- $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,
- 'virtual_field' => false,
- ));
- $fieldDescription->setAdmin($this);
- $fieldDescription->setTemplate($this->getTemplate('select'));
- $mapper->add($fieldDescription, 'select');
- }
- }
- /**
- * Build the form FieldDescription collection.
- */
- 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 = $this->getConfigurationPool()->getPropertyAccessor();
- $propertyPath = new PropertyPath($this->getParentAssociationMapping());
- $object = $this->getSubject();
- $value = $propertyAccessor->getValue($object, $propertyPath);
- if (is_array($value) || ($value instanceof \Traversable && $value instanceof \ArrayAccess)) {
- $value[] = $parent;
- $propertyAccessor->setValue($object, $propertyPath, $value);
- } else {
- $propertyAccessor->setValue($object, $propertyPath, $parent);
- }
- }
- $this->form = $this->getFormBuilder()->getForm();
- }
- /**
- * 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];
- }
- throw new \RuntimeException(sprintf('Unable to find the subclass `%s` for admin `%s`', $name, get_class($this)));
- }
- /**
- * 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
- // TODO: Remove conditional method when bumping requirements to SF 2.5+
- if (method_exists($this->validator, 'getMetadataFor')) {
- $metadata = $this->validator->getMetadataFor($this->getClass());
- } else {
- $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);
- }
- },
- 'serializingWarning' => true,
- )));
- }
- /**
- * Predefine per page options.
- */
- protected function predefinePerPageOptions()
- {
- array_unshift($this->perPageOptions, $this->maxPerPage);
- $this->perPageOptions = array_unique($this->perPageOptions);
- sort($this->perPageOptions);
- }
- /**
- * Return list routes with permissions name.
- *
- * @return array
- */
- protected function getAccess()
- {
- $access = array_merge(array(
- 'acl' => 'MASTER',
- 'export' => 'EXPORT',
- 'historyCompareRevisions' => 'EDIT',
- 'historyViewRevision' => 'EDIT',
- 'history' => 'EDIT',
- 'edit' => 'EDIT',
- 'show' => 'VIEW',
- 'create' => 'CREATE',
- 'delete' => 'DELETE',
- 'batchDelete' => 'DELETE',
- 'list' => 'LIST',
- ), $this->getAccessMapping());
- foreach ($this->extensions as $extension) {
- // TODO: remove method check in next major release
- if (method_exists($extension, 'getAccessMapping')) {
- $access = array_merge($access, $extension->getAccessMapping($this));
- }
- }
- return $access;
- }
- /**
- * Build all the related urls to the current admin.
- */
- private 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);
- }
- }
- }
|