comparison core/lib/Drupal/Component/Plugin/ConfigurablePluginInterface.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
2 2
3 namespace Drupal\Component\Plugin; 3 namespace Drupal\Component\Plugin;
4 4
5 /** 5 /**
6 * Provides an interface for a configurable plugin. 6 * Provides an interface for a configurable plugin.
7 *
8 * @deprecated Drupal\Component\Plugin\ConfigurablePluginInterface is deprecated
9 * in Drupal 8.7.0 and will be removed before Drupal 9.0.0. You should implement
10 * ConfigurableInterface and/or DependentPluginInterface directly as needed. If
11 * you implement ConfigurableInterface you may choose to implement
12 * ConfigurablePluginInterface in Drupal 8 as well for maximum compatibility,
13 * however this must be removed prior to Drupal 9.
14 *
15 * @see https://www.drupal.org/node/2946161
7 * 16 *
8 * @ingroup plugin_api 17 * @ingroup plugin_api
9 */ 18 */
10 interface ConfigurablePluginInterface extends DependentPluginInterface { 19 interface ConfigurablePluginInterface extends DependentPluginInterface {
11 20