public function ConfigurableLanguage::getWeight in Drupal 9
Same name and namespace in other branches
- 8 core/modules/language/src/Entity/ConfigurableLanguage.php \Drupal\language\Entity\ConfigurableLanguage::getWeight()
Gets the weight of the language.
Return value
int The weight, used to order languages with larger positive weights sinking items toward the bottom of lists.
Overrides LanguageInterface::getWeight
File
- core/
modules/ language/ src/ Entity/ ConfigurableLanguage.php, line 250
Class
- ConfigurableLanguage
- Defines the ConfigurableLanguage entity.
Namespace
Drupal\language\EntityCode
public function getWeight() {
return $this->weight;
}