* @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class CmsCategoryLangCore extends DataLangCore { // Don't replace domain in init() with $this->domain for translation parsing protected $domain = 'Admin.Catalog.Feature'; protected $keys = array('id_cms_category', 'id_shop'); protected $fieldsToUpdate = array('name', 'link_rewrite'); public function getFieldValue($field, $value) { if ($field == 'link_rewrite') { $replacements = array( '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; } }