/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/CmsCategoryLang.php (1839B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class CmsCategoryLangCore extends DataLangCore { // Don't replace domain in init() with $this->domain for translation parsing protected $domain = 'Admin.Catalog.Feature'; protected $keys = ['id_cms_category', 'id_shop']; protected $fieldsToUpdate = ['name', 'link_rewrite']; public function getFieldValue($field, $value) { if ($field == 'link_rewrite') { $replacements = [ 'home' => 'Home', ]; $value = str_replace(array_keys($replacements), array_values($replacements), $value); } $value = parent::getFieldValue($field, $value); if ($field == 'link_rewrite') { $value = $this->slugify($value); } return $value; } }