Skip to content
Snippets Groups Projects
Commit 17fa51d0 authored by Tim Plunkett's avatar Tim Plunkett
Browse files

Switch Drupal\views\Plugins to Drupal\views\Plugin.

parent eb3e8563
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Showing
with 52 additions and 52 deletions
......@@ -8,7 +8,7 @@
use Drupal\Core\Database\Database;
use Drupal\views\View;
use Drupal\views\Analyzer;
use Drupal\views\Plugins\Type\WizardManager;
use Drupal\views\Plugin\Type\WizardManager;
/**
* Create an array of Views admin CSS for adding or attaching.
......
......@@ -5,7 +5,7 @@
* Definition of Drupal\views\Plugin\Discovery\ViewsDiscovery.
*/
namespace Drupal\views\Plugins\Discovery;
namespace Drupal\views\Plugin\Discovery;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;
/**
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\AccessPluginManager.
* Definition of Drupal\views\Plugin\Type\AccessPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\views\Plugins\Discovery\ViewsDiscovery;
use Drupal\views\Plugin\Discovery\ViewsDiscovery;
class AccessPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,10 +2,10 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\ArgumentDefaultPluginManager.
* Definition of Drupal\views\Plugin\Type\ArgumentDefaultPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\ArgumentValidatorPluginManager.
* Definition of Drupal\views\Plugin\Type\ArgumentValidatorPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\views\Plugins\Discovery\ViewsDiscovery;
use Drupal\views\Plugin\Discovery\ViewsDiscovery;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;
class ArgumentValidatorPluginManager extends PluginManagerBase {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\CachePluginManager.
* Definition of Drupal\views\Plugin\Type\CachePluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\views\Plugins\Discovery\ViewsDiscovery;
use Drupal\views\Plugin\Discovery\ViewsDiscovery;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;
class CachePluginManager extends PluginManagerBase {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\DisplayExtenderPluginManager.
* Definition of Drupal\views\Plugin\Type\DisplayExtenderPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class DisplayExtenderPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\DisplayPluginManager.
* Definition of Drupal\views\Plugin\Type\DisplayPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\views\Plugins\Discovery\ViewsDiscovery;
use Drupal\views\Plugin\Discovery\ViewsDiscovery;
class DisplayPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\ExposedFormPluginManager.
* Definition of Drupal\views\Plugin\Type\ExposedFormPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class ExposedFormPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\HandlerPluginManager.
* Definition of Drupal\views\Plugin\Type\HandlerPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class HandlerPluginManager extends PluginManagerBase {
/**
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\LocalizationPluginManager.
* Definition of Drupal\views\Plugin\Type\LocalizationPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class LocalizationPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\PagerPluginManager.
* Definition of Drupal\views\Plugin\Type\PagerPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class PagerPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\QueryPluginManager.
* Definition of Drupal\views\Plugin\Type\QueryPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class QueryPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\RowPluginManager.
* Definition of Drupal\views\Plugin\Type\RowPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class RowPluginManager extends PluginManagerBase {
public function __construct() {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\StylePluginManager.
* Definition of Drupal\views\Plugin\Type\StylePluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Views\Plugins\Discovery\ViewsDiscovery;
use Drupal\Views\Plugin\Discovery\ViewsDiscovery;
class StylePluginManager extends PluginManagerBase {
......
......@@ -2,14 +2,14 @@
/**
* @file
* Definition of Drupal\views\Plugins\Type\WizardPluginManager.
* Definition of Drupal\views\Plugin\Type\WizardPluginManager.
*/
namespace Drupal\views\Plugins\Type;
namespace Drupal\views\Plugin\Type;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\views\Plugins\Discovery\ViewsDiscovery;
use Drupal\views\Plugin\Discovery\ViewsDiscovery;
class WizardPluginManager extends PluginManagerBase {
public function __construct() {
......
<?php
/**
* @file
* Definition of Drupal\views\Plugins\views\Handler
* Definition of Drupal\views\Plugin\views\Handler
*/
namespace Drupal\views\Plugins\views;
namespace Drupal\views\Plugin\views;
use Drupal\views\Plugins\views\Plugin;
use Drupal\views\Plugin\views\Plugin;
use Drupal\views\View;
class Handler extends Plugin {
......
......@@ -2,10 +2,10 @@
/**
* @file
* Definition of Drupal\views\Plugins\views\Plugin.
* Definition of Drupal\views\Plugin\views\Plugin.
*/
namespace Drupal\views\Plugins\views;
namespace Drupal\views\Plugin\views;
use Drupal\views\ViewsObject;
use Drupal\Component\Plugin\PluginBase;
......
......@@ -5,7 +5,7 @@
* Definition of Drupal\views\Plugin\PluginInterface.
*/
namespace Drupal\views\Plugins\views;
namespace Drupal\views\Plugin\views;
use Drupal\Component\Plugin\PluginInspectionInterface;
......
......@@ -2,12 +2,12 @@
/**
* @file
* Definition of Drupal\views\Plugins\views\access\AccessPluginBase.
* Definition of Drupal\views\Plugin\views\access\AccessPluginBase.
*/
namespace Drupal\views\Plugins\views\access;
namespace Drupal\views\Plugin\views\access;
use Drupal\views\Plugins\views\Plugin;
use Drupal\views\Plugin\views\Plugin;
/**
* @defgroup views_access_plugins Views access plugins
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment