public 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 222
Class
- ConfigurableLanguage
- Defines the ConfigurableLanguage entity.
Namespace
Drupal\language\Entity
Code
1 2 3 | public function getWeight() { return $this ->weight; } |
Please login to continue.