123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614 |
- <?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\Form\Form;
- use Sonata\BaseApplicationBundle\Tool\Datagrid;
- abstract class Admin extends ContainerAware
- {
- protected $class;
- protected $listFields = false;
- protected $formFields = false;
- protected $filterFields = array(); // by default there is no filter
- protected $filterDatagrid;
- protected $maxPerPage = 25;
- protected $baseRouteName = '';
- protected $baseRoutePattern;
-
- protected $baseControllerName;
- protected $formGroups = false;
- // 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;
-
- /**
- * Reference the parent FieldDescription related to this admin
- * only set for FieldDescription which is associated to an Sub Admin instance
- *
- * FieldDescription
- */
- protected $parentFieldDescription;
- protected $loaded = array(
- 'form_fields' => false,
- 'form_groups' => false,
- 'list_fields' => false,
- 'urls' => false,
- );
- /**
- * todo: put this in the DIC
- *
- * @var array
- */
- protected $formFieldClasses = array(
- 'string' => 'Symfony\\Component\\Form\\TextField',
- 'text' => 'Symfony\\Component\\Form\\TextareaField',
- 'boolean' => 'Symfony\\Component\\Form\\CheckboxField',
- 'integer' => 'Symfony\\Component\\Form\\IntegerField',
- 'tinyint' => 'Symfony\\Component\\Form\\IntegerField',
- 'smallint' => 'Symfony\\Component\\Form\\IntegerField',
- 'mediumint' => 'Symfony\\Component\\Form\\IntegerField',
- 'bigint' => 'Symfony\\Component\\Form\\IntegerField',
- 'decimal' => 'Symfony\\Component\\Form\\NumberField',
- 'datetime' => 'Symfony\\Component\\Form\\DateTimeField',
- 'date' => 'Symfony\\Component\\Form\\DateField',
- 'choice' => 'Symfony\\Component\\Form\\ChoiceField',
- 'array' => 'Symfony\\Component\\Form\\FieldGroup',
- );
- protected $choicesCache = array();
- /**
- * return the entity manager
- *
- * @return EntityManager
- */
- abstract public function getEntityManager();
- /**
- * build the fields to use in the form
- *
- * @throws RuntimeException
- * @return
- */
- abstract protected function buildFormFields();
- /**
- * build the field to use in the list view
- *
- * @return void
- */
- abstract protected function buildListFields();
- abstract protected function getChoices(FieldDescription $description);
- abstract public function getForm($object, $fields);
- public function configure()
- {
- }
-
- /**
- * 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) {
- if (preg_match('@(Application|Bundle)\\\([A-Za-z]*)\\\([A-Za-z]*)Bundle\\\(Entity|Document)\\\([A-Za-z]*)@', $this->getClass(), $matches)) {
- $this->baseRoutePattern = sprintf('/%s/%s/%s',
- $this->urlize($matches[2], '-'),
- $this->urlize($matches[3], '-'),
- $this->urlize($matches[5], '-')
- );
- } else {
- throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', get_class($this)));
- }
- }
- 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) {
- if (preg_match('@(Application|Bundle)\\\([A-Za-z]*)\\\([A-Za-z]*)Bundle\\\(Entity|Document)\\\([A-Za-z]*)@', $this->getClass(), $matches)) {
- $this->baseRouteName = sprintf('admin_%s_%s_%s',
- $this->urlize($matches[2]),
- $this->urlize($matches[3]),
- $this->urlize($matches[5])
- );
- } else {
- throw new \RuntimeException(sprintf('Please define a default `baseRouteName` value for the admin class `%s`', get_class($this)));
- }
- }
- return $this->baseRouteName;
- }
- 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 doctrine class metadata handled by the Admin instance
- *
- * @return ClassMetadataInfo the doctrine class metadata handled by the Admin instance
- */
- public function getClassMetaData()
- {
- return $this->getEntityManager()
- ->getClassMetaData($this->getClass());
- }
- /**
- * 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()
- {
- $this->buildUrls();
- return $this->urls;
- }
- public function buildUrls()
- {
- if ($this->loaded['urls']) {
- return;
- }
- $this->urls = array(
- 'list' => array(
- 'name' => $this->getBaseRouteName().'_list',
- 'pattern' => $this->getBaseRoutePattern().'/list',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':list'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- 'create' => array(
- 'name' => $this->getBaseRouteName().'_create',
- 'pattern' => $this->getBaseRoutePattern().'/create',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':create'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- 'edit' => array(
- 'name' => $this->getBaseRouteName().'_edit',
- 'pattern' => $this->getBaseRoutePattern().'/{id}/edit',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':edit'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- 'update' => array(
- 'name' => $this->getBaseRouteName().'_update',
- 'pattern' => $this->getBaseRoutePattern().'/update',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':update'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- ),
- 'batch' => array(
- 'name' => $this->getBaseRouteName().'_batch',
- 'pattern' => $this->getBaseRoutePattern().'/batch',
- 'defaults' => array(
- '_controller' => $this->getBaseControllerName().':batch'
- ),
- 'requirements' => array(),
- 'options' => array(),
- 'params' => array(),
- )
- );
- $this->configureUrls();
- }
- public function 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, $params = array())
- {
- $url = $this->getUrl($name);
- if (!$url) {
- throw new \RuntimeException(sprintf('unable to find the url `%s`', $name));
- }
- if (!is_array($params)) {
- $params = array();
- }
- return $this->container->get('router')->generate($url['name'], array_merge($url['params'], $params));
- }
- /**
- * return the list template
- *
- * @return string the list template
- */
- public function getListTemplate()
- {
- return 'SonataBaseApplicationBundle:CRUD:list.twig.html';
- }
- /**
- * return the edit template
- *
- * @return string the edit template
- */
- public function getEditTemplate()
- {
- return 'SonataBaseApplicationBundle:CRUD:edit.twig.html';
- }
- public function getReflectionFields()
- {
- return $this->getClassMetaData()->reflFields;
- }
- public function getNewInstance()
- {
- $class = $this->getClass();
- return new $class;
- }
- /**
- * 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', $fieldDescription->getFieldName()));
- }
- $fieldDescription->setAssociationAdmin($admin);
- }
- /**
- * return the target objet
- *
- * @param $id
- * @return
- */
- public function getObject($id)
- {
-
- return $this->getEntityManager()
- ->find($this->getClass(), $id);
- }
- 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->formFields))
- );
- }
- // normalize array
- foreach ($this->formGroups as $name => $group) {
- if (!isset($this->formGroups[$name]['collapsed'])) {
- $this->formGroups[$name]['collapsed'] = false;
- }
- }
- }
- public function preUpdate($object)
- {
- }
- public function postUpdate($object)
- {
- }
- public function preInsert($object)
- {
- }
- public function postInsert($object)
- {
-
- }
- public function configureListFields()
- {
- }
- public function configureFilterFields()
- {
-
- }
- public function configureFormFields()
- {
- }
- public function getFilterDatagrid()
- {
- if (!$this->filterDatagrid) {
- $this->filterDatagrid = new Datagrid(
- $this->getClass(),
- $this->getEntityManager()
- );
- $this->filterDatagrid->setMaxPerPage($this->maxPerPage);
- // first pass, configure and normalize the filterFields array
- $this->filterDatagrid->setFilterFields($this->filterFields);
- $this->filterDatagrid->buildFilterFields();
- // update the current filterFields array and apply admin custom code
- $this->filterFields = $this->filterDatagrid->getFilterFields();
- $this->configureFilterFields();
- // set the final value to the datagrid
- $this->filterDatagrid->setFilterFields($this->filterFields);
-
- }
- return $this->filterDatagrid;
- }
- /**
- *
- */
- public function getRootCode()
- {
- return $this->getRoot()->getCode();
- }
- /**
- * return the master admin
- *
- */
- public function getRoot()
- {
- $parentFieldDescription = $this->getParentFieldDescription();
- if (!$parentFieldDescription) {
- return $this;
- }
- return $parentFieldDescription->getAdmin()->getRoot();
- }
- /**
- * Construct and build the form field definitions
- *
- * @return list form field definition
- */
- public function getFormFields()
- {
- $this->buildFormFields();
- return $this->formFields;
- }
- public function getListFields()
- {
- $this->buildListFields();
-
- return $this->listFields;
- }
- public function setBaseControllerName($baseControllerName)
- {
- $this->baseControllerName = $baseControllerName;
- }
- public function getBaseControllerName()
- {
- return $this->baseControllerName;
- }
- public function setConfigurationPool($configurationPool)
- {
- $this->configurationPool = $configurationPool;
- }
- public function getConfigurationPool()
- {
- return $this->configurationPool;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setFilterFields($filterFields)
- {
- $this->filterFields = $filterFields;
- }
- public function getFilterFields()
- {
- return $this->filterFields;
- }
- 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;
- }
- public function setParentFieldDescription($parentFieldDescription)
- {
- $this->parentFieldDescription = $parentFieldDescription;
- }
- public function getParentFieldDescription()
- {
- return $this->parentFieldDescription;
- }
- public function setSubject($subject)
- {
- $this->subject = $subject;
- }
- public function getSubject()
- {
- return $this->subject;
- }
- }
|