- π·π΄Romania vzsigmond
This is now outdated and is covered by the new release.
Error message:
Drupal\Component\Plugin\Exception\PluginNotFoundException: The "hidden" plugin does not exist. Valid plugin IDs for Drupal\Core\Field\WidgetPluginManager are: codemirror_field_widget_default,
... (list of widget ids) ...
in Drupal\Core\Plugin\DefaultPluginManager->doGetDefinition() (line 53 of C:\path\to\site\web\core\lib\Drupal\Component\Plugin\Discovery\DiscoveryTrait.php).
This is on a Codemirror field I had created, and to fix, I just needed to include "codemirror" fields in the @FieldWidget in src/Plugin/Field/FieldWidget/CodemirrorWidget.php, like so:
/**
* Plugin implementation of the 'codemirror_field_widget_default' widget.
*
* @FieldWidget(
* id = "codemirror_field_widget_default",
* label = @Translation("Codemirror"),
* field_types = {
* "text_long",
* "codemirror"
* }
* )
*/
I have attached a path - thanks for the great module!
Closed: outdated
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This is now outdated and is covered by the new release.