Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
VisitorsRealPlayer
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace Drupal\visitors\Plugin\views\field;
4
5use Drupal\views\Attribute\ViewsField;
6
7/**
8 * Field handler to display the realplayer plugin of the visitors.
9 *
10 * @ingroup views_field_handlers
11 */
12#[ViewsField("visitors_realplayer")]
13final class VisitorsRealPlayer extends VisitorsBrowserPlugin {
14
15  /**
16   * {@inheritdoc}
17   */
18  const ICON = 'realplayer.png';
19
20}