uri() override documentation need updating.
In my core travels I found "public function uri()" was doc blocked "Overrides \Drupal\Core\Entity\Entity::getRevisionId().". It needs to be "Overrides \Drupal\Core\Entity\Entity::uri().".Super trivial...
View ArticleLangcode column added to search_index and search_dataset tables but there is...
#1669876: Add missing language functionality in search module added the langcode field to search_dataset and search_index but there is no upgrade path.Also we need to work out how to upgrade the...
View ArticleAdd format_plural to twig filters
Problem/Motivationformat_plural would be nice to have in the twig files instead of preprocessors.Proposed resolutionAdd format_plural to twig filters listMap i18n trans block to drupal format_plural()...
View Articlefield_read_fields Parameter $params does not support columns from the...
API page: http://api.drupal.org/api/drupal/modules%21field%21field.crud.inc/functi...ProblemIn the documentation for field_read_fields, the first Parameter $params says the following:array $params: An...
View ArticleRemove the tight coupling between Block Plugins and Block Entities
In the process of moving block configuration to be configuration entities, I feel we ended up tightly coupling too much of the block system with a supporting entity structure, and we should fix that...
View ArticleImagefields do not support REST operations
Imagefields do not currently work with the new REST GET/POST/PATCH/PUT operations. The plan is to let clients POST a base64 encoded string containing image data. A new deserializer for imagefields will...
View ArticleViews schema still using 'disabled' key
Just noticed this while re rolling #1888390: Change 'human_name' to 'label' and replace View::getHumanName() with View::label(), we should change this to 'status' instead.AttachmentSizeStatusTest...
View ArticleResolve the new @todo in PluginUIBase
#1836008: Remove drupal_classloader() use in Drupal\Core\AnnotatedClassDiscovery introduced // @todo Find out how to let the manager be injected into the class.
View ArticleText formats are not translatable
The text formats (such as "Filtered HTML") do not show up in the Drupal translate interface.So they are always shown in the editor and comments in Englisgh instead of the correct language.
View ArticleAlways return an array from field_get_items()
While un-common in core, the following pattern is used a lot in the wild:<?phpif ($items = field_get_items($entity, $field_name, $langcode)) { foreach ($items as $item) { ... }}?>So couldn't...
View ArticleHow to create Data Feed for Google merchant center in drupal
i have tried following moduleshttp://drupal.org/project/uc_gbase andhttp://drupal.org/project/commerce_gmerchantbut didn't work.So , how to export CSV or Text file for products which we can upload on...
View ArticleQueue system createItem() should return ID, and $item properties should be...
Discussion with Queue system maintainer Mark Sonnabaum while trying to use the core queue API for more complex tasks, I'm running into a couple bugs/flaws.The more annoying is that the createItem()...
View ArticleBootstrapping Drupal from outside the Drupal root directory
Problem/MotivationThis is a new thread to gather discussion, regarding the issue that it's currently problematic to bootstrap Drupal from a PHP script that lives outside of the Drupal root directory...
View ArticleMake usage of book.settings:allowed_types consistent
Problem/MotivationThe format in the book.settings.yml file initially is:allowed_types: - bookblock: navigation: mode: all pageschild_type: bookAfter saving the form, looking at the file in...
View ArticleAutocomplete position incorrect when in a modal dialog
When using an autocomplete form field in a CTools modal dialog (for example a Fieldable Panel Pane with an Entity Reference field), the position of the autocomplete result is incorrect if the user has...
View ArticleUpdate jquery form to the current version (3.27)
It's required for #1843220: Convert form AJAX to new AJAX API to have a recent version of jquery forms.
View ArticleUpdate documentation of admin_compact_mode in system module
Update documentation of admin_compact_mode in system module * If the user does not have the cookie, the default value is given by the * system variable 'admin_compact_mode', which itself defaults to...
View ArticleAllow configurable default config directory
Currency 7.x-2.x uses external libraries with Yaml files that are used as configuration files. The idea was that in Drupal 8, these files could be used as default configuration. However, they are not...
View ArticleUpdate mail interfaces
Follow up of #1821420-73: Convert mail variables to cmi to update mail interfaces+++ b/core/includes/mail.incundefined@@ -231,7 +231,7 @@ function drupal_mail($module, $key, $to, $langcode, $params =...
View ArticleEntityMalformedException: Missing bundle property on entity of type node
i have this log after updating to 7.20 : EntityMalformedException: Missing bundle property on entity of type node. in entity_extract_ids() (line 7633
View Article