Lines Matching refs:config
11 * adds all configured languages to the config array. This ensures all types
29 if (!isset($this->config[$key])) {
30 $this->config[$key] = [];
34 if (!isset($this->config[$key][$lang])) {
35 $this->config[$key][$lang] = '';
39 foreach (array_keys($this->config[$key]) as $langKey) {
41 unset($this->config[$key][$langKey]);
62 if (!blank($this->config[$key][$lang])) {
63 return $this->config[$key][$lang];
65 if (!blank($this->config[$key]['en'])) {
66 return $this->config[$key]['en'];