cloudwords-8.x-1.x-dev/src/Plugin/views/field/Bundle.php
src/Plugin/views/field/Bundle.php
<?php
namespace Drupal\cloudwords\Plugin\views\field;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\ResultRow;
/**
* Field handler which shows if an asset has been added to the current project.
*
* @ViewsField("cloudwords_translatable_bundle_field")
*/
class Bundle extends FieldPluginBase {
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
$translatable = $this->getEntity($values);
return $translatable->bundleLabel();
}
}
