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 RestResource 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

er.pushpinderrana’s picture

Status: Active » Needs review
FileSize
1.09 KB

No Base class and interface found for Rest Resource Plugin. Please review attached patch.

er.pushpinderrana’s picture

FileSize
1.09 KB

Rerolled patch #1.

jhodgdon’s picture

Status: Needs review » Needs work

Thanks!

+ * Plugin Namespace: Plugin\rest\resource
+ * For a working example, see \Drupal\rest\Plugin\rest\resource\DBLogResource

These two lines need a blank line between them.

So... The working example class implements ResourceInterface and extends ResourceBase -- aren't these the interface and base class for these plugins?

joshi.rohit100’s picture

Status: Needs work » Needs review
FileSize
1.18 KB
610 bytes

updated the patch. Please review now.

jhodgdon’s picture

Status: Needs review » Needs work

Thanks, but there are still no links to the interface and base class on the manager, and no links on the interface and base class to each other and back to the annotation class and manager.

er.pushpinderrana’s picture

Status: Needs work » Needs review
FileSize
2.44 KB
1.75 KB

Incorporated #5 suggestion in this patch.

jhodgdon’s picture

Status: Needs review » Reviewed & tested by the community

Aha! Thanks for discovering interdiffs. :)

The patch looks good now, thanks!

jhodgdon’s picture

Status: Reviewed & tested by the community » Fixed

Thanks again all! Committed to 8.x.

  • jhodgdon committed ce4a803 on 8.x
    Issue #2290279 by joshi.rohit100, er.pushpinderrana: Make RestResource...

Status: Fixed » Closed (fixed)

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