mobile_detect.module in Mobile Detect 8.2
Same filename and directory in other branches
Contains mobile_detect.module.
File
mobile_detect.moduleView source
<?php
/**
* @file
* Contains mobile_detect.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\Xss;
// Ludwig module integration.
if (\Drupal::hasService('ludwig.require_once')) {
$ludwig_require_once = \Drupal::service('ludwig.require_once');
$ludwig_require_once
->requireOnce('mobiledetect/mobiledetectlib', 'Mobile_Detect.php', dirname(__FILE__));
}
/**
* Implements hook_help().
*/
function mobile_detect_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the mobile_detect module.
case 'help.page.mobile_detect':
return _mobile_detect_get_readme();
}
}
/**
* Helper for mobile_detect readme.
*/
function _mobile_detect_get_readme() {
$readme = file_get_contents(dirname(__FILE__) . '/README.txt');
// Get the module handler service.
$module_handler = \Drupal::moduleHandler();
if ($module_handler
->moduleExists('markdown')) {
$filters = $module_handler
->invoke('markdown', 'filter_info');
$info = $filters['filter_markdown'];
if (function_exists($info['process callback'])) {
$function = $info['process callback'];
$output = Xss::filterAdmin($function($readme, NULL));
}
else {
$output = '<pre>' . Html::escape($readme) . '</pre>';
}
}
else {
$output = '<pre>' . Html::escape($readme) . '</pre>';
}
return $output;
}
/**
* Implements hook_theme().
*/
function mobile_detect_theme() {
return [
'mobile_detect_status_block' => [
'variables' => [
'internal_cache' => NULL,
],
],
];
}
/**
* Implements hook_page_attachments_alter().
*/
function mobile_detect_page_attachments_alter(array &$attachments) {
if (\Drupal::config('mobile_detect.settings')
->get('mobile_detect_is_mobile')) {
$attachments['#cache']['contexts'][] = 'mobile_detect_is_mobile';
}
}
Functions
Name | Description |
---|---|
mobile_detect_help | Implements hook_help(). |
mobile_detect_page_attachments_alter | Implements hook_page_attachments_alter(). |
mobile_detect_theme | Implements hook_theme(). |
_mobile_detect_get_readme | Helper for mobile_detect readme. |