* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Employee; /** * Interface FormLanguageSwitcherInterface describes an employee form language changer. */ interface FormLanguageChangerInterface { /** * Change employee form language to given one and save the selection in the cookies. * * @param string $languageIsoCode two letter iso code of the language */ public function changeLanguageInCookies($languageIsoCode); }