Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CSU
tweeki
Commits
a7c09030
Unverified
Commit
a7c09030
authored
Jun 19, 2020
by
Ammar Abdulhamid
Committed by
GitHub
Jun 19, 2020
Browse files
Add hook handler
parent
6d54c5f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/Hooks.php
View file @
a7c09030
...
...
@@ -924,5 +924,13 @@ class TweekiHooks {
}
return
true
;
}
public
static
function
onOutputPageBodyAttributes
(
$out
,
$sk
,
&
$bodyAttrs
)
{
if
(
isset
(
$bodyAttrs
[
'class'
]
)
&&
strlen
(
$bodyAttrs
[
'class'
]
)
>
0
)
{
$bodyAttrs
[
'class'
]
.
=
' '
.
implode
(
' '
,
SkinTweeki
::
$bodyClasses
);
}
else
{
$bodyAttrs
[
'class'
]
=
implode
(
' '
,
SkinTweeki
::
$bodyClasses
);
}
}
}
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