123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449 |
- <?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\BaseApplicationBundle\Admin;
- use Symfony\Component\DependencyInjection\ContainerAware;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\Form\Form;
- use Sonata\BaseApplicationBundle\Form\FormMapper;
- use Sonata\BaseApplicationBundle\Datagrid\ListMapper;
- use Sonata\BaseApplicationBundle\Datagrid\DatagridMapper;
- use Sonata\BaseApplicationBundle\Datagrid\Datagrid;
- use Knplabs\MenuBundle\Menu;
- use Knplabs\MenuBundle\MenuItem;
- abstract class Admin extends ContainerAware
- {
- protected $class;
- protected $list = array();
- protected $listFieldDescriptions = array();
- protected $form = array();
-
- protected $formFieldDescriptions = array();
- protected $filter = array();
- protected $filterFieldDescriptions = array();
- protected $maxPerPage = 25;
- protected $baseRouteName;
- protected $baseRoutePattern;
- protected $baseControllerName;
- protected $formGroups = false;
- /**
- *
- * @var string the classname label (used in the title/breadcrumb ...)
- */
- protected $classnameLabel;
- /**
- *
- * @var string the translation domain to be used to translate messages
- */
- protected $translationDomain = 'BaseApplicationBundle';
- /**
- *
- * @var array options to set to the form (ie, validation_groups)
- */
- protected $formOptions = array();
- // note : don't like this, but havn't find a better way to do it
- protected $configurationPool;
- protected $code;
- protected $label;
- protected $urls = array();
- 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 FieldDescription
- */
- 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
- */
- protected $uniqid;
- protected $loaded = array(
- 'form_fields' => false,
- 'form_groups' => false,
- 'list_fields' => false,
- 'filter_fields' => false,
- 'urls' => false,
- );
- protected $choicesCache = array();
-
- /**
- * return the entity manager
- *
- * @return EntityManager
- */
- abstract public function getEntityManager();
- abstract public function getListBuilder();
- abstract public function getFormBuilder();
- abstract public function getDatagridBuilder();
- abstract public function getClassMetaData();
- /**
- * This method can be overwritten to tweak the form construction, by default the form
- * is built by reading the FieldDescription
- *
- * @return void
- */
- protected function configureFormFields(FormMapper $form)
- {
- }
- protected function configureListFields(ListMapper $list)
- {
- }
- protected function configureDatagridFilters(DatagridMapper $filter)
- {
- }
- public function __construct($code, ContainerInterface $container)
- {
- $this->code = $code;
-
- $this->setContainer($container);
- $this->configure();
- }
- public function configure()
- {
- $this->uniqid = uniqid();
-
- if($this->parentAssociationMapping) {
- if(!isset($this->getClassMetaData()->associationMappings[$this->parentAssociationMapping])) {
- throw new \RuntimeException(sprintf('The value set to `relatedReflectionProperty` refer to a non existant association', $this->relatedReflectionProperty));
- }
- $this->parentAssociationMapping = $this->getClassMetaData()->associationMappings[$this->parentAssociationMapping];
- }
- if(!$this->classnameLabel) {
- $this->classnameLabel = $this->urlize(substr($this->class, strrpos($this->class, '\\') + 1), '_');
- }
- }
- public function configureUrls()
- {
- }
- public function preUpdate($object)
- {
- }
- public function postUpdate($object)
- {
- }
- public function preInsert($object)
- {
- }
- public function postInsert($object)
- {
- }
- /**
- * build the list FieldDescription array
- *
- * @return void
- */
- protected function buildListFieldDescriptions()
- {
- if ($this->loaded['list_fields']) {
- return;
- }
- $this->loaded['list_fields'] = true;
- $this->listFieldDescriptions = self::getBaseFields($this->getClassMetaData(), $this->list);
- // normalize field
- foreach ($this->listFieldDescriptions as $fieldDescription) {
- $this->getListBuilder()->fixFieldDescription($this, $fieldDescription);
- }
- if (!isset($this->listFieldDescriptions['_batch'])) {
- $fieldDescription = new FieldDescription();
- $fieldDescription->setOptions(array(
- 'label' => 'batch',
- 'code' => '_batch',
- 'type' => 'batch',
- ));
- $fieldDescription->setTemplate('SonataBaseApplicationBundle:CRUD:list__batch.html.twig');
- $this->listFieldDescriptions = array( '_batch' => $fieldDescription ) + $this->listFieldDescriptions;
- }
- return $this->listFieldDescriptions;
- }
- /**
- * build the filter FieldDescription array
- *
- * @return void
- */
- public function buildFilterFieldDescriptions()
- {
- if ($this->loaded['filter_fields']) {
- return;
- }
- $this->loaded['filter_fields'] = true;
- $this->filterFieldDescriptions = self::getBaseFields($this->getClassMetaData(), $this->filter);
- // ok, try to limit to add parent filter
- $parentAssociationMapping = $this->getParentAssociationMapping();
- if ($parentAssociationMapping) {
-
- $fieldName = $parentAssociationMapping['fieldName'];
- $this->filterFieldDescriptions[$fieldName] = new FieldDescription;
- $this->filterFieldDescriptions[$fieldName]->setName($parentAssociationMapping['fieldName']);
- $this->filterFieldDescriptions[$fieldName]->setAssociationMapping($parentAssociationMapping);
- }
- foreach ($this->filterFieldDescriptions as $fieldDescription) {
- $this->getDatagridBuilder()->fixFieldDescription($this, $fieldDescription);
- }
- }
- /**
- * return 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 buildFormFieldDescriptions()
- {
- if ($this->loaded['form_fields']) {
- return;
- }
- $this->loaded['form_fields'] = true;
- $this->formFieldDescriptions = self::getBaseFields($this->getClassMetaData(), $this->form);
- foreach ($this->formFieldDescriptions as $name => &$fieldDescription) {
- $this->getFormBuilder()->fixFieldDescription($this, $fieldDescription);
- // unset the identifier field as it is not required to update an object
- if ($fieldDescription->isIdentifier()) {
- unset($this->formFieldDescriptions[$name]);
- }
- }
- }
- /**
- * make sure the base fields are set in the correct format
- *
- * @param $selected_fields
- * @return array
- */
- static public function getBaseFields($metadata, $selectedFields)
- {
- $fields = array();
- // make sure we works with array
- foreach ($selectedFields as $name => $options) {
- $description = new FieldDescription;
-
- if (!is_array($options)) {
- $name = $options;
- $options = array();
- }
- $description->setName($name);
- $description->setOptions($options);
- $fields[$name] = $description;
- }
- return $fields;
- }
- /**
- * return 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('@([A-Za-z]*)\\\([A-Za-z]*)Bundle\\\(Entity|Document)\\\([A-Za-z]*)@', $this->getClass(), $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[4], '-')
- );
- } else {
- $this->baseRoutePattern = sprintf('/%s/%s/%s',
- $this->urlize($matches[1], '-'),
- $this->urlize($matches[2], '-'),
- $this->urlize($matches[4], '-')
- );
- }
- }
- return $this->baseRoutePattern;
- }
- /**
- * return 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('@([A-Za-z]*)\\\([A-Za-z]*)Bundle\\\(Entity|Document)\\\([A-Za-z]*)@', $this->getClass(), $matches);
- if(!$matches) {
- throw new \RuntimeException(sprintf('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[4])
- );
- } else {
- $this->baseRouteName = sprintf('admin_%s_%s_%s',
- $this->urlize($matches[1]),
- $this->urlize($matches[2]),
- $this->urlize($matches[4])
- );
- }
- }
- return $this->baseRouteName;
- }
- /**
- * urlize the given word
- *
- * @param string $word
- * @param string $sep the separator
- */
- public function urlize($word, $sep = '_')
- {
- return strtolower(preg_replace('~(?<=\\w)([A-Z])~', $sep.'$1', $word));
- }
- /**
- * return the class name handled by the Admin instance
- *
- * @return string the class name handled by the Admin instance
- */
- public function getClass()
- {
- return $this->class;
- }
- /**
- * return the list of batchs actions
- *
- * @return array the list of batchs actions
- */
- public function getBatchActions()
- {
- return array(
- 'delete' => 'action_delete'
- );
- }
- /**
- * return the list of available urls
- *
- * @return array the list of available urls
- */
- public function getUrls($baseCode = '')
- {
- $this->buildUrls($baseCode);
- return $this->urls;
- }
- /**
- * return the parameter representing router id, ie: {id} or {childId}
- *
- * @return string
- */
- public function getRouterIdParameter()
- {
- return $this->isChild() ? '{childId}' : '{id}';
- }
- /**
- * return 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
- *
- * @param string $baseCode
- * @return void
- */
- public function buildUrls($baseCode = '')
- {
- if ($this->loaded['urls']) {
- return;
- }
- $this->baseCodeRoute = $baseCode;
- $this->loaded['urls'] = true;
-
- $this->urls = array(
- $baseCode . 'list' => array(
- 'name' => $this->getBaseRouteName().'_list',
- 'pattern' => $this->getBaseRoutePattern().'/list',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':list'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- $baseCode . 'create' => array(
- 'name' => $this->getBaseRouteName().'_create',
- 'pattern' => $this->getBaseRoutePattern().'/create',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':create'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- $baseCode . 'edit' => array(
- 'name' => $this->getBaseRouteName().'_edit',
- 'pattern' => $this->getBaseRoutePattern().'/'.$this->getRouterIdParameter().'/edit',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':edit'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- $baseCode . 'update' => array(
- 'name' => $this->getBaseRouteName().'_update',
- 'pattern' => $this->getBaseRoutePattern().'/update',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':update'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- $baseCode . 'batch' => array(
- 'name' => $this->getBaseRouteName().'_batch',
- 'pattern' => $this->getBaseRoutePattern().'/batch',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':batch'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- )
- );
- // add children urls
- foreach ($this->getChildren() as $code => $children) {
- $this->urls = array_merge($this->urls, $children->getUrls($code.'.'));
- }
- $this->configureUrls();
- }
- /**
- * return the url defined by the $name
- *
- * @param $name
- * @return bool
- */
- public function getUrl($name)
- {
- $urls = $this->getUrls();
- if (!isset($urls[$name])) {
- return false;
- }
- return $urls[$name];
- }
- /**
- * generate the url with the given $name
- *
- * @throws RuntimeException
- * @param $name
- * @param array $params
- *
- * @return return a complete url
- */
- public function generateUrl($name, array $params = array())
- {
-
- // if the admin is a child we automatically append the parent's id
- if($this->isChild()) {
- $name = $this->baseCodeRoute.$name;
- // twig template does not accept variable hash key ... so cannot use admin.idparameter ...
- // switch value
- if(isset($params['id'])) {
- $params[$this->getIdParameter()] = $params['id'];
- unset($params['id']);
- }
- $params[$this->getParent()->getIdParameter()] = $this->container->get('request')->get($this->getParent()->getIdParameter());
- }
- // if the admin is linked to a FieldDescription (ie, embeded widget)
- if($this->hasParentFieldDescription()) {
- $params['uniqid'] = $this->getUniqid();
- $params['code'] = $this->getCode();
- $params['pcode'] = $this->getParentFieldDescription()->getAdmin()->getCode();
- $params['puniqid'] = $this->getParentFieldDescription()->getAdmin()->getUniqid();
- }
- if($name == 'update' || substr($name, -7) == '.update') {
- $params['uniqid'] = $this->getUniqid();
- $params['code'] = $this->getCode();
- }
-
- $url = $this->getUrl($name);
- if (!$url) {
- throw new \RuntimeException(sprintf('unable to find the url `%s`', $name));
- }
- return $this->container->get('router')->generate($url['name'], $params);
- }
- /**
- * return the list template
- *
- * @return string the list template
- */
- public function getListTemplate()
- {
- return 'SonataBaseApplicationBundle:CRUD:list.html.twig';
- }
- /**
- * return the edit template
- *
- * @return string the edit template
- */
- public function getEditTemplate()
- {
- return 'SonataBaseApplicationBundle:CRUD:edit.html.twig';
- }
- /**
- * return the reflection fields related to the classname
- *
- * @return array the reflection fields related to the classname
- */
- public function getReflectionFields()
- {
- return $this->getClassMetaData()->reflFields;
- }
- /**
- * return a instance of the related classname
- *
- * @return object a instance of the related classname
- */
- public function getNewInstance()
- {
- $class = $this->getClass();
- return new $class;
- }
- /**
- *
- * @return Form the base form
- */
- public function getBaseForm($object, $options = array())
- {
- return $this->getFormBuilder()->getBaseForm(
- 'object_'.$this->getUniqid(),
- $object,
- array_merge($this->formOptions, $options)
- );
- }
- /**
- *
- * @return Form the base form
- */
- public function getBaseDatagrid($values = array())
- {
- return new Datagrid(
- $this->getClass(),
- $this->getEntityManager(),
- $values
- );
- }
- /**
- * attach an admin instance to the given FieldDescription
- *
- */
- public function attachAdminClass(FieldDescription $fieldDescription)
- {
- $pool = $this->getConfigurationPool();
- $admin = $pool->getAdminByClass($fieldDescription->getTargetEntity());
- if (!$admin) {
- throw new \RuntimeException(sprintf('You must define an Admin class for the `%s` field (targetEntity=%s)', $fieldDescription->getFieldName(), $fieldDescription->getTargetEntity()));
- }
- $fieldDescription->setAssociationAdmin($admin);
- }
- /**
- * return the target objet
- *
- * @param $id
- * @return
- */
- public function getObject($id)
- {
- return $this->getEntityManager()
- ->find($this->getClass(), $id);
- }
- /**
- * build the form group array
- *
- * @return void
- */
- public function buildFormGroups()
- {
- if ($this->loaded['form_groups']) {
- return;
- }
- $this->loaded['form_groups'] = true;
- if (!$this->formGroups) {
- $this->formGroups = array(
- false => array('fields' => array_keys($this->getFormFieldDescriptions()))
- );
- }
- // normalize array
- foreach ($this->formGroups as $name => $group) {
- if (!isset($this->formGroups[$name]['collapsed'])) {
- $this->formGroups[$name]['collapsed'] = false;
- }
- }
- }
- /**
- * return a form depend on the given $object
- *
- * @param $object
- * @return Symfony\Component\Form\Form
- */
- public function getForm($object, array $options = array())
- {
- // append parent object if any
- // todo : clean the way the Admin class can retrieve set the object
- if ($this->isChild() && $this->getParentAssociationMapping()) {
- $mapping = $this->getParentAssociationMapping();
- $parent = $this->getParent()->getObject($this->container->get('request')->get($this->getParent()->getIdParameter()));
- $propertyPath = new \Symfony\Component\Form\PropertyPath($mapping['fieldName']);
- $propertyPath->setValue($object, $parent);
- }
- $form = $this->getBaseForm($object, $options);
- $mapper = new FormMapper($this->getFormBuilder(), $form, $this);
- $this->buildFormFieldDescriptions();
- $this->configureFormFields($mapper);
- foreach ($this->getFormFieldDescriptions() as $fieldDescription) {
- $mapper->add($fieldDescription);
- }
-
- return $form;
- }
- /**
- * return a list depend on the given $object
- *
- * @param $object
- * @return Symfony\Component\Datagrid\ListCollection
- */
- public function getList(array $options = array())
- {
- $list = $this->getListBuilder()->getBaseList($options);
- $mapper = new ListMapper($this->getListBuilder(), $list, $this);
- $this->buildListFieldDescriptions();
-
- $this->configureListFields($mapper);
- foreach ($this->getListFieldDescriptions() as $fieldDescription) {
- $mapper->add($fieldDescription);
- }
- return $list;
- }
- /**
- * return a list depend on the given $object
- *
- * @param $object
- * @return Symfony\Component\Datagrid\Datagrid
- */
- public function getDatagrid()
- {
- $parameters = $this->container->get('request')->query->all();
- $datagrid = $this->getBaseDatagrid($parameters);
- $datagrid->setMaxPerPage($this->maxPerPage);
- if($this->isChild() && $this->getParentAssociationMapping()) {
- $mapping = $this->getParentAssociationMapping();
- $parameters[$mapping['fieldName']] = $this->container->get('request')->get($this->getParent()->getIdParameter());
- }
- $datagrid->setValues($parameters);
- $mapper = new DatagridMapper($this->getDatagridBuilder(), $datagrid, $this);
- $this->buildFilterFieldDescriptions();
- $this->configureDatagridFilters($mapper);
- foreach ($this->getFilterFieldDescriptions() as $fieldDescription) {
- $mapper->add($fieldDescription);
- }
- return $datagrid;
- }
- /**
- * Build the side menu related to the current action
- *
- * @return MenuItem|false
- */
- public function getSideMenu($action)
- {
- return false;
- }
- /**
- * return the root code
- *
- * @return string the root code
- */
- public function getRootCode()
- {
- return $this->getRoot()->getCode();
- }
- /**
- * return the master admin
- *
- * @return Admin the root admin class
- */
- public function getRoot()
- {
- $parentFieldDescription = $this->getParentFieldDescription();
- if (!$parentFieldDescription) {
- return $this;
- }
- return $parentFieldDescription->getAdmin()->getRoot();
- }
- public function setBaseControllerName($baseControllerName)
- {
- $this->baseControllerName = $baseControllerName;
- }
- public function getBaseControllerName()
- {
- return $this->baseControllerName;
- }
- public function getConfigurationPool()
- {
- return $this->container->get('base_application.admin.pool');
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setMaxPerPage($maxPerPage)
- {
- $this->maxPerPage = $maxPerPage;
- }
- public function getMaxPerPage()
- {
- return $this->maxPerPage;
- }
- public function setFormGroups($formGroups)
- {
- $this->formGroups = $formGroups;
- }
- public function getFormGroups()
- {
- $this->buildFormGroups();
- return $this->formGroups;
- }
- /**
- * set the parent FieldDescription
- *
- * @param FieldDescription $parentFieldDescription
- * @return void
- */
- public function setParentFieldDescription(FieldDescription $parentFieldDescription)
- {
- $this->parentFieldDescription = $parentFieldDescription;
- }
- /**
- *
- * @return FieldDescription the parent field description
- */
- public function getParentFieldDescription()
- {
- return $this->parentFieldDescription;
- }
- /**
- * return true if the Admin is linked to a parent FieldDescription
- *
- * @return bool
- */
- public function hasParentFieldDescription()
- {
- return $this->parentFieldDescription instanceof FieldDescription;
- }
- /**
- * set the subject linked to the admin, the subject is the related model
- *
- * @param object $subject
- * @return void
- */
- public function setSubject($subject)
- {
- $this->subject = $subject;
- }
- /**
- * return the subject, if none is set try to load one from the request
- *
- * @return $object the subject
- */
- public function getSubject()
- {
- if($this->subject === null) {
- $id = $this->container->get('request')->get($this->getIdParameter());
- if(!is_numeric($id)) {
- $this->subject = false;
- } else {
- $this->subject = $this->getEntityManager()->find(
- $this->getClass(),
- $id
- );
- }
- }
- return $this->subject;
- }
- /**
- * build and return the collection of form FieldDescription
- *
- * @return array collection of form FieldDescription
- */
- public function getFormFieldDescriptions()
- {
- $this->buildFormFieldDescriptions();
-
- return $this->formFieldDescriptions;
- }
- /**
- * return the form FieldDescription with the given $name
- *
- * @param string $name
- * @return FieldDescription
- */
- public function getFormFieldDescription($name) {
- return $this->hasFormFieldDescription($name) ? $this->formFieldDescriptions[$name] : null;
- }
- /**
- * return true if the admin has a FieldDescription with the given $name
- *
- * @param string $name
- * @return bool
- */
- public function hasFormFieldDescription($name)
- {
- $this->buildFormFieldDescriptions();
- return array_key_exists($name, $this->formFieldDescriptions) ? true : false;
- }
- /**
- * add a FieldDescription
- *
- * @param string $name
- * @param FieldDescription $fieldDescription
- * @return void
- */
- public function addFormFieldDescription($name, FieldDescription $fieldDescription)
- {
- $this->formFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a FieldDescription
- *
- * @param string $name
- * @return void
- */
- public function removeFormFieldDescription($name)
- {
- unset($this->formFieldDescriptions[$name]);
- }
- /**
- * return the collection of list FieldDescriptions
- *
- * @return array
- */
- public function getListFieldDescriptions()
- {
- $this->buildListFieldDescriptions();
-
- return $this->listFieldDescriptions;
- }
- /**
- * return a list FieldDescription
- *
- * @param string $name
- * @return FieldDescription
- */
- public function getListFieldDescription($name) {
- return $this->hasListFieldDescription($name) ? $this->listFieldDescriptions[$name] : null;
- }
- /**
- * return true if the list FieldDescription exists
- *
- * @param string $name
- * @return bool
- */
- public function hasListFieldDescription($name)
- {
- $this->buildListFieldDescriptions();
- return array_key_exists($name, $this->listFieldDescriptions) ? true : false;
- }
- /**
- * add a list FieldDescription
- *
- * @param string $name
- * @param FieldDescription $fieldDescription
- * @return void
- */
- public function addListFieldDescription($name, FieldDescription $fieldDescription)
- {
- $this->listFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a list FieldDescription
- *
- * @param string $name
- * @return void
- */
- public function removeListFieldDescription($name)
- {
- unset($this->listFieldDescriptions[$name]);
- }
- /**
- * return a filter FieldDescription
- *
- * @param string $name
- * @return array|null
- */
- public function getFilterFieldDescription($name) {
- return $this->hasFilterFieldDescription($name) ? $this->filterFieldDescriptions[$name] : null;
- }
- /**
- * return true if the filter FieldDescription exists
- *
- * @param string $name
- * @return bool
- */
- public function hasFilterFieldDescription($name)
- {
- $this->buildFilterFieldDescriptions();
- return array_key_exists($name, $this->filterFieldDescriptions) ? true : false;
- }
- /**
- * add a filter FieldDescription
- *
- * @param string $name
- * @param FieldDescription $fieldDescription
- * @return void
- */
- public function addFilterFieldDescription($name, FieldDescription $fieldDescription)
- {
- $this->filterFieldDescriptions[$name] = $fieldDescription;
- }
- /**
- * remove a filter FieldDescription
- *
- * @param string $name
- */
- public function removeFilterFieldDescription($name)
- {
- unset($this->filterFieldDescriptions[$name]);
- }
- /**
- * return the filter FieldDescription collection
- *
- * @param array filter FieldDescription collection
- */
- public function getFilterFieldDescriptions()
- {
- $this->buildFilterFieldDescriptions();
-
- return $this->filterFieldDescriptions;
- }
- /**
- * add an Admin child to the current one
- *
- * @param string $code
- * @param Admin $child
- * @return void
- */
- public function addChild($code, Admin $child)
- {
- $this->children[$code] = $child;
- $child->setParent($this);
- }
- /**
- * return true or false if an Admin child exists for the given $code
- *
- * @param string $code
- * @return Admin|bool
- */
- public function hasChild($code)
- {
- return isset($this->children[$code]) ? $this->children[$code] : false;
- }
- /**
- * return an collection of admin children
- *
- * @return array list of Admin children
- */
- public function getChildren()
- {
- return $this->children;
- }
- /**
- * return an admin child with the given $code
- *
- * @param string $code
- * @return array|null
- */
- public function getChild($code)
- {
- return $this->hasChild($code) ? $this->children[$code] : null;
- }
- /**
- * set the Parent Admin
- *
- * @param Admin $parent
- * @return void
- */
- public function setParent(Admin $parent)
- {
- $this->parent = $parent;
- }
- /**
- * get the Parent Admin
- *
- * @return Admin|null
- */
- public function getParent()
- {
- return $this->parent;
- }
- /**
- * return true if the Admin class has an Parent Admin defined
- *
- * @return boolean
- */
- public function isChild()
- {
- return $this->parent instanceof Admin;
- }
- /**
- * return true if the admin has childre, false otherwise
- *
- * @return bool if the admin has children
- */
- public function hasChildren()
- {
- return count($this->children) > 0;
- }
- /**
- * set the uniqid
- *
- * @param $uniqid
- * @return void
- */
- public function setUniqid($uniqid)
- {
- $this->uniqid = $uniqid;
- }
- /**
- * return the uniqid
- *
- * @return integer
- */
- public function getUniqid()
- {
- return $this->uniqid;
- }
- /**
- * return the classname label
- *
- * @return string the classname label
- */
- public function getClassnameLabel()
- {
- return $this->classnameLabel;
- }
- /**
- * generate the breadcrumbs array
- *
- * @param $action
- * @param \Knplabs\MenuBundle\MenuItem|null $menu
- * @return array the breadcrumbs
- */
- public function getBreadcrumbs($action, MenuItem $menu = null)
- {
- $menu = $menu ?: new Menu;
- $child = $menu->addChild(
- $this->trans(sprintf('link_%s_list', $this->getClassnameLabel())),
- $this->generateUrl('list')
- );
-
- $childAdmin = $this->getCurrentChildAdmin();
- if ($childAdmin) {
- $id = $this->container->get('request')->get($this->getIdParameter());
- $child = $child->addChild(
- (string) $this->getSubject(),
- $this->generateUrl('edit', array('id' => $id))
- );
- return $childAdmin->getBreadcrumbs($action, $child);
-
- } elseif ($this->isChild()) {
- if($action != 'list') {
- $menu = $menu->addChild(
- $this->trans(sprintf('link_%s_list', $this->getClassnameLabel())),
- $this->generateUrl('list')
- );
- }
- $breadcrumbs = $menu->getBreadcrumbsArray(
- $this->trans(sprintf('link_%s_%s', $this->getClassnameLabel(), $action))
- );
- } else if($action != 'list') {
- $breadcrumbs = $child->getBreadcrumbsArray(
- $this->trans(sprintf('link_%s_%s', $this->getClassnameLabel(), $action))
- );
- } else {
- $breadcrumbs = $child->getBreadcrumbsArray();
- }
- // the generated $breadcrumbs contains an empty element
- array_shift($breadcrumbs);
- return $breadcrumbs;
- }
- /**
- * set the current child status
- *
- * @param boolean $currentChild
- * @return void
- */
- public function setCurrentChild($currentChild)
- {
- $this->currentChild = $currentChild;
- }
- /**
- * return the current child status
- *
- * @return bool
- */
- public function getCurrentChild()
- {
- return $this->currentChild;
- }
- /**
- * return the current child admin instance
- *
- * @return Admin|null the current child admin instance
- */
- public function getCurrentChildAdmin()
- {
- foreach($this->children as $children) {
- if($children->getCurrentChild()) {
- return $children;
- }
- }
- return null;
- }
- /**
- * translate a message id
- *
- * @param string $id
- * @param array $parameters
- * @param null $domain
- * @param null $locale
- * @return string the translated string
- */
- public function trans($id, array $parameters = array(), $domain = null, $locale = null)
- {
- $domain = $domain ?: $this->translationDomain;
-
- return $this->container->get('translator')->trans($id, $parameters, $domain, $locale);
- }
- /**
- * set the translation domain
- *
- * @param string $translationDomain the translation domain
- * @return void
- */
- public function setTranslationDomain($translationDomain)
- {
- $this->translationDomain = $translationDomain;
- }
- /**
- * return the translation domain
- *
- * @return string the translation domain
- */
- public function getTranslationDomain()
- {
- return $this->translationDomain;
- }
- }
|