sitewide_js.module in Open Social 10.3.x
Same filename and directory in other branches
- 8.9 modules/custom/sitewide_js/sitewide_js.module
- 8 modules/custom/sitewide_js/sitewide_js.module
- 8.2 modules/custom/sitewide_js/sitewide_js.module
- 8.3 modules/custom/sitewide_js/sitewide_js.module
- 8.4 modules/custom/sitewide_js/sitewide_js.module
- 8.5 modules/custom/sitewide_js/sitewide_js.module
- 8.6 modules/custom/sitewide_js/sitewide_js.module
- 8.7 modules/custom/sitewide_js/sitewide_js.module
- 8.8 modules/custom/sitewide_js/sitewide_js.module
- 10.0.x modules/custom/sitewide_js/sitewide_js.module
- 10.1.x modules/custom/sitewide_js/sitewide_js.module
- 10.2.x modules/custom/sitewide_js/sitewide_js.module
The sitewide_js module file.
File
modules/custom/sitewide_js/sitewide_js.moduleView source
<?php
/**
* @file
* The sitewide_js module file.
*/
/**
* Implements hook_page_attachments().
*/
function sitewide_js_page_attachments(array &$attachments) {
// Get settings.
$config = Drupal::config('sitewide_js.settings');
// Check if it's enabled.
if ($config
->get('swjs_enabled') === 1) {
// Check if it should be placed in the header.
if ($config
->get('swjs_location') === '0') {
// Attach the JS.
$attachments['#attached']['html_head'][] = [
[
'#type' => 'inline_template',
'#template' => '{{ js|raw }}',
'#context' => [
'js' => '<script>' . $config
->get('swjs_javascript') . '</script>',
],
],
'sitewide_js',
];
}
}
}
/**
* Implements hook_preprocess_html().
*/
function sitewide_js_preprocess_html(&$variables) {
// Get settings.
$config = Drupal::config('sitewide_js.settings');
// Check if it's enabled.
if ($config
->get('swjs_enabled') === 1) {
// Check if it should be placed in the footer.
if ($config
->get('swjs_location') === '1' && !empty($config
->get('swjs_footer_region'))) {
// Attach the JS.
$variables[$config
->get('swjs_footer_region')][9999] = [
'#type' => 'inline_template',
'#template' => '{{ js|raw }}',
'#context' => [
'js' => '<script>' . $config
->get('swjs_javascript') . '</script>',
],
];
}
}
}
Functions
Name | Description |
---|---|
sitewide_js_page_attachments | Implements hook_page_attachments(). |
sitewide_js_preprocess_html | Implements hook_preprocess_html(). |