Problem/Motivation

All related plugin classes and interfaces for a plugin type need to be linked together in documentation, so that developers can discover how to make that type of plugin. Also, there should be a link to the plugin_api topic in their documentation headers, which tells how to make plugins in general. (See #2269389: [meta] Make sure plugin developer info is discoverable for discussion, if interested.)

For any plugin type, here are the classes and interfaces that need to be located and linked together:
- The interface for the plugin (if there is one -- most plugins have one)
- The base class for the plugin (if there is one -- most plugins have one)
- The plugin manager class
- The annotation class

Developers also need to know the plugin namespace that plugin classes have to be put into, in order to be recognized.

And it would be helpful for them to have a link to one working example of a plugin.

Proposed resolution

This issue is for: The Filter plugin type

The specific tasks to be done:

a) Locate the annotation class, interface, base class (if there is one), and plugin manager class for this plugin type. Find a working example class too. And figure out what the plugin namespace has to be. There are notes below on how to do this.

b) Make sure that all these classes and interfaces are linked together with @see links or are mentioned in each other's documentation headers. Example of a @see link:

 * @see \Drupal\foo\bar\FooBarPluginInterface

c) Make sure that all of these classes and interfaces have:

 * @see plugin_api

in their documentation headers.

d) Make sure that the annotation class documents the plugin namespace like this:

 * Plugin Namespace: Plugin\Foo

e) In the Annotation class, also put in a line linking to the working example:

 * For a working example, see \Name\Of\Plugin\Class

Remaining tasks

See Proposed Resolution.

Note:

All of the added lines should go into the class or interface documentation block, meaning the documentation immediately before the class/interface declaration:

/**
 * (This is the interface documentation block/)
 */
class WhateverInterface extends Plugin {

Plain text lines like "Plugin Namespace: ..." should go before any @see or @ingroup lines, and the @Annotation line has to come last in any docs header.

Some notes on how to do this

You can find the annotation class on
https://api.drupal.org/api/drupal/core!modules!system!system.api.php/gro...

To find the a working example, look for a class in the Drupal Core code base that is annotated with the annotation class (using grep). For instance, if the annotation class is "Foo", search for a class that has "@Foo(" (without the quotes) in its documentation header.

Once you have located a working example, look at its class hierarchy (you can do this easily on api.drupal.org). It will most likely be extending a class called something like "FooBase", which would be the base class, and FooBase will most likely be implementing an interface called something like "FooInterface", which would be the plugin interface.

To find the manager class, take a look at the "Expanded class hierarchy of DefaultPluginManager" page:
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Plugin!DefaultPlu...

Look for a class there called FooPluginManager or something similar.

Once you have found the manager class, look at its __construct() method. It will call parent::construct(), passing in the annotation class and the plugin namespace. Verify that the right annotation class is shown, and take note of the plugin namespace is (typically something like "Plugin/Foo".

User interface changes

None.

API changes

None.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

cs_shadow’s picture

Status: Active » Needs review
FileSize
2.33 KB
jhodgdon’s picture

Status: Needs review » Needs work

Thanks for the patch!

I don't think these namespacase are right?

 * @see \Drupal\filter\Plugin\Filter\FilterBase

It looks like the base class is \Drupal\filter\Plugin\FilterBase, I think?

Also, these two lines should have a blank line between them:

+ * Plugin Namespace: Plugin\Filter
+ * For a working example, see \Drupal\filter\Plugin\Filter\FilterHtml
er.pushpinderrana’s picture

Status: Needs work » Needs review
FileSize
2.33 KB

Sorry but namespace looks correct, also added blank line.

amitgoyal’s picture

FileSize
2.36 KB
1.49 KB

I think base class is \Drupal\filter\Plugin\FilterBase as per #2. Please see updated patch.

jhodgdon’s picture

Status: Needs review » Reviewed & tested by the community

#4 looks good, thanks!

joshi.rohit100’s picture

Status: Reviewed & tested by the community » Needs review
FileSize
2.37 KB
472 bytes

As I see, there is no need to @see \Drupal\filter\FilterPluginManager in the same class.
Instead it should be \Drupal\filter\Plugin\FilterInterface.

jhodgdon’s picture

Status: Needs review » Reviewed & tested by the community

Good catch, I missed that one! Looks good this time for sure. :)

jhodgdon’s picture

Status: Reviewed & tested by the community » Fixed

Thanks again everyone! Committed to 8.x.

  • jhodgdon committed a400939 on 8.x
    Issue #2290263 by joshi.rohit100, amitgoyal, er.pushpinderrana,...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.