From 9a9770c4ec90019eae77a3374f20bc7953b96b7b Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Wed, 17 Feb 2016 11:27:14 +0900 Subject: [PATCH] Issue #2540136 by Shreya Shetty, rang501, chx, priya.chat: Improve ContextualLinkInterface doxygen --- core/lib/Drupal/Core/Menu/ContextualLinkInterface.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/lib/Drupal/Core/Menu/ContextualLinkInterface.php b/core/lib/Drupal/Core/Menu/ContextualLinkInterface.php index 04c2f7d533c..d00cd94430d 100644 --- a/core/lib/Drupal/Core/Menu/ContextualLinkInterface.php +++ b/core/lib/Drupal/Core/Menu/ContextualLinkInterface.php @@ -9,6 +9,14 @@ namespace Drupal\Core\Menu; /** * Defines a contextual link plugin. + * + * Contextual links by default are in the module_name.links.contextual.yml + * file. These YAML files contain a list of contextual link plugin definitions, + * keyed by the plugin ID. Each definition must define a route_name and a group + * and might define title, options, and weight. See the getter methods on this + * interface for an explanation of each. + * + * @ingroup menu */ interface ContextualLinkInterface {