/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/lang
NameSizeModeActions
KeysReference/-0755rm
AttributeGroupLang.php13620644editdlrm
AttributeLang.php13360644editdlrm
CarrierLang.php13490644editdlrm
CategoryLang.php18660644editdlrm
CmsCategoryLang.php18390644editdlrm
ConfigurationLang.php13560644editdlrm
ContactLang.php13580644editdlrm
DataLang.php41610644editdlrm
FeatureLang.php13320644editdlrm
FeatureValueLang.php13440644editdlrm
GenderLang.php13410644editdlrm
GroupLang.php13390644editdlrm
MetaLang.php13660644editdlrm
OrderMessageLang.php13660644editdlrm
OrderReturnStateLang.php13640644editdlrm
OrderStateLang.php13510644editdlrm
ProfileLang.php13420644editdlrm
QuickAccessLang.php13470644editdlrm
RiskLang.php13380644editdlrm
StockMvtReasonLang.php13520644editdlrm
SupplyOrderStateLang.php13640644editdlrm
TabLang.php18000644editdlrm
ThemeLang.php13360644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/lang/TabLang.php (1800B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Translates content from the tab entity */ class TabLangCore extends DataLangCore { protected $domain = 'Admin.Navigation.Menu'; protected $keys = ['id_tab']; protected $fieldsToUpdate = ['name']; /** * @param string $field * @param string|array $value * * @return string */ public function getFieldValue($field, $value) { $domain = ''; if (is_array($value)) { list($message, $domain) = $value; } else { $message = $value; } return $this->translator->trans( $message, [], (!empty($domain)) ? $domain : $this->domain, $this->locale ); } }