Improve the typed data API usage of configuration schema
Follow-up to #1866610: Introduce Kwalify-inspired schema format for configurationHere are some thoughts/questions/suggestions related to the typed data API integration of the config-schema:- It looks...
View ArticleQuery limit in node_admin_nodes() function still hardcoded to "50"
The number of nodes shown on the content admin page (admin/content) is still hardcoded to the value "50" in node.admin.inc:<?php$nids = $query ->fields('n',array('nid')) ->limit(50)...
View ArticleOnly load all modules when a hook gets invoked
Sort-of follow-up to #1058720: Lazy load modules which I've marked as won't fix.Now there's the extension handler, there's the possibility to load all modules only when hooks are invoked (ideally only...
View ArticleChanges to $form_state['values'] are not reflected on form rebuild
Try this code:<?phpfunction MYMODULE_myform($form, &$form_state) { $form['myfield'] = array( '#type'=> 'textfield', '#title'=> 'MyField', ); $form['actions'] = array('#type'=>...
View ArticleContextual Links Needs Title to be Included in "Open configuration options...
As discussed here #849926-71: links wrapped in .contextual-links-wrapper divs are not accessible at all via keyboard alone also problems with screen readers - VoiceOver doesn't tell you what block you...
View ArticleSkip to Main Squished to long one character line
I'm not sure when this changed, but it's been bust for a while now. When tabbing into the site, the skip to main link is distorted. Rather than being wide it is very tall and narrow.Attached are 3...
View ArticleDisplay which vocabulary the taxonomy belongs when editing a term
Problem/MotivationIn large sites with thousands of terms across different vocabularies it is not possible to know which vocabulary the terms belong to when editing it. I have a situation where the term...
View ArticleUpdate CKEditor library
The CKEditor library was added to core over at #1878344: Add CKEditor JS library to core. They are working on addressing the gaps that we've identified, and their work is now available in a Drupal 8...
View ArticleImprove UnitTestBase's DX by removing access to global user object
This comes from #1904508: Convert JSON-LD tests to DrupalUnitTestBase, where I was converting a WebTest to a DrupalUnitTest. The test passed when run in the UI, but not when run by run-tests.sh. This...
View ArticleSupport templates in core/includes/templates/
Problem/MotivationDrupal currently has no way of supporting templates for theme implementations defined in core/includes/* except by searching in themes/ directories drupal_find_theme_templates.In our...
View ArticleEntityReference style plugin has preview method
Style plugins don't use preview() methods :)AttachmentSizeStatusTest resultOperationsd8.er-remove-preview.patch928 bytesIdlePASSED: [[SimpleTest]]: [MySQL] 48,946 pass(es).View details | Re-test
View ArticleEnforce the bundle constraint option to be always an array
Follow up from #1845546-121: Implement validation for the TypedData APIMaybe also improve how we deal with multiple-bundle metadata here?
View Articleform element #process callback won't get called when the element is used in...
I was working on my custom form element that i realized #process callback won't get called when the element isn't used on a non form rendering array. The workaround is to entirely on #theme callback...
View ArticleIntroduce theme_to_render helper function
Problem/MotivationIn the twig conversion of especially theme functions the problem occurs where to put the code and especially functionality like calling functions like theme() or l():* In the...
View ArticleMake feeds/feed items multilingual
This is a followup from #293318: Change notice: Convert Aggregator feeds into entities
View ArticleViews contextual filters
I am trying to create a view consisting of three contextual filters i.e "user:Business Name :title", "user:Full Name: tittle" and "user:Name:" fields. I studied the documentation of contextual filter...
View ArticleModify Forms API Widget
Hi,I wrote an own modul, which include a form. The module includes a form like this:<?phpfunction MYMODULE_form($form, &$form_state) {$form['zipcodes'] = array( '#weight'=> '-49',...
View ArticleJS error when visiting /core/install.php on already installed Drupal
Install Drupal Go to /core/install.phpJS error: TypeError: steps[(steps.length - 1)] is undefinedAttachmentSizeStatusTest resultOperationscore-js-mobile-install.patch974 bytesIdlePASSED:...
View ArticlePHP Fatal error: Cannot use string offset as an array in CKEditor.php on line 95
I just got this error:PHP Fatal error: Cannot use string offset as an array in /DRUPAL8/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/editor/editor/CKEditor.php on line 95, referer:...
View ArticleMove views_fetch_base_tables() into ViewsDataCache class
This makes sense, as it is another function dealing only with views data.Patch to follow shortly.
View Article