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

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

Overrides ConfigEntityBase::sort

File

core/lib/Drupal/Core/Datetime/Entity/DateFormat.php, line 87

Class

DateFormat
Defines the Date Format configuration entity class.

Namespace

Drupal\Core\Datetime\Entity

Code

public static function sort(ConfigEntityInterface $a, ConfigEntityInterface $b) {
  if ($a
    ->isLocked() == $b
    ->isLocked()) {
    $a_label = $a
      ->label();
    $b_label = $b
      ->label();
    return strnatcasecmp($a_label, $b_label);
  }
  return $a
    ->isLocked() ? 1 : -1;
}