
| Current Path : /var/www/html/rocksensor3/web/modules/contrib/visitors/src/Plugin/views/field/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/modules/contrib/visitors/src/Plugin/views/field/VisitorsBrowser.php |
<?php
namespace Drupal\visitors\Plugin\views\field;
use DeviceDetector\Parser\Client\Browser;
use Drupal\Component\Utility\Xss as UtilityXss;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\Render\ViewsRenderPipelineMarkup;
use Drupal\views\ResultRow;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* Field handler to display the browser version of the visitors.
*
* @ingroup views_field_handlers
*
* @ViewsField("visitors_browser")
*/
final class VisitorsBrowser extends FieldPluginBase {
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* The request.
*
* @var \Symfony\Component\HttpFoundation\Request
*/
protected $request;
/**
* The path.
*
* @var string
*/
protected $path;
/**
* Browser version field.
*
* @param array $configuration
* The plugin configuration.
* @param string $plugin_id
* The plugin ID.
* @param mixed $plugin_definition
* The plugin definition.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
* @param \Symfony\Component\HttpFoundation\Request $request
* The request.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, ModuleHandlerInterface $module_handler, Request $request) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->moduleHandler = $module_handler;
$this->request = $request;
$base_path = $this->request->getBasePath();
$visitors_path = $this->moduleHandler->getModule('visitors')->getPath();
$this->path = $base_path . '/' . $visitors_path;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new self(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('module_handler'),
$container->get('request_stack')->getCurrentRequest(),
);
}
/**
* Define the available options.
*
* @return array
* The available options.
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['icon'] = ['default' => TRUE];
return $options;
}
/**
* Provide the options form.
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
$form['icon'] = [
'#title' => $this->t('Show icon'),
'#type' => 'checkbox',
'#default_value' => $this->options['icon'],
];
parent::buildOptionsForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
$output = '';
$short_name = $this->getValue($values) ?? '';
$available_browsers = Browser::getAvailableBrowsers();
$browser_name = $available_browsers[$short_name] ?? $short_name;
$image = $this->path . '/icons/browsers/' . $short_name . '.png';
if ($this->options['icon']) {
$output .= '<img src="' . $image . '" width="16" height="16" /> ';
}
$output .= $browser_name;
return ViewsRenderPipelineMarkup::create(UtilityXss::filterAdmin($output));
}
}