| 1 | <?php | ||
| 21 | class T3Status implements \Aimeos\MW\Criteria\Plugin\Iface | ||
| 22 | { | ||
| 23 | /** | ||
| 24 | * Translates the MShop value into its TYPO3 equivalent. | ||
| 25 | * | ||
| 26 | * @param integer $value Status value | ||
| 27 | * @return integer Value for TYPO3 "disabled" field | ||
| 28 | */ | ||
| 29 | public function translate( $value ) | ||
| 33 | |||
| 34 | |||
| 35 | /** | ||
| 36 | * Reverses the translation from the TYPO3 value to the MShop constant. | ||
| 37 | * | ||
| 38 | * @param integer $value Value for TYPO3 "disabled" field | ||
| 39 | * @return integer Status value | ||
| 40 | */ | ||
| 41 | public function reverse( $value ) | ||
| 45 | } | ||
| 46 |