This document describes the backwards incompatible changes introduced by each EasyAdminBundle version and the needed changes to be made before upgrading to the next version.
-
The route used to generate every backend URL is now called
easyadmin
instead ofadmin
. This change has been introduce to prevent collisions with your existing backend routes, where is common to use theadmin
route name.In order to upgrade, you just need to replace
admin
byeasyadmin
in allpath()
,generateUrl()
andredirectToRoute()
calls.
-
The configuration of the backend is no longer processed in a compiler pass but generated with a cache warmer. This is done to avoid issues with Doctrine and Twig services, which are needed to process the configuration but they are not fully available during the container compilation.
-
In the development environment, the backend config is fully processed for each request, so you might notice a slight performance impact. In exchange, you won't suffer any cache problem or any outdated config problem. In production the backend config is fully processed in the cache warmer or, if any problem happened, during the first request. Then the config is cached in the file system and reused in the following requests.
-
The
easyadmin.configurator
service has been renamed toeasyadmin.config.manager
-
The
easyadmin.config
container parameter no longer contains the fully processed backend configuration. Now it only contains the configuration that the developer defined in their YAML files. The equivalent way to get the fully processed backend config is to use theeasyadmin.config.manager
service:// Before $backendConfig = $this->getParameter('easyadmin.config');
// After $backendConfig = $this->get('easyadmin.config.manager')->getBackendConfig();
- Web assets are now combined and minified to improve frontend performance. In
previous versions, CSS and JS were included by loading lots of small files.
Starting from this version, the backend only loads one CSS file (called
easyadmin-all.min.css
) and one JS file (calledeasyadmin-all.min.js
). The individual CSS/JS files are still available in case you override the backend design and want to pick some of them individually. The new CSS/JSS files should be available in your application after upgrading this version bundle. If you have any problem, install the new assets executing theassets:install --symlinks
console command.
- The
renderCssAction()
method of the AdminController has been deprecated and its associated route@Route("/_css/easyadmin.css", name="_easyadmin_render_css")
has been removed. The custom CSS now is preprocessed during container compilation and the result is stored in the_internal.custom_css
option of the processed backend configuration.
findBy()
andcreateSearchQueryBuilder()
methods now receive two new parameters called$sortField
and$sortDirection
to allow sorting the search results.
-
The
isReadable
andisWritable
options are no longer available for each property metadata. These options were needed when we introspected the getters and setters of the properties ourselves. We now use the Symfony PropertyAccessor component to get and set values for entity properties. -
The
Configurator::introspectGettersAndSetters()
method, theReflection/ClassPropertyReflector
class and theeasyadmin.property_reflector
service have been deleted and replaced by the use of thePropertyAccessor
class, itsgetValue()
andsetValue()
methods and the@property_accessor
service.
-
The
render404error()
utility method has been removed fromAdminController
. This method was no longer used since we started throwing custom exceptions when an error occurs. -
The
ajaxEdit()
method of theAdminController
has been removed. This method had nothing to do with editing an entity via Ajax. It was just used to toggle the value of boolean properties. It has been replaced by a private method calledupdateEntityProperty()
.
-
The options that define if a entity property is readable and/or writable have changed their name to match the names used by Symfony:
// Before $propertyMetadata['canBeGet']; $propertyMetadata['canBeSet']; // After $propertyMetadata['isReadable']; $propertyMetadata['isWritable'];
This only affects you if you make a very advance use of the bundle and override lots of its functionalities.
-
The
form.html.twig
template has been removed and therefore, you cannot define theeasy_admin.design.templates.form
to override it by your own template. If you want to customize the forms of the backend, use a proper Symfony form theme and enable it in theeasy_admin.design.form_theme
option.
In order to improve the consistency of the backend design, all CSS class names
have been updated to use dashes instead of underscores, to match the syntax
used by Bootstrap classes. This means that field_date
is now field-date
,
theme_boostrap...
is now theme-bootstrap...
, etc.
Moreover, the global css
class applied to the <body>
element of each view
has changed:
View | OLD <body> CSS class |
NEW <body> CSS class |
---|---|---|
edit |
admin edit <entity name> |
easyadmin edit edit-<entity name> |
list |
admin list <entity name> |
easyadmin list list-<entity name> |
new |
admin new <entity name> |
easyadmin new new-<entity name> |
show |
admin show <entity name> |
easyadmin show show-<entity name> |
All these changes only affect you if your backend uses a custom stylesheet.
The class
option has been renamed to css_class
.
Before:
easy_admin:
actions:
# ...
- { name: 'edit', class: 'danger' }
entities:
# ...
fields:
- { property: 'id', class: 'col-md-12' }
After:
easy_admin:
actions:
# ...
- { name: 'edit', css_class: 'danger' }
entities:
# ...
fields:
- { property: 'id', css_class: 'col-md-12' }
// Before
protected function prepareNewEntityForPersist($entity) { ... }
// After
protected function prePersistEntity($entity) { ... }
// You can also create custom methods for each entity
protected function prePersistUserEntity($entity) { ... }
protected function prePersistProductEntity($entity) { ... }
// ...
// Before
protected function prepareEditEntityForPersist($entity) { ... }
// After
protected function preUpdateEntity($entity) { ... }
// You can also create custom methods for each entity
protected function preUpdateUserEntity($entity) { ... }
protected function preUpdateProductEntity($entity) { ... }
// ...
The strategy used to determine the entity name has change in preparation for some planned features.
Previously, the entity name was infered from the entity class name. Now the entity name is the value used as the YAML key of the configuration file:
# Before (label = name = TestEntity)
easy_admin:
entities:
MyEntity: 'AppBundle\Entity\TestEntity'
# After (label = name = MyEntity)
easy_admin:
entities:
MyEntity: 'AppBundle\Entity\TestEntity'
This change probably doesn't affect your backend, because so far the entity name is mostly an internal thing used as part as the URL of the backend pages. In the next version of the bundle this value will be used as some PHP method name. Therefore, developer must have absolute control over the entity name and EasyAdmin should not autogenerate it.
Previously, the YAML key of the configuration file was used to set the entity
label for the entities which didn't define the label
option. This label is
used in some buttons, the main menu and the page title. Therefore, you could
use any character for the entity name, including white spaces.
Now entity names can only contain numbers, characters and underscores, and the
first character cannot be a number. This allows to use the entity name as part
of the name of some PHP methods. In order to use a fancy entity label, just
define the label
option:
# BEFORE
# this will throw an exception in the new bundle version
easy_admin:
entities:
'My Fancy Entity!': 'AppBundle\Entity\TestEntity'
# AFTER
easy_admin:
entities:
MyEntity:
class: 'AppBundle\Entity\TestEntity'
label: 'My Fancy Entity!'
The former _entity
variable was used to retrieve the current entity configuration.
This variable has been renamed to _entity_config
for convenience and readability reasons.
The old item
variable was used to carry the currently created/edited entity.
This variable has been renamed to entity
for better understandability.
Be sure that you did not override these variables, if so, you just have to change the name.
These changes affect you only if you have customized any of the following templates in your backend:
form/entity_form.html.twig
template has been renamed toform.html.twig
_list_paginator.html.twig
template has been renamed to_paginator.html.twig
_flashes.html.twig
template has been removed because it wasn't used in any other template
Full version details: https://github.com/javiereguiluz/EasyAdminBundle/releases/tag/v1.4.0