Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::sort()
  2. 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::sort()

Helper callback for uasort() to sort configuration entities by weight and label.

2 calls to ConfigEntityBase::sort()
ConfigTest::sort in core/modules/config/tests/config_test/src/Entity/ConfigTest.php
Helper callback for uasort() to sort configuration entities by weight and label.
SearchPage::sort in core/modules/search/src/Entity/SearchPage.php
Helper callback for uasort() to sort search page entities by status, weight and label.
4 methods override ConfigEntityBase::sort()
Block::sort in core/modules/block/src/Entity/Block.php
Sorts active blocks by weight; sorts inactive blocks by name.
ConfigTest::sort in core/modules/config/tests/config_test/src/Entity/ConfigTest.php
Helper callback for uasort() to sort configuration entities by weight and label.
DateFormat::sort in core/lib/Drupal/Core/Datetime/Entity/DateFormat.php
Helper callback for uasort() to sort configuration entities by weight and label.
SearchPage::sort in core/modules/search/src/Entity/SearchPage.php
Helper callback for uasort() to sort search page entities by status, weight and label.

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 231

Class

ConfigEntityBase

Namespace

Drupal\Core\Config\Entity

Code

public static function sort(ConfigEntityInterface $a, ConfigEntityInterface $b) {
  $a_weight = $a->weight ?? 0;
  $b_weight = $b->weight ?? 0;
  if ($a_weight == $b_weight) {
    $a_label = $a
      ->label() ?? '';
    $b_label = $b
      ->label() ?? '';
    return strnatcasecmp($a_label, $b_label);
  }
  return $a_weight <=> $b_weight;
}