You are here

public function ConfigTranslationFieldListBuilder::sortRows in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php \Drupal\config_translation\Controller\ConfigTranslationFieldListBuilder::sortRows()

Sorts an array by value.

Parameters

array $a: First item for comparison.

array $b: Second item for comparison.

Return value

int The comparison result for uasort().

Overrides ConfigTranslationEntityListBuilder::sortRows

File

core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php, line 179

Class

ConfigTranslationFieldListBuilder
Defines the config translation list builder for field entities.

Namespace

Drupal\config_translation\Controller

Code

public function sortRows($a, $b) {
  return $this
    ->sortRowsMultiple($a, $b, [
    'bundle',
    'label',
  ]);
}