You are here

class WebformManagedFileViews in Webform Views Integration 8.5

Default webform views handler for managed file webform elements.

Hierarchy

Expanded class hierarchy of WebformManagedFileViews

1 file declares its use of WebformManagedFileViews
webform_views.module in ./webform_views.module
Webform integration with views.

File

src/WebformElementViews/WebformManagedFileViews.php, line 12

Namespace

Drupal\webform_views\WebformElementViews
View source
class WebformManagedFileViews extends WebformElementViewsAbstract {

  /**
   * Entity type manager service.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * WebformManagedFileViews constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   Entity type manager.
   * @param \Drupal\webform\Plugin\WebformElementManagerInterface $webform_element_manager
   *   Webform element manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, WebformElementManagerInterface $webform_element_manager) {
    parent::__construct($entity_type_manager, $webform_element_manager);
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public function getElementViewsData(WebformElementInterface $element_plugin, array $element) {
    $views_data = parent::getElementViewsData($element_plugin, $element);
    if ($this->entityTypeManager
      ->hasDefinition('file')) {
      $file = $this->entityTypeManager
        ->getDefinition('file');
      $views_data['relationship'] = [
        'base' => $file
          ->getDataTable() ? $file
          ->getDataTable() : $file
          ->getBaseTable(),
        'field' => 'value',
        'base field' => $file
          ->getKey('id'),
        'label' => $this
          ->t('@element: File', [
          '@element' => $element['#title'],
        ]),
        'id' => 'standard',
      ];
    }
    return $views_data;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
WebformElementViewsAbstract::$entityType protected property Webform submission entity type.
WebformElementViewsAbstract::$webformElementManager protected property
WebformElementViewsAbstract::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create
WebformElementViewsAbstract::getViewsData public function Generate views data related to a given element of a given webform. Overrides WebformElementViewsInterface::getViewsData 2
WebformElementViewsAbstract::tableName protected function Generate views table name that represents a given element within a webform.
WebformManagedFileViews::$entityTypeManager protected property Entity type manager service.
WebformManagedFileViews::getElementViewsData public function Generate views data definition that corresponds to given webform element. Overrides WebformElementViewsAbstract::getElementViewsData
WebformManagedFileViews::__construct public function WebformManagedFileViews constructor. Overrides WebformElementViewsAbstract::__construct