1: <?php
2: /**
3: * This file contains the abstract datatype class.
4: *
5: * @package Core
6: * @subpackage Datatype
7: * @version SVN Revision $Rev:$
8: *
9: * @author unknown
10: * @copyright four for business AG <www.4fb.de>
11: * @license http://www.contenido.org/license/LIZENZ.txt
12: * @link http://www.4fb.de
13: * @link http://www.contenido.org
14: */
15:
16: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
17:
18: /**
19: * Abstract datatype class.
20: * @deprecated 2013-11-17 This class is not longer supported.
21: * @package Core
22: * @subpackage Datatype
23: */
24: class cDatatype {
25:
26: /**
27: * Effective value
28: * @var mixed
29: */
30: protected $_mValue;
31:
32: /**
33: * Displayed value
34: * @var mixed
35: */
36: protected $_mDisplayedValue;
37:
38: /**
39: *
40: */
41: public function __construct() {
42: cDeprecated("The cDatatype classes are not longer supported.");
43: }
44:
45: /**
46: * Sets this datatype to a specific value
47: *
48: * @param mixed $value
49: */
50: public function set($value) {
51: }
52:
53: /**
54: * Parses the given value to transfer into the datatype's format
55: *
56: * @param mixed $value
57: */
58: public function parse($value) {
59: }
60:
61: /**
62: * Returns the effective value
63: * @return mixed
64: */
65: public function get() {
66: }
67:
68: /**
69: * Renders the displayed value
70: */
71: public function render() {
72: }
73: }
74:
75: ?>