Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_dashboard
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
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_dashboard
Commits
debb9fdd
Commit
debb9fdd
authored
5 months ago
by
Kevin Paxman
Browse files
Options
Downloads
Patches
Plain Diff
EXPHR: site info WIP
parent
7fe67cb7
No related branches found
No related tags found
1 merge request
!40
Feature/exptime kpaxman site info
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
css/uw_dashboard.css
+4
-0
4 additions, 0 deletions
css/uw_dashboard.css
uw_dashboard.module
+39
-0
39 additions, 0 deletions
uw_dashboard.module
with
43 additions
and
0 deletions
css/uw_dashboard.css
+
4
−
0
View file @
debb9fdd
...
...
@@ -10,3 +10,7 @@
flex-grow
:
1
;
flex-basis
:
0
;
}
.dashboard__site-info
{
float
:
right
;
}
This diff is collapsed.
Click to expand it.
uw_dashboard.module
+
39
−
0
View file @
debb9fdd
...
...
@@ -5,6 +5,7 @@
* UW Dashboard module file.
*/
use
Drupal\Core\Link
;
use
Drupal\Core\Url
;
use
Drupal\user\Entity\User
;
use
Drupal\uw_dashboard
\Handler\UWWebformEntityListBuilder
;
...
...
@@ -154,3 +155,41 @@ function uw_dashboard_views_pre_execute(ViewExecutable $view) {
$view
->
pager
->
options
[
'id'
]
=
$view_instances_count
;
}
}
function
uw_dashboard_preprocess_page
(
&
$variables
)
{
if
(
\Drupal
::
routeMatch
()
->
getRouteName
()
==
'entity.dashboard.canonical'
)
{
// Start building the site info string.
$string
=
'WCMS '
;
// Get the profile version.
$string
.
=
\Drupal
::
service
(
'extension.list.profile'
)
->
getList
()[
'uw_base_profile'
]
->
info
[
'version'
];
// Get the website lead(s).
$string
.
=
' • Website lead: '
;
$string
.
=
'not set'
;
// Get the site owner(s).
$query
=
\Drupal
::
entityQuery
(
'user'
)
->
condition
(
'status'
,
1
)
// Only active users.
->
condition
(
'roles'
,
'uw_role_site_owner'
)
// Only site owners.
->
sort
(
'field_uw_last_name'
,
'ASC'
)
// First sort by status in ascending order
->
sort
(
'field_uw_first_name'
,
'ASC'
);
// Then sort by username in ascending order
$uids
=
$query
->
execute
();
$users
=
User
::
loadMultiple
(
$uids
);
$user_list
=
[];
foreach
(
$users
as
$user
)
{
$user_list
[]
=
Link
::
fromTextAndUrl
(
$user
->
getDisplayName
(),
Url
::
fromUri
(
'mailto:'
.
$user
->
getEmail
()))
->
toString
();
}
if
(
!
$user_list
)
{
$user_list
[]
=
'not set'
;
}
$string
.
=
' • Site owner'
;
if
(
count
(
$user_list
)
>
1
)
{
$string
.
=
's'
;
}
$string
.
=
': '
.
implode
(
', '
,
$user_list
);
// Get the site owner(s).
$variables
[
'page'
][
'help'
][
'#markup'
]
=
'<div class="dashboard__site-info">'
.
$string
.
'</div>'
;
}
}
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