interface ConfigTranslationEntityListBuilderInterface
Same name and namespace in other branches
- 11.x core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilderInterface.php \Drupal\config_translation\Controller\ConfigTranslationEntityListBuilderInterface
Defines an interface for configuration translation entity list builders.
Hierarchy
- interface \Drupal\Core\Entity\EntityListBuilderInterface
- interface \Drupal\config_translation\Controller\ConfigTranslationEntityListBuilderInterface implements \Drupal\Core\Entity\EntityListBuilderInterface
Expanded class hierarchy of ConfigTranslationEntityListBuilderInterface
All classes that implement ConfigTranslationEntityListBuilderInterface
File
-
core/
modules/ config_translation/ src/ Controller/ ConfigTranslationEntityListBuilderInterface.php, line 10
Namespace
Drupal\config_translation\ControllerView source
interface ConfigTranslationEntityListBuilderInterface extends EntityListBuilderInterface {
/**
* Sorts an array by value.
*
* @param array $a
* First item for comparison.
* @param array $b
* Second item for comparison.
*
* @return int
* The comparison result for uasort().
*/
public function sortRows($a, $b);
/**
* Sets the config translation mapper definition.
*
* @param mixed $mapper_definition
* The plugin definition of the config translation mapper.
*
* @return $this
*/
public function setMapperDefinition($mapper_definition);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.