[meta] Replace config() with Drupal::config()
Follow-up of #1937600: Determine what services to register in the new Drupal classReplace all calls to config() with Drupal::config() and then remove the config() function.
View ArticleReplace entity_query() with Drupal::entityQuery()
Follow-up of #1937600: Determine what services to register in the new Drupal classReplace all calls to entity_query() with Drupal::entityQuery() and then remove the entity_query() function.
View ArticleReplace calls to the flood service with Drupal::flood()
Follow-up of #1937600: Determine what services to register in the new Drupal classReplace all calls to the flood service with Drupal::flood(). Postponed on #1938390: Convert contact_site_page and...
View ArticleReplace calls to module_handler service with Drupal::moduleHandler()
Follow-up of #1937600: Determine what services to register in the new Drupal classReplace all calls to the module_handler service with Drupal::moduleHandler().
View ArticleDiscuss whether to add a request() method to \Drupal
Problem/Motivation#1937600: Determine what services to register in the new Drupal class adds methods to the Drupal class for services that are intended as public APIs. That issue originally proposed...
View ArticleReplace typed_data() with Drupal::typedData()
Follow-up of #1937600: Determine what services to register in the new Drupal classReplace all calls to typed_data() with Drupal::typedData() and then remove the typed_data() function.
View ArticleShorter descriptions on admin/structure/types/add
Looking at /admin/structure/types/add I think we can remove some words from descriptions to clean up the overall form a bit without losing too much information. I changed two descriptions and reduced...
View ArticleStop exposing dynamic field data tables in hook_schema() ?
field_sql_storage_schema() exposes the schema of dynamic field data tables. That's a *lot* of data in drupal_get_schema(), and computing it from configuration data on sites with lots of fields takes...
View ArticleTitle setting in views UI can be confusing
Whilst building a blog in Drupal 8 I tried to change the title of the default frontpage view. The experience was quite confusing because it didn't work #1956912: Title area handler sets the title all...
View ArticleLet users set the block instance title for Views blocks
Problem/MotivationFrom #1938062: Convert the recent_comments block to a view. Right now, Views goes out of its way to override the block form and prevent the user from creating a Views block instance...
View ArticleAdd a helper function to the PHPUnit UnitTestCase that returns a config...
A lot of classes take the config factory service as a dependency simply because some particular config setting needs to be checked somewhere along the way. For unit testing these classes, it makes...
View ArticleUse the entity storage controller in aggregator module
Followup from #1930274-45: Change notice: Convert aggregator processors and parsers to pluginsReplace db_* calls for aggregator feeds and items with the entity storage controller/ entity_query equilavent
View ArticleAdd rootatwc as aggregator maintainer in MAINTAINERS.txt
Followup from #1930274-56: Change notice: Convert aggregator processors and parsers to plugins Seems aggregator has no maintainers atm and i have done quite some work already converting feeds to...
View ArticleMake possible for parsers and fetchers to expose configuration through plugins
Right now, only processors can expose configuration from the plugins..if you need to provide configuration for a parser or fetcher you have to hoook_form_alter We should make the API consistent and...
View ArticleAdd some settings on the block display to allow overrides on the block...
On #1938062: Convert the recent_comments block to a view it came up, that people should maybe not have access to the full view settings, but change just some certain bits of it.The proposed...
View ArticleImprove Color's admin interface on touch devices
It's possible to 'tap' to change a value in a color wheel, with considerable interface lag, but tapping and dragging is not possible.We can make this better.
View ArticleStumped trying to get axonomy terms to display inline
I'm working on a D7 dev site in Corporate Clean and I can't figure out how to get taxonomy terms to display inline, as opposed to vertically as the screenshots will demonstrate. This should be an easy...
View ArticleRemove remaining procedural ajax command usages.
#1938980: Move controller derivation to route enhancers went into various troubles with using '#type' => 'ajax', so let's replace all of the places to use AjaxResponse directly.
View ArticleWrong data in the cache_path when using the pager - includes/path.inc
Problem<?php$cid = current_path();cache_set($cid.....);cache_get($cid.....);?> current_path() not return path with page number. We have for example 20 nodes per page, when visiting path /forum,...
View Articlemanaged_file inside fieldset returns 0 upon submission without previous upload
Steps to recreate the bug: I have MENU_EDIT_ITEM form altered by adding managed_file element (kind of icon for the link). There are two situations: a) - managed_file is placed right in $form as 'root'...
View Article