Same name and namespace in other branches
  1. 8.x-3.x src/QuickTabsInstanceListBuilder.php \Drupal\quicktabs\QuickTabsInstanceListBuilder::buildRow()

Fichier

src/QuickTabsInstanceListBuilder.php, line 18

Classe

QuickTabsInstanceListBuilder
Provides a listing of quicktabs_instances.

Namespace

Drupal\quicktabs

Code

public function buildRow(EntityInterface $entity) {
    $row['label'] = $entity->label();
    $row['storage'] = $this->t('Normal');
    return $row + parent::buildRow($entity);
}