public function ConfigTestListBuilder::buildHeader in Drupal 10
Same name and namespace in other branches
- 8 core/modules/config/tests/config_test/src/ConfigTestListBuilder.php \Drupal\config_test\ConfigTestListBuilder::buildHeader()
- 9 core/modules/config/tests/config_test/src/ConfigTestListBuilder.php \Drupal\config_test\ConfigTestListBuilder::buildHeader()
File
- core/
modules/ config/ tests/ config_test/ src/ ConfigTestListBuilder.php, line 18
Class
- ConfigTestListBuilder
- Defines a class to build a listing of ConfigTest entities.
Namespace
Drupal\config_testCode
public function buildHeader() {
$header['label'] = t('Label');
$header['id'] = t('Machine name');
return $header + parent::buildHeader();
}