Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
974f5b6f
Commit
974f5b6f
authored
May 15, 2012
by
tim.plunkett
Browse files
Add use statements for Database usage.
parent
663b4919
Changes
6
Hide whitespace changes
Inline
Side-by-side
handlers/views_handler_filter_numeric.inc
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Definition of views_handler_filter_numeric.
*/
use
Drupal\Core\Database\Database
;
/**
* Simple filter to handle greater than/less than filters
*
...
...
handlers/views_handler_filter_string.inc
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Definition of views_handler_filter_string.
*/
use
Drupal\Core\Database\Database
;
/**
* Basic textfield filter to handle string filtering commands
* including equality, like, not like, etc.
...
...
includes/admin.inc
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Provides the Views' administrative interface.
*/
use
Drupal\Core\Database\Database
;
/**
* Create an array of Views admin CSS for adding or attaching.
*
...
...
includes/handlers.inc
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Defines the various handler objects to help build and display views.
*/
use
Drupal\Core\Database\Database
;
/**
* Instantiate and construct a new handler
*/
...
...
plugins/views_plugin_query_default.inc
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Defines the default query object.
*/
use
Drupal\Core\Database\Database
;
/**
* Object used to create a SELECT query.
*
...
...
views.install
View file @
974f5b6f
...
...
@@ -5,6 +5,8 @@
* Contains install and update functions for Views.
*/
use
Drupal\Core\Database\Database
;
/**
* Implements hook_install().
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment