Can't save image style to field display settings
When editing the Display settings for one of my content types, I am unable to set any of my image fields to an image style. See attached images. I have ruled out PHP errors; I have run through the...
View ArticleRedirects for translation set migration path in Drupal 6 and 7
Problem/MotivationFollowing up from #2669964: Migrate Drupal 7 core node translations to Drupal 8, there are lots of related data to nodes that are now united in the migration to the same nodes. Say...
View ArticleAllow default format for REST resources
Currently, in order to use JSON format on GET request, REST API requires ?_format=json.I suggest introducing a default_format per resource to be used when no ?_format=json is provided.Proposed format...
View ArticleMigrate translated entity reference from D7 to D8
Problem/MotivationWhen migrating entity reference fields from a multilingual D7 site to a multilingual D8 site, I get the following error:"Value is not a valid entity." line 106 on...
View ArticleProvide menu links for Drupal Upgrade UI pages
Problem/MotivationI assumed that there already is an issue for this, but I couldn't find. The Drupal Upgrade UI module provides two pages /upgrade and /upgrade/log but there are no menu items for...
View ArticleRemove whitespace modifiers from links.html.twig
The template file links.html.twig has a lot of whitespace modifiers. These dashes here, {%- if heading -%}They were originally added when the template was converted, but don't seem to serve a purpose...
View ArticleEdit hook_help text for Drupal Upgrade UI module
Problem/MotivationThe help text of the Drupal Upgrade UI module does not follow the Help text standards as described in https://www.drupal.org/node/632280Proposed resolutionEditing the text according...
View ArticleFeb 21st: Convert chunk of WTB to BTB by just moving classes, changing use...
Problem/MotivationIn order to convert more tests from WTB to BTB in one big bang conversion we want to get some estimation of what kind of failures might exist.Proposed resolutionThis issue should...
View ArticleAdmin UIs on the front-end are difficult to theme
Problem/MotivationIt's important for administrative elements to maintain consistent elements and a visual language even if they are being presented to the user alongside the front-end of the site. For...
View ArticleUse getDisplayName() for user names consistently
Problem/MotivationRealname module alters the display name, but at user/1234 the username is shown. This is incorrect.Tons of places in core that show the username, but need to show the users display...
View ArticleAllow the PathValidator to match non-HTML/non-GET routes
Problem/MotivationAs we have seen in #2822190: PathValidator validates based on a RequestContext leaked from the current request, resulting in false negatives during CLI requests and POST submissions...
View ArticlePathValidator validates based on a RequestContext leaked from the current...
Problem/MotivationPathValidator::getPathAttributes() invokes the router with the global request context, does not use given request object for given path.Menu links created from CLI are stored...
View Articledocument special route names
The routing system has three special route names: <front>, <current>, and <none>.These are handled in Drupal\Core\Routing\NullGenerator::getRoute(), but not documented there.
View ArticleExpand the node grants system to a generic entity grants system
Before:db_select('node')->addTag('node_access')->execute(); $access = node_access('view', $node, $account); After:db_select('node')->addTag('entity_access')->addMetaData('entity',...
View ArticleProxy https support for drupal_http_request()
This issue is a fork from the issue #7881: Add support to drupal_http_request() for proxy servers (http not https) where community have scheduled to get support for SSL proxies using the curl library,...
View ArticleREST views specify HTML as a possible request format, so if there is a...
I think we need a new test for getting taxonomy terms via the REST API.When you try to get a taxonomy term with an "Accept" header of application/json. you get the following error: {"message":"Not...
View ArticleConfig entities implementing EntityWithPluginCollectionInterface should ask...
Problem/MotivationWhen a config entity implementing EntityWithPluginCollectionInterface is reacting on dependency removal, it should ask the plugins from the collections if they want to take some...
View ArticleUnable to delete multiple contents in drupal 7
I am able to delete individual content by clicking on the delete link, but if I select some contents and then select the Delete Selected Content Option in the Update Options dropdown and click the...
View ArticleMove global comment permissions to comment-type level
Problem/MotivationThe work being done in #731724: Convert comment settings into a field to make them work with CMI and non-node entities will result in that comments can be used on any entity just by...
View ArticleNew class: Drupal\Core\Template\AttributeCssClass
About a third of Drupal\Core\Template\Attribute is just for CSS Class handling. This code should be moved to it's own handler class.The new AttributeCssClass will descend from AttributeArray and that...
View Article