ConLite/conlite/classes/datatypes/class.datatype.php

71 Zeilen
1.1 KiB
PHP

<?php
/**
* Project:
* Contenido Content Management System
*
* Description:
*
*
* Requirements:
* @con_php_req 5.0
*
*
* @package Contenido Backend classes
* @version 1.0
* @author
* @copyright four for business AG <www.4fb.de>
* @license http://www.contenido.org/license/LIZENZ.txt
* @link http://www.4fb.de
* @link http://www.contenido.org
*
* {@internal
* created
*
* $Id: class.datatype.php 2 2011-07-20 12:00:48Z oldperl $:
* }}
*
*/
if (!defined('CON_FRAMEWORK')) {
die('Illegal call');
}
class cDatatype {
/* Effective value */
var $_mValue;
/* Displayed value */
var $_mDisplayedValue;
function __construct() {
}
/* Sets this datatype to a specific value */
function set($value) {
}
/* Parses the given value to transfer into the datatype's format */
function parse($value) {
}
/* Returns the effective value */
function get() {
}
/* Renders the displayed value */
function render() {
}
}
?>