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
306
Merge Requests
306
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
151d7b25
Commit
151d7b25
authored
Aug 27, 2012
by
damiankloip
Committed by
tim.plunkett
Oct 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a ViewStorageInterface
parent
cc9d0ca5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
lib/Drupal/views/ViewStorageInterface.php
lib/Drupal/views/ViewStorageInterface.php
+33
-0
No files found.
lib/Drupal/views/ViewStorageInterface.php
0 → 100644
View file @
151d7b25
<?php
/**
* Definition of Drupal\views\ViewStorageInterface.
*/
namespace
Drupal\views
;
use
Drupal\config\ConfigurableInterface
;
/**
* Defines an interface for View storage classes.
*/
interface
ViewStorageInterface
extends
ConfigurableInterface
{
/**
* Sets the configurable entity status to enabled.
*/
public
function
enable
();
/**
* Sets the configurable entity status to disabled.
*/
public
function
disable
();
/**
* Returns whether the configurable entity is enabled.
*
* @return bool
*/
public
function
isEnabled
();
}
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