| 1 |
<?php |
<?php |
|
|
|
| 2 |
/** |
/** |
| 3 |
* This file contains the Application::ComponentRegistry class. |
* This file contains the Application::ComponentRegistry class. |
| 4 |
* |
* |
| 5 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 6 |
* @package phpHtmlLib |
* @package org.netfrag.glib |
| 7 |
|
* @name Application::ComponentRegistry |
| 8 |
|
* |
| 9 |
*/ |
*/ |
| 10 |
|
|
| 11 |
/** |
/** |
| 12 |
* $Id$ |
* $Id$ |
| 13 |
* |
* |
| 14 |
* $Log$ |
* $Log$ |
| 15 |
|
* Revision 1.2 2003/03/05 18:54:42 joko |
| 16 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 17 |
|
* |
| 18 |
* Revision 1.1 2003/03/01 15:29:11 joko |
* Revision 1.1 2003/03/01 15:29:11 joko |
| 19 |
* + initial commit |
* + initial commit |
| 20 |
* |
* |
| 48 |
* @copyright (c) 2003 - All Rights reserved. |
* @copyright (c) 2003 - All Rights reserved. |
| 49 |
* @license GNU LGPL (GNU Lesser General Public License) |
* @license GNU LGPL (GNU Lesser General Public License) |
| 50 |
* |
* |
| 51 |
* @author-url http://www.netfrag.org/~joko/ |
* @link http://www.netfrag.org/~joko/ |
| 52 |
* @license-url http://www.gnu.org/licenses/lgpl.txt |
* @link http://www.gnu.org/licenses/lgpl.txt |
| 53 |
* |
* |
| 54 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 55 |
* @module Application::ComponentRegistry |
* @subpackage Application |
| 56 |
* |
* @name Application::ComponentRegistry |
|
*/ |
|
|
|
|
|
/** |
|
|
* Todo: |
|
| 57 |
* |
* |
| 58 |
|
* @todo |
| 59 |
|
* <pre> |
| 60 |
* o Be able to *persistently* register new components. |
* o Be able to *persistently* register new components. |
| 61 |
* By now the declaration (read-only) is included on each request. |
* By now the declaration (read-only) is included on each request. |
| 62 |
* No caching or similar stuff occours at this level!!! |
* No caching or similar stuff occours at this level!!! |
| 63 |
|
* </pre> |
| 64 |
* |
* |
| 65 |
*/ |
*/ |
|
|
|
|
|
|
| 66 |
class Application_ComponentRegistry { |
class Application_ComponentRegistry { |
| 67 |
|
|
| 68 |
/** |
/** |