Skip to content
Snippets Groups Projects
Verified Commit f666681c authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3507068 by quietone: Change @Plugin references not in tests

parent e97a510e
No related branches found
No related tags found
1 merge request!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes
Pipeline #438777 passed with warnings
Pipeline: drupal

#438780

    ......@@ -18,7 +18,7 @@
    /**
    * Base class for any views plugin types.
    *
    * Via the @Plugin definition the plugin may specify a theme function or
    * Via the plugin definition the plugin may specify a theme function or
    * template to be used for the plugin. It also can auto-register the theme
    * implementation for that file or function.
    * - theme: the theme implementation to use in the plugin. This must be the
    ......
    ......@@ -32,11 +32,11 @@
    * plugin should have an annotation that includes the plugin's metadata, for
    * example:
    * @code
    * @Plugin(
    * id = "deny_all",
    * title = @Translation("No Access"),
    * help = @Translation("Will not be accessible.")
    * )
    * #[ViewsAccess(
    * id: "deny_all",
    * title: new TranslatableMarkup("No Access"),
    * help: new TranslatableMarkup("Will not be accessible.")
    * )]
    * @endcode
    *
    * The definition should include the following keys:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment