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 ) |
||
45 | |||
46 | |||
47 | /** |
||
48 | * Reverses the translation from the TYPO3 value to the MShop constant. |
||
49 | * |
||
50 | * @param string $value TYPO3 value or empty if not set |
||
51 | * @return string Address constant from \Aimeos\MShop\Common\Item\Address\Base |
||
52 | */ |
||
53 | public function reverse( $value ) |
||
69 | } |
||
70 |