Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_cfg_common
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_cfg_common
Commits
52567594
Commit
52567594
authored
2 years ago
by
Lily Yan
Committed by
Kevin Paxman
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-6009 Remove 'entity.node.delete_form' in UwNodeAccessCheck.php
parent
0a3eb6f2
No related branches found
No related tags found
1 merge request
!317
ISTWCMS-6009 Use prevent_homepage_deletion module
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Access/UwNodeAccessCheck.php
+0
-10
0 additions, 10 deletions
src/Access/UwNodeAccessCheck.php
with
0 additions
and
10 deletions
src/Access/UwNodeAccessCheck.php
+
0
−
10
View file @
52567594
...
...
@@ -7,7 +7,6 @@ use Drupal\Core\Routing\Access\AccessInterface;
use
Drupal\Core\Routing\RouteMatchInterface
;
use
Drupal\Core\Session\AccountInterface
;
use
Drupal\menu_admin_per_menu
\Access\MenuAdminPerMenuAccess
;
use
Drupal\uw_cfg_common
\Service\UWService
;
/**
* Checks access for displaying configuration translation page.
...
...
@@ -38,15 +37,6 @@ class UwNodeAccessCheck implements AccessInterface {
$menu_admin_per_menu
=
new
MenuAdminPerMenuAccess
();
return
$menu_admin_per_menu
->
menuLinkAccess
(
$account
,
$menu_link_plugin
);
// Node delete pages.
case
'entity.node.delete_form'
:
$node
=
$route_match
->
getParameter
(
'node'
);
// Only those with permission may delete the home page.
if
(
$node
&&
UWService
::
nodeIsHomePage
((
int
)
$node
->
id
()))
{
return
$account
->
hasPermission
(
'bypass home page protection'
)
?
AccessResult
::
allowed
()
:
AccessResult
::
forbidden
();
}
return
AccessResult
::
allowed
();
// Dashboard config: admin/config/dashboards/dashboardssettings.
case
'dashboards.dashboards_settings_form'
:
return
$account
->
hasPermission
(
'access dashboard config'
)
?
AccessResult
::
allowed
()
:
AccessResult
::
forbidden
();
...
...
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