Overrides Drupal\Core\Entity\EntityListController::buildRow();
Overrides EntityListController::buildRow
public function buildRow(EntityInterface $view) {
return array(
'data' => array(
'view_name' => theme('views_ui_view_info', array(
'view' => $view,
)),
'description' => $view
->get('description'),
'tag' => $view
->get('tag'),
'path' => implode(', ', $view
->getPaths()),
'operations' => array(
'data' => $this
->buildOperations($view),
),
),
'title' => t('Machine name: ') . $view
->id(),
'class' => array(
$view
->isEnabled() ? 'views-ui-list-enabled' : 'views-ui-list-disabled',
),
);
}