- πΊπΈUnited States stephenplatz
The Drupal\Component\Plugin\Exception\PluginNotFoundException will occur if you haven't run the
change_source_name
post update.
I needed to use instagram embeds with the paragraphs module.
To do this
1) I created a instagram media type
2) The display type of of this media type is "Instagram embed"
3) I created a paragraph with this new media type as a field
4) The form display of this media type uses "simple embed form"
5) Display is render entitity
When trying to save a new instagram paragraph in a node i get the error
Drupal\Component\Plugin\Exception\PluginNotFoundException</em>: The "InstagramEmbedCode" plugin does not exist. in <em class="placeholder">
Compating the code with other plugins i noticed that the annotations were incorrect
@constraint(
Should be
@Constraint(
in the plugin file src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraint.php
Fixed
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
The Drupal\Component\Plugin\Exception\PluginNotFoundException will occur if you haven't run the change_source_name
post update.