
| Current Path : /var/www/html/rocksensor/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/rocksensor/web/modules/contrib/visitors/src/Plugin/views/field/VisitorsBrand.php |
<?php
namespace Drupal\visitors\Plugin\views\field;
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 device brand of the visitors.
*
* @ingroup views_field_handlers
*
* @ViewsField("visitors_brand")
*/
final class VisitorsBrand 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 = '';
$brand = $this->getValue($values);
$brand_image = $brand;
if (empty($brand)) {
$brand_image = 'unk';
$brand = 'unknown';
if (!$this->options['icon']) {
return '';
}
}
$image = $this->path . '/icons/brand/' . $brand_image . '.png';
if ($this->options['icon']) {
$output .= '<img src="' . $image . '" width="16" height="16" /> ';
}
$output .= ucwords($brand);
return ViewsRenderPipelineMarkup::create(UtilityXss::filterAdmin($output));
}
}