cloud-8.x-2.0-beta1/modules/cloud_service_providers/aws_cloud/src/Entity/Ec2/ImageViewsData.php
modules/cloud_service_providers/aws_cloud/src/Entity/Ec2/ImageViewsData.php
<?php
namespace Drupal\aws_cloud\Entity\Ec2;
/**
* Provides the views data for the CloudScripting entity type.
*/
class ImageViewsData extends AwsCloudViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
$data['aws_cloud_image']['image_bulk_form'] = [
'title' => $this->t('Image operations bulk form'),
'help' => $this->t('Add a form element that lets you run operations on multiple images.'),
'field' => [
'id' => 'image_bulk_form',
],
];
$table_name = $this->storage->getEntityTypeId();
$fields = $this->entityManager->getFieldStorageDefinitions($table_name);
// The following is a list of fields to turn from text search to
// select list. This list can be expanded through hook_views_data_alter().
$selectable = [
'image_id',
'source',
'architecture',
'virtualization_type',
'image_type',
'root_device_type',
'kernel_id',
'account_id',
'visibility',
];
$data['aws_cloud_image']['table']['base'] = [
'field' => 'id',
'title' => t('AWS Cloud Image'),
'help' => t('The AWS Cloud Image entity ID.'),
];
$data['aws_cloud_image']['table']['base']['access query tag'] = 'aws_cloud_image_views_access';
$this->addDropdownSelector($data, $table_name, $fields, $selectable);
return $data;
}
}
