| 1 | <?php | ||
| 21 | class T3Salutation implements \Aimeos\MW\Criteria\Plugin\Iface | ||
| 22 | { | ||
| 23 | /** | ||
| 24 | * Translates the MShop value into its TYPO3 equivalent. | ||
| 25 | * | ||
| 26 | * @param string $value Address constant from \Aimeos\MShop\Common\Item\Address\Base | ||
| 27 | * @return integer TYPO3 gender value or 99 if nothing matches | ||
| 28 | */ | ||
| 29 | public function translate( $value ) | ||
| 42 | |||
| 43 | |||
| 44 | /** | ||
| 45 | * Reverses the translation from the TYPO3 value to the MShop constant. | ||
| 46 | * | ||
| 47 | * @param string $value TYPO3 value or empty if not set | ||
| 48 | * @return string Address constant from \Aimeos\MShop\Common\Item\Address\Base | ||
| 49 | */ | ||
| 50 | public function reverse( $value ) | ||
| 62 | } | ||
| 63 |