API variable $languages enables access to all Language pages and various helper methods.
The $languages API variable is most commonly used for iteration of all installed languages.
foreach($languages as $language) {
echo "<li>$language->title ($language->name) ";
if($language->id == $user->language->id) {
echo "current"; // the user's current language
}
echo "</li>";
}
Click any linked item for full usage details and examples. Hookable methods are indicated with the icon. In addition to those shown below, the Languages
class also inherits all the methods and properties of: PagesType and Wire.
Common
For hooks
These methods are only useful for hooking and should not be called directly.
Name | Return | Summary | |
---|---|---|---|
Languages::added() Languages::added(Page $language) Languages::added(Page $language) | (nothing) | Hook called when a language is added | |
Languages::deleted() Languages::deleted(Page $language) Languages::deleted(Page $language) | (nothing) | Hook called when a language is deleted | |
Languages::updated() Languages::updated(Page $language, string $what) Languages::updated(Page $language, string $what) | (nothing) | Hook called when a language is added or deleted |
Additional methods and properties
In addition to the methods and properties above, Languages also inherits the methods and properties of these classes:
API reference based on ProcessWire core version 3.0.236