diff --git a/core/modules/views/src/Plugin/ViewsHandlerManager.php b/core/modules/views/src/Plugin/ViewsHandlerManager.php index 0f334bbe7364a7da74872e26cdb05861854b1f50..146c6a8a5ec7b30503e3c97170e98abae4895b5d 100644 --- a/core/modules/views/src/Plugin/ViewsHandlerManager.php +++ b/core/modules/views/src/Plugin/ViewsHandlerManager.php @@ -60,6 +60,7 @@ public function __construct($handler_type, \Traversable $namespaces, ViewsData $ parent::__construct("Plugin/views/$handler_type", $namespaces, $module_handler, $plugin_interface, $plugin_definition_annotation_name); $this->setCacheBackend($cache_backend, "views:$handler_type", array('extension', 'extension:views')); + $this->alterInfo('views_plugins_' . $handler_type); $this->viewsData = $views_data; $this->handlerType = $handler_type; diff --git a/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php b/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php new file mode 100644 index 0000000000000000000000000000000000000000..eba45daf2c6dfb9f56f0c1e8473d900960b44c66 --- /dev/null +++ b/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php @@ -0,0 +1,58 @@ +<?php + +/** + * @file + * Contains \Drupal\Tests\views\Unit\ViewsHandlerManagerTest. + */ + +namespace Drupal\Tests\views\Unit; + +use Drupal\Tests\UnitTestCase; +use Drupal\views\Plugin\ViewsHandlerManager; + +/** + * Tests the ViewsHandlerManager class. + * + * @group views + * + * @coversDefaultClass \Drupal\views\Plugin\ViewsHandlerManager + */ +class ViewsHandlerManagerTest extends UnitTestCase { + + /** + * @var \Drupal\views\Plugin\ViewsHandlerManager + */ + protected $handlerManager; + + /** + * @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + protected $moduleHandler; + + /** + * {@inheritdoc} + */ + public function setUp() { + $views_data = $this->getMockBuilder('Drupal\views\ViewsData') + ->disableOriginalConstructor() + ->getMock(); + $cache_backend = $this->getMock('Drupal\Core\Cache\CacheBackendInterface'); + $this->moduleHandler = $this->getMock('Drupal\Core\Extension\ModuleHandlerInterface'); + $this->handlerManager = new ViewsHandlerManager('test', new \ArrayObject(array()), $views_data, $cache_backend, $this->moduleHandler); + } + + /** + * Tests that hook_views_plugins_TYPE_alter() is invoked for a handler type. + * + * @covers ::__construct + * @covers ::getDefinitions + */ + public function testAlterHookInvocation() { + $this->moduleHandler->expects($this->once()) + ->method('alter') + ->with('views_plugins_test', array()); + + $this->handlerManager->getDefinitions(); + } + +} diff --git a/core/modules/views/views.api.php b/core/modules/views/views.api.php index 35254ed4c19076641f711f7966fb8f8c02c49270..14b3f1bde18de1a30ac4042e7d35a25193a0cd8a 100644 --- a/core/modules/views/views.api.php +++ b/core/modules/views/views.api.php @@ -1081,6 +1081,102 @@ function hook_views_plugins_wizard_alter(array &$plugins) { $plugins['node_revision']['title'] = t('Node revision wizard'); } +/** + * Modify the list of available views area handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_area_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + +/** + * Modify the list of available views argument handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_argument_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + +/** + * Modify the list of available views field handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_field_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + +/** + * Modify the list of available views filter handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_filter_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + +/** + * Modify the list of available views relationship handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_relationship_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + +/** + * Modify the list of available views sort handler plugins. + * + * This hook may be used to modify handler properties after they have been + * specified by other modules. + * + * @param array $plugins + * An array of all the existing handler definitions, passed by reference. + * + * @see \Drupal\views\Plugin\ViewsHandlerManager + */ +function hook_views_plugins_sort_alter(array &$plugins) { + // Change the 'title' handler class. + $plugins['title']['class'] = 'Drupal\\example\\ExampleClass'; +} + /** * @} */