msankhala → created an issue.
breidert → credited msankhala → .
I see some of the information are outdated. I see the need to update them in context to Xdebug v3.*. Recently I made the change to
Profiling memory usage →
page. As it was not relevant for Xdebug v3.*.
Also I want to add two pages one related to Profile function usage and Slow query logs That will explain how can you profile the functions call counts and time consumptions on any page. Also how to quickly check the slow query logs to identify the slow query.
Added the section to use the xdebug settings as per the Xdebug v3.
thejimbirch → credited msankhala → .
msankhala → created an issue.
I have made you a maintainer.
I just saw your profile, You are an experienced Drupal developer. :) I would be happy to make you a co-maintainer if you want to release the D10 version by yourself.
Yes, This module is maintained. I would be happy to release a D10 version if you can submit D10 compatible patch.
Patch #5 works fine. If there are no schemes configured then the "Scheme 1" tab shows proper instructions:
First, select one or more vocabularies on the settings tab. Then, return to this page to complete configuration.
Which I believe is good enough, instead of hiding the "Scheme 1" entirely until you select the vocabulary.
Have you tried with Guzzle 7 HTTP Adapter? It is already mentioned in the Dependency section in the module description. `Guzzle 7 HTTP Adapter (if you are using D10)`.
Fixed in 1.1.x dev branch. This will reflect in the next beta release. There are a couple of warnings that can be ignored as of now.
This will be fixed in the stable version. This is still in beta release. I would appreciate the real bug fix instead of just coding standard fix.
+++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/LanguageFormatter.php
@@ -117,9 +117,17 @@ protected function viewValue(FieldItemInterface $item) {
+ // Values like \Drupal\Core\Language\LanguageInterface::LANGCODE_NOT_SPECIFIED
+ // and \Drupal\Core\Language\LanguageInterface::LANGCODE_NOT_APPLICABLE are
+ // not returned from the language manager above.
The line should not exceed 80 characters. This can be rephrased as:
// \Drupal\Core\Language\LanguageInterface::LANGCODE_NOT_SPECIFIED
// and \Drupal\Core\Language\LanguageInterface::LANGCODE_NOT_APPLICABLE are
// not returned from the language manager above.