Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
3edf19ce
Commit
3edf19ce
authored
12 years ago
by
Daniel Wehner
Committed by
Tim Plunkett
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Change the status of a view in the UI
parent
74e8a3db
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
plugins/export_ui/views_ui.class.php
+7
-1
7 additions, 1 deletion
plugins/export_ui/views_ui.class.php
views.install
+1
-0
1 addition, 0 deletions
views.install
views.module
+26
-1
26 additions, 1 deletion
views.module
with
34 additions
and
2 deletions
plugins/export_ui/views_ui.class.php
+
7
−
1
View file @
3edf19ce
...
...
@@ -361,7 +361,13 @@ function add_template_page($js, $input, $name, $step = NULL) {
}
function
set_item_state
(
$state
,
$js
,
$input
,
$item
)
{
ctools_export_set_object_status
(
$item
,
$state
);
if
(
!
$state
)
{
$item
->
enable
();
}
else
{
$item
->
disable
();
}
$item
->
save
();
menu_router_rebuild
();
if
(
!
$js
)
{
...
...
This diff is collapsed.
Click to expand it.
views.install
+
1
−
0
View file @
3edf19ce
...
...
@@ -38,6 +38,7 @@ function views_schema() {
'load all callback'
=>
'views_get_all_views'
,
'load callback'
=>
'views_storage_load'
,
'save callback'
=>
'views_storage_save'
,
'status callback'
=>
'views_storage_status'
,
'subrecords callback'
=>
'views_load_display_records'
,
// the variable that holds enabled/disabled status
'status'
=>
'views_defaults'
,
...
...
This diff is collapsed.
Click to expand it.
views.module
+
26
−
1
View file @
3edf19ce
...
...
@@ -1575,7 +1575,7 @@ function views_get_all_views($reset = FALSE) {
}
/**
* Load
s
a view with the storage controller.
* Load a view with the storage controller.
*
* @param string $id
* The view name to load.
...
...
@@ -1589,11 +1589,36 @@ function views_storage_load($id) {
return
reset
(
$result
);
}
/**
* Save a view with the storage controller.
*
* @param Drupal\views\View $view
* The view which is saved.
*
* @return
* SAVED_NEW or SAVED_UPDATED is returned depending on the operation
* performed.
*/
function
views_storage_save
(
View
$view
)
{
$controller
=
entity_get_controller
(
'view'
);
return
$controller
->
save
(
$view
);
}
/**
* Change the status of a view.
*
* @param Drupal\views\View $view
* The view which gets a different status.
*/
function
views_storage_status
(
View
$view
,
$status
)
{
if
(
!
$status
)
{
$view
->
enable
();
}
else
{
$view
->
disable
();
}
}
/**
* Returns an array of all enabled views, as fully loaded $view objects.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment