Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
228
Merge Requests
228
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
0e5f711e
Commit
0e5f711e
authored
Sep 12, 2012
by
tim.plunkett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update references to EntityInterface since it moved.
parent
9f3b6858
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
lib/Drupal/views/ViewListController.php
lib/Drupal/views/ViewListController.php
+1
-1
lib/Drupal/views/ViewStorage.php
lib/Drupal/views/ViewStorage.php
+1
-1
lib/Drupal/views/ViewStorageController.php
lib/Drupal/views/ViewStorageController.php
+2
-2
views_ui_listing/lib/Drupal/views_ui_listing/EntityListControllerBase.php
.../lib/Drupal/views_ui_listing/EntityListControllerBase.php
+1
-1
views_ui_listing/lib/Drupal/views_ui_listing/EntityListControllerInterface.php
...Drupal/views_ui_listing/EntityListControllerInterface.php
+1
-1
views_ui_listing/tests/views_ui_listing_test/lib/Drupal/views_ui_listing_test/ConfigTestListController.php
...Drupal/views_ui_listing_test/ConfigTestListController.php
+1
-1
No files found.
lib/Drupal/views/ViewListController.php
View file @
0e5f711e
...
...
@@ -8,7 +8,7 @@
namespace
Drupal\views
;
use
Drupal\views_ui_listing
\
EntityListControllerBase
;
use
Drupal\
e
ntity\EntityInterface
;
use
Drupal\
Core\E
ntity\EntityInterface
;
/**
* Provides a listing of Views.
...
...
lib/Drupal/views/ViewStorage.php
View file @
0e5f711e
...
...
@@ -15,7 +15,7 @@
class
ViewStorage
extends
ConfigEntityBase
implements
ViewStorageInterface
{
/**
* Overrides Drupal\
e
ntity\EntityInterface::id().
* Overrides Drupal\
Core\E
ntity\EntityInterface::id().
*/
public
function
id
()
{
return
$this
->
name
;
...
...
lib/Drupal/views/ViewStorageController.php
View file @
0e5f711e
...
...
@@ -8,7 +8,7 @@
namespace
Drupal\views
;
use
Drupal\config\ConfigStorageController
;
use
Drupal\
e
ntity\EntityInterface
;
use
Drupal\
Core\E
ntity\EntityInterface
;
use
Drupal\Component\Uuid\Uuid
;
/**
...
...
@@ -148,7 +148,7 @@ public function create(array $values) {
/**
* Attaches an array of ViewDisplay objects to the view display property.
*
* @param Drupal\
e
ntity\EntityInterface $entity
* @param Drupal\
Core\E
ntity\EntityInterface $entity
*/
protected
function
attachDisplays
(
EntityInterface
$entity
)
{
if
(
isset
(
$entity
->
display
)
&&
is_array
(
$entity
->
display
))
{
...
...
views_ui_listing/lib/Drupal/views_ui_listing/EntityListControllerBase.php
View file @
0e5f711e
...
...
@@ -6,7 +6,7 @@
namespace
Drupal\views_ui_listing
;
use
Drupal\
e
ntity\EntityInterface
;
use
Drupal\
Core\E
ntity\EntityInterface
;
use
Symfony\Component\HttpFoundation\JsonResponse
;
/**
...
...
views_ui_listing/lib/Drupal/views_ui_listing/EntityListControllerInterface.php
View file @
0e5f711e
...
...
@@ -7,7 +7,7 @@
namespace
Drupal\views_ui_listing
;
use
Drupal\
e
ntity\EntityInterface
;
use
Drupal\
Core\E
ntity\EntityInterface
;
/**
* Defines an interface for Configuration entity listing plugins.
...
...
views_ui_listing/tests/views_ui_listing_test/lib/Drupal/views_ui_listing_test/ConfigTestListController.php
View file @
0e5f711e
...
...
@@ -7,7 +7,7 @@
namespace
Drupal\views_ui_listing_test
;
use
Drupal\views_ui_listing
\
EntityListControllerBase
;
use
Drupal\
e
ntity\EntityInterface
;
use
Drupal\
Core\E
ntity\EntityInterface
;
/**
* Views config entity listing controller.
...
...
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