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
a59e1940
Commit
a59e1940
authored
4 years ago
by
Eric Bremner
Committed by
Igor Biki
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4166: adding preprocess node to place either content moderation block
parent
f928a3df
No related branches found
No related tags found
1 merge request
!8
Feature/istwcms 4166 publish unpublish
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uw_cfg_common.module
+39
-0
39 additions, 0 deletions
uw_cfg_common.module
with
39 additions
and
0 deletions
uw_cfg_common.module
+
39
−
0
View file @
a59e1940
...
...
@@ -173,3 +173,42 @@ function uw_cfg_common_toolbar_alter(&$items) {
}
}
}
/**
* Implements hook_preprocess_node().
*/
function
uw_cfg_common_preprocess_node
(
&
$variables
)
{
// Get the current path.
$path
=
explode
(
'/'
,
\Drupal
::
service
(
'path.current'
)
->
getPath
());
// The paths to place the content moderation block on. Made this
// an array to future proof, if there are more pages later.
$paths_for_content_moderation
=
[
'latest'
];
// Check if we are to add the content moderation place.
if
(
in_array
(
end
(
$path
),
$paths_for_content_moderation
))
{
// Add the content moderation block.
$variables
[
'uw_content_moderation_form'
]
=
\Drupal
::
formBuilder
()
->
getForm
(
'Drupal\content_moderation\Form\EntityModerationForm'
,
$variables
[
'node'
]);
}
else
{
$block_manager
=
\Drupal
::
service
(
'plugin.manager.block'
);
$plugin_block
=
$block_manager
->
createInstance
(
'uw_cbl_content_moderation'
,
[]);
$access_result
=
$plugin_block
->
access
(
\Drupal
::
currentUser
());
// Return empty render array if user doesn't have access.
// $access_result can be boolean or an AccessResult class
if
(
is_object
(
$access_result
)
&&
$access_result
->
isForbidden
()
||
is_bool
(
$access_result
)
&&
!
$access_result
)
{
return
[];
}
$render
=
$plugin_block
->
build
();
$variables
[
'uw_content_moderation_form'
]
=
$render
;
}
}
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