[META] Convert page callbacks to controllers
We now have a shiny new routing system that supports object-based controllers. Now we need to port core over to it!For instructions on how to convert a page callback into a controller, see the WSCCI...
View ArticleMake usage of shortcut.settings.links consistent
Problem/MotivationCurrently links saved as link_id: link_id (Refer screenshot below). This is related to #1928082: Make usage of book.settings:allowed_types consistentProposed resolutionFix the way...
View ArticleStandardize label of langcode field in schema files.
Follow up for #1964648: Create configuration schemas for editor moduleProblem/Motivation*.schema.yml files has different label("Langcode", "Language", "Default language".) for 'langcode' field.Proposed...
View ArticleHow to setup a drupal server
How do I setup a server that will support drupal on it? What are all the services/protocols that I must install on the OS for it to support Drupal?
View ArticleAdd bundle support to EntityTest* entity types
Problem/MotivationThe idea of adding bundles to entity_test(_*) entity types from #1822000: Clean up Drupal\field_test\Plugin\Entity\Type\TestEntity is very useful on its own for new tests that need...
View Articlespecify a dependency on dev code
I would like a way to express in an info file that a module depends on a particular version of another module OR that module's dev branch. For example:dependencies[] = somemodule(>7.x-1.0-alpha2,...
View ArticleUTF8 charset in node-text is change to ISO-88xx when saving the node
My theme setting is <meta charset="utf-8" /> but the text inside all nodes is created with ISO-character standard on ÅÄÖåäö ie? Is this "normal" or "bad", or have I missed something? My question...
View ArticleTwig debug mode breaks tests
I don't think is is necessarily a bug as such, but automated tests that perform assertions directly against rendered HTML will fail when Twig debug mode is enabled. This is because the debug mode wraps...
View Articlefield_cache_clear issue
I have 1.1GiB cache_field (~1200 types and many fields) and when I want to create one new type it turns into horror because the Drupal truncate the cache_field table each time I create a new type and a...
View ArticlePostgreSQL incompatibility in system_update_7078()
Exact error : SQLSTATE[42P07]: Duplicate table: 7 ERROR: relation "date_formats_formats_key" already existsSeems to be caused by the use of "BINARY" (invalid in Postgre) in...
View ArticleSet a file field default value from URL
I can't seem to set a default value for a file field from a URL or any other method.I have tried all the file sources modules. I cannot seem to find a way to do this with hook_form_alterPlease Help...
View ArticleSet a file field default value from URL
I can't seem to set a default value for a file field from a URL or any other method.I have tried all the file sources modules. I cannot seem to find a way to do this with hook_form_alterPlease Help...
View ArticleAdd REST test coverage for nodes
Now that nodes are converted to EntityNG we should make sure in rest.module that they work in the REST API as expected. I think testing deletion should be easy, we can add that to the existing test...
View ArticleRemove CSS ID on blocks
Since blocks can now be placed more than once on a page we need to remove the block ID in favor of classes in order to produce valid HTML.
View ArticleRemove the DIV tag around block content
Remove the div around block content - and make sure this doesn't break any CSS defined in core modules.Current block code:<div class="block {{ attributes.class }}"{{ attributes }}> {{...
View Articlefollow-up: update to jQuery 1.9 version
#1799594: Update to jQuery 1.9 version jQuery 1.9 is now in core.Details:A giant patch was made to do that. Thanks to everyone who worked on it! jQuery touches a lot of stuff in Drupal, so there's a...
View ArticleTeaser image links to admin Product page and not to Content as set in Product...
Just updated to 7.22 and now all teaser images will not point to "Content". I also updated Commerce Module. My Product Teaser images point to admin Product page. I have gone into Product Type display...
View ArticleUser compact view mode is not configured in minimal
AttachmentSizeStatusTest resultOperationsSelection_131.png27.87 KBIgnored: Check issue status.NoneNone
View ArticleAllow a queue worker callback to be a class method
As we turn more and more to OOP this makes sense, doesnt it?:)drupal_cron_run() right now:<?php $function = $info['worker callback']; $end = time() + (isset($info['cron']['time']) ?...
View ArticleConvert aggregator_admin_refresh_feed to a new style controller
Part of #1971384: [META] Convert page callbacks to controllers
View Article