1 <?php
2 /* WARNING - WARNING - WARNING - WARNING - WARNING - WARNING - WARNING *******\
3 * DO NOT ATTEMPT TO USE THIS CLASS. IT IS A WORK IN PROGRESS. IT IS VAPOURWARE.
4 * IT PROBABLY HAS NOT EVEN BEEN THROUGH THE INTERPRETER/PARSER YET. IT WILL NOT
5 * WORK. THE DESIGN WILL CHANGE. THERE'S STILL MUCH WORK TO BE DONE. LEAVE IT.
6 \******************************************************************************/
7
8 /* XAO_InputValidator.php *****************************************************\
9 * This script provides the class definition for InputValidator.
10 * This class has the job of operating on info input submitted by an end user. it
11 * can work if the input data is arranged/packaged in a cirtain way. Classes
12 * InputField and InputControl are designed to provide the neccesary specs for
13 * creating a compatible arrangement of input fields. The implementation, however
14 * , is up to the XSLT template and the user-agent. It operates on an array of
15 * name/value pairs which is required by the constructor.
16 */
17
18 /**
19 * Import the basic DomDoc class for inheritance.
20 *
21 * This class is based on DomDoc and hence supports all of it's functionality,
22 * including it's ability to be consumed by another DomDoc based object.
23 *
24 * @import DomDoc
25 */
26 include_once "XAO_DomDoc.php";
27
28 /**
29 * Base class for servants filling out requests for RpcController.
30 *
31 * WARNING - WARNING - WARNING - WARNING - WARNING - WARNING - WARNING
32 * DO NOT ATTEMPT TO USE THIS CLASS. IT IS A WORK IN PROGRESS. IT IS VAPOURWARE.
33 * IT PROBABLY HAS NOT EVEN BEEN THROUGH THE INTERPRETER/PARSER YET. IT WILL NOT
34 * WORK. THE DESIGN WILL CHANGE. THERE'S STILL MUCH WORK TO BE DONE. LEAVE IT.
35 * Classes that need to be accessed through the RpcController should extend
36 * this class.
37 *
38 * @author Terence Kearns
39 * @version 0.2
40 * @copyright Terence Kearns 2003
41 * @license LGPL
42 * @package XAO
43 * @link http://xao-php.sourceforge.net
44 */
45 class InputValidator extends DomDoc {
46 }
47
48 ?>