1: <?php
2:
3: /**
4: *
5: * @package Plugin
6: * @subpackage FormAssistant
7: * @author Marcus Gnaß <marcus.gnass@4fb.de>
8: * @copyright four for business AG
9: * @link http://www.4fb.de
10: */
11:
12: // assert CONTENIDO framework
13: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
14:
15: /**
16: * Default implementation of the abstract form processor that implements no
17: * postprocessing at all.
18: *
19: * @author Marcus Gnaß <marcus.gnass@4fb.de>
20: */
21: class DefaultFormProcessor extends PifaAbstractFormProcessor {
22:
23: /**
24: *
25: * @see PifaAbstractFormProcessor::_processReadData()
26: */
27: protected function _processReadData() {
28: }
29:
30: /**
31: *
32: * @see PifaAbstractFormProcessor::_processValidatedData()
33: */
34: protected function _processValidatedData() {
35: }
36:
37: /**
38: *
39: * @see PifaAbstractFormProcessor::_processStoredData()
40: */
41: protected function _processStoredData() {
42: }
43: }
44: