BatUnitHandlerUnitBundleField.php in Booking and Availability Management Tools for Drupal 8
Contains a Views field handler to take care of displaying the correct label for unit bundles.
Namespace
Drupal\bat_unit\Plugin\views\fieldFile
modules/bat_unit/src/Plugin/views/field/BatUnitHandlerUnitBundleField.phpView source
<?php
/**
* @file
* Contains a Views field handler to take care of displaying the correct label
* for unit bundles.
*/
namespace Drupal\bat_unit\Plugin\views\field;
use Drupal\views\ResultRow;
use Drupal\views\Plugin\views\field\FieldPluginBase;
/**
* @ViewsField("bat_unit_handler_unit_bundle_field")
*/
class BatUnitHandlerUnitBundleField extends FieldPluginBase {
public function render(ResultRow $values) {
$unit_bundle = bat_unit_bundle_load($this
->getEntity($values)
->bundle());
return $unit_bundle
->label();
}
}
Classes
Name | Description |
---|---|
BatUnitHandlerUnitBundleField | Plugin annotation @ViewsField("bat_unit_handler_unit_bundle_field"); |