| 5 |
* which inherits from the DesignPattern::MVC class. |
* which inherits from the DesignPattern::MVC class. |
| 6 |
* |
* |
| 7 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 8 |
* @package phpHtmlLib |
* @package org.netfrag.glib |
| 9 |
* @module controller::WebMVC |
* @name Site::WebAppMVC |
| 10 |
* @base DesignPattern::MVC |
* @uses DesignPattern::MVC |
| 11 |
* |
* |
| 12 |
*/ |
*/ |
| 13 |
|
|
| 15 |
* $Id$ |
* $Id$ |
| 16 |
* |
* |
| 17 |
* $Log$ |
* $Log$ |
| 18 |
|
* Revision 1.3 2003/03/05 18:54:45 joko |
| 19 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 20 |
|
* |
| 21 |
* Revision 1.2 2003/03/05 16:10:20 joko |
* Revision 1.2 2003/03/05 16:10:20 joko |
| 22 |
* updated docu (phpDocumentor testing....) |
* updated docu (phpDocumentor testing....) |
| 23 |
* |
* |
| 38 |
*/ |
*/ |
| 39 |
|
|
| 40 |
|
|
| 41 |
|
loadModule('DesignPattern::MVC'); |
| 42 |
|
|
| 43 |
|
|
| 44 |
/** |
/** |
| 45 |
* This tries to implement some parts of the MVC Pattern |
* This tries to implement some parts of the MVC Pattern |
| 46 |
* suitable to work together with phpHtmlLib or maybe |
* suitable to work together with phpHtmlLib or maybe |
| 51 |
* @copyright (c) 2003 - All Rights reserved. |
* @copyright (c) 2003 - All Rights reserved. |
| 52 |
* @license GNU LGPL (GNU Lesser General Public License) |
* @license GNU LGPL (GNU Lesser General Public License) |
| 53 |
* |
* |
| 54 |
* @author-url http://www.netfrag.org/~joko/ |
* @link http://www.netfrag.org/~joko/ |
| 55 |
* @license-url http://www.gnu.org/licenses/lgpl.txt |
* @link http://www.gnu.org/licenses/lgpl.txt |
|
* |
|
|
* @package phpHtmlLib |
|
|
* @module controller::WebMVC |
|
|
* @base DesignPattern::MVC |
|
|
* |
|
|
*/ |
|
|
|
|
|
/** |
|
|
* Todo: |
|
|
* |
|
|
* o xyz |
|
|
* o bla, bli, blub |
|
| 56 |
* |
* |
| 57 |
|
* @package org.netfrag.glib |
| 58 |
|
* @subpackage Site |
| 59 |
|
* @name Site::WebAppMVC |
| 60 |
|
* @uses DesignPattern::MVC |
| 61 |
* |
* |
| 62 |
*/ |
*/ |
|
|
|
|
|
|
|
// isn't required by now: |
|
|
//loadModule('DesignPattern::Object'); |
|
|
//class DesignPattern_MVC extends DesignPattern_Object { |
|
|
|
|
|
loadModule('DesignPattern::MVC'); |
|
| 63 |
class Site_WebAppMVC extends DesignPattern_MVC { |
class Site_WebAppMVC extends DesignPattern_MVC { |
| 64 |
|
|
| 65 |
|
|