- π³πΏNew Zealand quietone
This is a coding standard fix and they are now done by sniff, not file. See π± [meta] Fix Drupal.NamingConventions.ValidVariableName.LowerCamelName Active
The Rss view style plugin sets some namespaces and its channel elements in a class property but never defines it. As these properties are accessed from the outside in template_preprocess_views_view_rss()
those should be defined as public properties.
Drupal\views\Plugin\views\style\Rss::render()
method's code in core/modules/views/src/Plugin/views/style/RssExtended.php
to see that $this->namespaces
and $this->channel_elements
are assigned some values without ever defining themRss::channel_items
has to be rewritten in camel-case format to Rss::channelElements
to fulfill code style rules. If so, there has to be a fallback mechanism (e.g. via magic __get()
method to still allow (but deprecate) usage of Rss::channel_elements
. Another option is to provide getter methods for these properties, but this may result in even more backwards compatibility issues.n/a
Rss::channel_elements
is rewritten to camel-case format there may a deprecation for its old notationn/a
Fix usage of undefined properties in Rss views style plugin
Postponed
11.0 π₯
Last updated
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This is a coding standard fix and they are now done by sniff, not file. See π± [meta] Fix Drupal.NamingConventions.ValidVariableName.LowerCamelName Active