public ConfigTranslationFieldListBuilder::getFilterLabels()
Provides user facing strings for the filter element.
Return value
array
Overrides ConfigTranslationEntityListBuilder::getFilterLabels
File
- core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php, line 97
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 | public function getFilterLabels() { $info = parent::getFilterLabels(); $bundle = $this ->baseEntityInfo->getBundleLabel() ? : $this ->t( 'Bundle' ); $bundle = Unicode:: strtolower ( $bundle ); $info [ 'placeholder' ] = $this ->t( 'Enter field or @bundle' , array ( '@bundle' => $bundle )); $info [ 'description' ] = $this ->t( 'Enter a part of the field or @bundle to filter by.' , array ( '@bundle' => $bundle )); return $info ; } |
Please login to continue.