Language
extends KBase
in package
Class for language loading.
Tags
Table of Contents
- $cfg : object
- Config class instance.
- $request : Request
- Server request class instance.
- $installed_languages : array<string|int, mixed>
- $language_name : string
- $languages : object
- arrayKeyExists() : bool
- Checks if a language variable specified by name exists and is an array with a given key.
- get() : mixed
- Retrieves the language variable with the specified key.
- getItems() : array<string|int, mixed>
- Retrieves multiple language items based on the specified keys.
- installed() : array<string|int, mixed>
- Loads all installed language files.
- installedLanguage() : array<string|int, mixed>
- Retrieves an array of installed languages.
- keyExists() : int
- Checks if a language key exists in the given array of languages.
- languageFolder() : string
- Retrieves the folder path where language files are stored.
- load() : mixed
- Loads the language file based on the selected language.
- name() : string
- Retrieves the name of the currently active language.
- parse() : string
- Function that translates the language received from Theme parsing.
- replace() : string
- Retrieves the language value based on the given key and replaces placeholders with values from the $replace array.
- save() : string
- Saves the language file.
- setName() : string
- Sets the language to be used.
- sprintf() : string
- Format a string based on a key using sprintf formatting.
- trans() : string
- Translates the given content by replacing language placeholders.
- __construct() : mixed
- Loads the language.
Properties
$cfg
Config class instance.
protected
static object
$cfg
$request
Server request class instance.
protected
static Request
$request
$installed_languages
private
static array<string|int, mixed>
$installed_languages
Installed languages.
$language_name
private
static string
$language_name
Name of the currently used language.
$languages
private
static object
$languages
= null
Language data.
Methods
arrayKeyExists()
Checks if a language variable specified by name exists and is an array with a given key.
public
static arrayKeyExists(string $name, string $key) : bool
Parameters
- $name : string
-
The name of the language variable.
- $key : string
-
The key to check.
Tags
Return values
bool —True if the language variable exists and is an array with the given key, false otherwise.
get()
Retrieves the language variable with the specified key.
public
static get(string $key[, mixed $default = null ][, mixed $value = null ]) : mixed
Parameters
- $key : string
-
The language variable key or English text.
- $default : mixed = null
-
The default value to return if the key is not found.
- $value : mixed = null
-
If an array variable is specified and $value is set, returns the language value at $key[$value].
Tags
Return values
mixed —The language value or the default value if the key is not found.
getItems()
Retrieves multiple language items based on the specified keys.
public
static getItems([array<string|int, mixed> $keys = [] ]) : array<string|int, mixed>
Parameters
- $keys : array<string|int, mixed> = []
-
An array of language variable keys or English texts.
Return values
array<string|int, mixed> —An array of language values.
installed()
Loads all installed language files.
public
static installed(string $type) : array<string|int, mixed>
Parameters
- $type : string
-
The file type (php or js).
Return values
array<string|int, mixed> —An array of language data.
installedLanguage()
Retrieves an array of installed languages.
public
static installedLanguage() : array<string|int, mixed>
Return values
array<string|int, mixed> —An array of installed languages.
keyExists()
Checks if a language key exists in the given array of languages.
public
static keyExists(array<string|int, mixed> $languages, string $key) : int
Parameters
- $languages : array<string|int, mixed>
-
An array of language data.
- $key : string
-
The language key to check.
Tags
Return values
int —The index of the found key, or -1 if not found.
languageFolder()
Retrieves the folder path where language files are stored.
public
static languageFolder() : string
Return values
string —The folder path where language files are stored.
load()
Loads the language file based on the selected language.
public
static load(string $lang) : mixed
Parameters
- $lang : string
-
The language to be loaded.
Return values
mixed —name()
Retrieves the name of the currently active language.
public
static name() : string
Tags
Return values
string —The name of the currently active language.
parse()
Function that translates the language received from Theme parsing.
public
static parse(array<string|int, mixed> $match) : string
Parameters
- $match : array<string|int, mixed>
-
The variable received from Theme parsing.
Tags
Return values
string —replace()
Retrieves the language value based on the given key and replaces placeholders with values from the $replace array.
public
static replace(string $key, mixed $replace) : string
Parameters
- $key : string
-
The language key.
- $replace : mixed
-
The values to replace placeholders.
Tags
Return values
string —save()
Saves the language file.
public
static save(array<string|int, mixed> $languages, string $type) : string
Parameters
- $languages : array<string|int, mixed>
-
The language data to be saved.
- $type : string
-
The type of file to save ('php' or 'js').
Return values
string —setName()
Sets the language to be used.
public
static setName(string $language) : string
Parameters
- $language : string
-
The language to be set.
Return values
string —The name of the language.
sprintf()
Format a string based on a key using sprintf formatting.
public
static sprintf(string $key, mixed ...$values) : string
Parameters
- $key : string
-
The key to lookup in the language translations.
- $values : mixed
-
Optional values to substitute into the formatted string.
Tags
Return values
string —The formatted string.
trans()
Translates the given content by replacing language placeholders.
public
static trans(string $content) : string
Parameters
- $content : string
-
The content to be translated.
Tags
Return values
string —The translated content.
__construct()
Loads the language.
private
__construct([string|null $lang = null ]) : mixed
Parameters
- $lang : string|null = null
-
The language to be used. If not specified, it will read from the 'my_lang' cookie.