| 5 |
* class to seamlessly integrate into its render queue. |
* class to seamlessly integrate into its render queue. |
| 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 MVCPage |
* @name Site::WebBlock |
| 10 |
* |
* |
| 11 |
*/ |
*/ |
| 12 |
|
|
| 14 |
* $Id$ |
* $Id$ |
| 15 |
* |
* |
| 16 |
* $Log$ |
* $Log$ |
| 17 |
|
* Revision 1.2 2003/03/05 18:54:45 joko |
| 18 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 19 |
|
* |
| 20 |
* Revision 1.1 2003/03/05 12:18:47 joko |
* Revision 1.1 2003/03/05 12:18:47 joko |
| 21 |
* from GenericPage.php |
* from GenericPage.php |
| 22 |
* |
* |
| 28 |
|
|
| 29 |
|
|
| 30 |
/** |
/** |
| 31 |
|
* Make sure we have the required parent class |
| 32 |
|
*/ |
| 33 |
|
//class Site_WebPageMVC extends PageWidget { |
| 34 |
|
//loadModule('DesignPattern::MVC'); |
| 35 |
|
//class Site_GenericPage extends DesignPattern_MVC { |
| 36 |
|
//loadModule('DesignPattern::Proxy'); |
| 37 |
|
loadModule('DesignPattern::TransparentProxy'); |
| 38 |
|
|
| 39 |
|
|
| 40 |
|
/** |
| 41 |
* This class is used to build content |
* This class is used to build content |
| 42 |
* for an MVC controlled page. It instantiates |
* for an MVC controlled page. It instantiates |
| 43 |
* an concrete helper MVC object which does the |
* an concrete helper MVC object which does the |
| 53 |
* Page-implementations here in future... |
* Page-implementations here in future... |
| 54 |
* |
* |
| 55 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 56 |
* @package phpHtmlLib |
* @package org.netfrag.glib |
| 57 |
* @module MVCPage |
* @subpackage Site |
| 58 |
|
* @name Site::WebBlock |
| 59 |
|
* |
| 60 |
|
* @todo x phpHtmlLib::PageWidget-Adapter |
| 61 |
|
* @todo o php-include-file-Adapter |
| 62 |
* |
* |
| 63 |
*/ |
*/ |
|
|
|
|
// TODO: |
|
|
// x phpHtmlLib::PageWidget-Adapter |
|
|
// o php-include-file-Adapter |
|
|
|
|
|
/** |
|
|
* Make sure we have the required parent class |
|
|
*/ |
|
|
|
|
|
//class Site_WebPageMVC extends PageWidget { |
|
|
//loadModule('DesignPattern::MVC'); |
|
|
//class Site_GenericPage extends DesignPattern_MVC { |
|
|
|
|
|
//loadModule('DesignPattern::Proxy'); |
|
|
loadModule('DesignPattern::TransparentProxy'); |
|
|
|
|
| 64 |
//class Site_GenericPage extends DesignPattern_Proxy { |
//class Site_GenericPage extends DesignPattern_Proxy { |
| 65 |
class Site_WebBlock extends DesignPattern_TransparentProxy { |
class Site_WebBlock extends DesignPattern_TransparentProxy { |
| 66 |
|
|