public ConfigTranslationFieldListBuilder::buildRow(EntityInterface $entity)
Builds a row for an entity in the entity listing.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.
Return value
array A render array structure of fields for this entity.
Overrides ConfigTranslationEntityListBuilder::buildRow
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php, line 111
Class
- ConfigTranslationFieldListBuilder
- Defines the config translation list builder for field entities.
Namespace
Drupal\config_translation\Controller
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public function buildRow(EntityInterface $entity ) { $row [ 'label' ] = array ( 'data' => $entity ->label(), 'class' => 'table-filter-text-source' , ); if ( $this ->displayBundle()) { $bundle = $entity ->get( 'bundle' ); $row [ 'bundle' ] = array ( 'data' => $this ->baseEntityBundles[ $bundle ][ 'label' ], 'class' => 'table-filter-text-source' , ); } return $row + parent::buildRow( $entity ); } |
Please login to continue.