Stop auto-creating FieldItems on mere reading of $entity->field[N]
Helper issue: #2353411: Helper issue for #2164601 - stop auto-creating FieldItems Sandbox branch: 2164601-list_auto_create in http://cgit.drupalcode.org/sandbox-yched-1736366Problem/MotivationJust...
View Articleforum_node_view attempt an unnecessary vocabulary_load() under certain...
When enabled, at each node view the forum module will attempt a vocabulary_load() even when not necessary.This can be avoided by moving 2 lines of code inside a if. Easy win. If we don't, we'll have...
View ArticleImprove the UI for filling in help topic references
As a follow-up to #2351991-52: Replace hook_help() topic pages with config entities -- assuming that issue gets in (this issue is postponed until then):There are two fields when you are editing a Help...
View ArticleError: Additional uncaught exception thrown while handling exception
I get this error message at my fresh D8 initial home page / install page:My system: PHP 5.5.13 Maria DB 5.5.5-10.0.12-MariaDB NGINX 1.6.1Additional uncaught exception thrown while handling...
View Articletranslation_node_insert() updates the node table directly without also...
With a persistent entity cache, this means the following problem is very easy to replicate:1) Create node A1 2) Translate node A1 as A2The database is correct for both nodes (both tnids pointing to the...
View ArticleRemove usage of form_builder().
Meta Issue.#2205673: [meta] Remove all @deprecated functions marked "remove before 8.0"
View ArticleRemove form.inc form_builder().
Meta Issue.#2205673: [meta] Remove all @deprecated functions marked "remove before 8.0"
View ArticleSimplify $language max weight code using max()
Problem/Motivation<?phpif (!$language->isLocked() && $language->getWeight() > $max_weight) {Â $max_weight = $language->getWeight();}?>Proposed resolutionUse max()Remaining...
View ArticleRegression: Allow HTML tags inside detail summary
When using the fieldset FAPI element it was possible to output HTML tags as part of the legend, when switching to the details FAPI element, this is no longer possible.Attached patch fixes this
View ArticleMove miscellaneous system classes from preprocess to templates
Move classes out of the preprocess functions and into the Twig templates. Use the addClass() attribute method to add classes in the template. Use the clean_class filter to filter class names, if...
View ArticleAdd test for verticle_tabs default
Right now I have no idea of knowing if the verticle_tabs #default_tab actually works as describe.Sadly there doesn't seem to be a test for testing this functionality. I have a feeling I'm doing...
View ArticleConvert "Active forum topics" block to a View
Problem/MotivationThe title says it.This is part of #1823450: [Meta] Convert core listings to ViewsFrom xjm's comment in #1823450-5: [Meta] Convert core listings to Views: Would probably need forum...
View ArticleD6->D8 Migration missing variable: cache
Problem/MotivationThe cache variable does not have a migration to D8 (system.performance.cache.page.use_internal).Proposed resolutionCreate the migration.Remaining tasksCreate the migration, write the...
View ArticleStandardize book & forum entity route names
Follow-up to #2285413: [Meta] Standardize entity route namesProblem/MotivationOriginal meta issue needs this follow-up to clean-up more routesProposed resolutionExtract changes from #2281645: Make...
View ArticleTwig debug output does not display all suggestions when an array of...
Updated: Comment #NProblem/MotivationWhen an array of suggestions is passed to theme(), the twig_debug output doesn't match up.Proposed resolutionDisplay the suggestions that are passed in as an...
View ArticleShortcut::getRouteParams() should be named getRouteParameters() for consistency
Drupal\Core\Url::getRouteParameters() Drupal\Core\Menu\MenuLinkInterface::getRouteParameters() Drupal\menu_link_content\MenuLinkContentInterface::getRouteParameters()but...
View ArticleRemove usage of form_get_cache()
Part of #2205673: [meta] Remove all @deprecated functions marked "remove before 8.0"
View ArticleLet AggregatorItemViewsData and AggregatorFeedViewsData use EntityViewsData
Problem/MotivationWe do have a generic automatic views integration for entities, let's use it to safe some code.Proposed resolutionLet AggregatorItemViewsData and AggregatorFeedViewsData extend...
View ArticleAdd methods for adding/removing attributes (not classes) on Attribute objects
Problem/Motivation#2285451: Create addClass() and removeClass() methods on Attribute object for merging css class names. added methods on the Attribute class to add and remove CSS classes. This is...
View Article