| 1 | <?php | <?php | 
|  |  |  | 
| 2 | /** | /** | 
| 3 | * This file contains the DesignPattern::MVC class. | * This file contains the DesignPattern::MVC class | 
| 4 | * | * | 
| 5 |  | * @author Andreas Motl <andreas.motl@ilo.de> | 
| 6 | * @package org.netfrag.glib | * @package org.netfrag.glib | 
| 7 | * @name DesignPattern::MVC | * @name DesignPattern::MVC | 
| 8 |  | * @filesource | 
| 9 | * | * | 
| 10 | */ | * | 
| 11 |  | * | 
| 12 | /** | * <b>Cvs-Log:</b> | 
| 13 |  | * | 
| 14 |  | * <pre> | 
| 15 | * $Id$ | * $Id$ | 
| 16 | * | * | 
| 17 | * $Log$ | * $Log$ | 
| 18 |  | * Revision 1.9  2003/03/05 16:32:18  joko | 
| 19 |  | * updated docu (phpDocumentor testing....) | 
| 20 |  | * | 
| 21 |  | * Revision 1.8  2003/03/05 16:10:17  joko | 
| 22 |  | * updated docu (phpDocumentor testing....) | 
| 23 |  | * | 
| 24 |  | * Revision 1.7  2003/03/05 15:41:03  joko | 
| 25 |  | * updated docu (phpDocumentor testing....) | 
| 26 |  | * | 
| 27 | * Revision 1.6  2003/03/05 15:24:23  joko | * Revision 1.6  2003/03/05 15:24:23  joko | 
| 28 | * updated docu (phpDocumentor testing....) | * updated docu (phpDocumentor testing....) | 
| 29 | * | * | 
| 43 | * | * | 
| 44 | * Revision 1.1  2003/03/01 15:31:18  joko | * Revision 1.1  2003/03/01 15:31:18  joko | 
| 45 | * + initial commit | * + initial commit | 
| 46 |  | * </pre> | 
| 47 | * | * | 
| 48 | * | * | 
| 49 | */ | */ | 
| 50 |  |  | 
| 51 |  |  | 
| 52 | /** | /** | 
| 53 | * This tries to abstract some parts of the MVC Pattern. | * This tries to abstract some parts of the MVC Pattern | 
| 54 | * | * | 
| 55 | * @author Andreas Motl <andreas.motl@ilo.de> | * @author Andreas Motl <andreas.motl@ilo.de> | 
| 56 | * @link http://www.netfrag.org/~joko/ | * @link http://www.netfrag.org/~joko/ | 
| 61 | * @package org.netfrag.glib | * @package org.netfrag.glib | 
| 62 | * @name DesignPattern::MVC | * @name DesignPattern::MVC | 
| 63 | * | * | 
| 64 | */ | * | 
|  |  |  | 
|  | /** |  | 
| 65 | * @todo xyz | * @todo xyz | 
| 66 | * @todo bla, bli, blub | * @todo bla, bli, blub | 
| 67 | * | * | 
| 68 | * | * | 
| 69 | */ | */ | 
|  |  |  | 
|  |  |  | 
| 70 | class DesignPattern_MVC extends DesignPattern_Facade { | class DesignPattern_MVC extends DesignPattern_Facade { | 
| 71 |  |  | 
| 72 | var $_model = array(); | var $_model = array(); |