Issue is fixed in the latest release
Added SQL query to find list of cache tables and disable other cache bins to keep cache data.
Adding the defer tag instead of deferjs
jeetmail72 → created an issue.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
A patch has been added to the 11.0.1 release.
Patch added into 2.0.1 release
Issue has been fixed in the new release
Needs review
Added patch for the Drupal 11 compatibility
jeetmail72 → made their first commit to this issue’s fork.
jeetmail72 → changed the visibility of the branch 3521706-cannot-load-the to hidden.
I fixed the issue and adding the patch here.
jeetmail72 → created an issue.
Remove the duplicate string 'added' from the 'The CSRF token is not added when the URL
object is rendered.'
Drupal 11 compatibility added
Drupal 11 compatibility added
Drupal 11 compatibility added
Drupal 11 compatibility added
Drupal 11 compatibility added
Drupal 11 compatibility added
Drupal 11 compatibility added
Hey, Any update on this issue?
Added $query->accessCheck(FALSE)
for the entityQuery() and entityTypeManager() query.
Replace $selector from the CloseModalDialogCommand()
$response->addCommand(new CloseModalDialogCommand($selector, $persist));
with
$response->addCommand(new CloseModalDialogCommand($persist));
Replace DerivativeBase
with DeriverBase
under Dynamic contextual link generation section
Replace depreciated service path.alias_manager
with path_alias.manager
Added drush devel-services
to view available services in the Drupal 10+
Correct the order of cache context. The cache contexts are listed in the order of alphabetical.
foo:bar:[languages:language_interface]=en:[user.permissions]=A_QUITE_LONG_HASH:[route]=myroute.ROUTE_PARAMS_HASH
replace with
foo:bar:[languages:language_interface]=en:[route]=myroute.ROUTE_PARAMS_HASH:[user.permissions]=A_QUITE_LONG_HASH
By convention, they are of the form thing:identifier
— and when there's no concept of multiple instances of a thing, it is of the form thing
. The only rule is that it cannot contain spaces.
Replace with below to simply the concept
By convention, identifiers follow the format thing:identifier
. When there is no concept of multiple instances of a thing, the format is simply thing
. The only rule is that identifiers cannot contain spaces.
Remove implements BlockPluginInterface when extending the BlockBase class. The BlockBase class itself implements BlockPluginInterface.
I added an Example of cache context code snippets.
The drupal_get_path() deprecated in Drupal 9.3.
Replace the deprecated code with the Drupal service.
$path = drupal_get_path('module', 'your_module') . '/templates/email-table.html.twig';
with
$modulePath = \Drupal::service('extension.path.resolver')->getPath('module', 'learning');
$path = $modulePath . '/templates/email-table.html.twig';
Replaced
<a href="{{ url('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="site-logo"></a>
with
{% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %}
Replaced twig_debug to debug and twig_auto_reload to auto_reload
Added code to disable all Drupal cache bins and cache.backend.null services into services.yml file
Before:
In order to set the default value for any form element , you’ll need to add a config/install/THEME.settings.yml file with a simple line: SETTING_NAME: DEFAULT_VALUE.
After
In order to set the default value for any form element you add, you’ll need to add a config/install/THEME.settings.yml file with a simple line: SETTING_NAME: DEFAULT_VALUE.
The changes are deployed in the release of 1.0.7
I applied the patch and it is working fine in the Drupal 10.2 version
The changes are deployed in the release of 1.0.7
The changes are deployed in the release of 1.0.7
Added some more possible cache bins
$cache_bins = array('bootstrap','config','data','default','discovery','dynamic_page_cache','entity','menu','migrate','render','rest','static','toolbar');
replace with
$cache_bins = ['bootstrap', 'config', 'data', 'default', 'discovery', 'discovery_migration', 'dynamic_page_cache', 'entity', 'jsonapi_memory', 'jsonapi_normalizations', 'jsonapi_resource_types', 'menu', 'migrate', 'page', 'render', 'rest', 'static', 'toolbar'];
The issue has been fixed
I apply the patch and test the functionality. It is working as expected
The patch was added to 1.0.6 release
The patch was added to 1.0.6 release
I apply the patch and test the functionality. It is working as expected
The patch was added to 1.0.6 release
I apply the patch and test the functionality. It is working as expected
The patch was added to 1.0.6 release
I apply the patch and test the functionality. It is working as expected
The patch was added into 1.0.6 release
I apply the patch and test the functionality. It is working as expected
Linking it to the Drupal State static function https://api.drupal.org/api/drupal/core%21lib%21Drupal.php/function/Drupa...