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