/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/lang
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;
}
}