function ConfigEntityBase::sort
Same name in other branches
- 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::sort()
- 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::sort()
- 10 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.
6 methods override ConfigEntityBase::sort()
- Action::sort in core/
modules/ system/ src/ Entity/ Action.php - Helper callback for uasort() to sort configuration entities by weight and label.
- 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.
- EntityDisplayModeBase::sort in core/
lib/ Drupal/ Core/ Entity/ EntityDisplayModeBase.php - Helper callback for uasort() to sort configuration entities by weight and label.
File
-
core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityBase.php, line 238
Class
- ConfigEntityBase
- Defines a base configuration entity class.
Namespace
Drupal\Core\Config\EntityCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.