| 1 |
<? |
<? |
| 2 |
// --------------------------------------------------------------------------- |
/** |
| 3 |
// $Id$ |
* This file contains the Application::AbstractBase class. |
| 4 |
// --------------------------------------------------------------------------- |
* |
| 5 |
// $Log$ |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 6 |
// Revision 1.1 2003/02/09 17:05:57 joko |
* @package org.netfrag.glib |
| 7 |
// + initial commit |
* @name Application::AbstractBase |
| 8 |
// |
* |
| 9 |
// --------------------------------------------------------------------------- |
*/ |
| 10 |
|
|
| 11 |
|
|
| 12 |
class Application_AbstractBase extends DesignPattern_Bridge { |
/** |
| 13 |
|
* <b>Cvs-Log:</b> |
| 14 |
|
* |
| 15 |
|
* <pre> |
| 16 |
|
* --------------------------------------------------------------------------- |
| 17 |
|
* $Id$ |
| 18 |
|
* --------------------------------------------------------------------------- |
| 19 |
|
* $Log$ |
| 20 |
|
* Revision 1.9 2003/04/05 21:20:56 joko |
| 21 |
|
* moved/renamed required file |
| 22 |
|
* |
| 23 |
|
* Revision 1.8 2003/03/11 01:42:57 joko |
| 24 |
|
* + fixed metadata for phpDocumentor |
| 25 |
|
* |
| 26 |
|
* Revision 1.7 2003/03/11 01:09:59 joko |
| 27 |
|
* + fixed metadata for phpDocumentor |
| 28 |
|
* |
| 29 |
|
* Revision 1.6 2003/03/11 00:12:45 joko |
| 30 |
|
* + fixed metadata for phpDocumentor |
| 31 |
|
* |
| 32 |
|
* Revision 1.5 2003/03/10 23:45:29 joko |
| 33 |
|
* + fixed metadata for phpDocumentor |
| 34 |
|
* |
| 35 |
|
* Revision 1.4 2003/03/10 22:58:48 joko |
| 36 |
|
* + fixed metadata for phpDocumentor |
| 37 |
|
* |
| 38 |
|
* Revision 1.3 2003/03/05 23:16:47 joko |
| 39 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 40 |
|
* |
| 41 |
|
* Revision 1.2 2003/03/03 21:11:01 joko |
| 42 |
|
* mungled the namespaces |
| 43 |
|
* |
| 44 |
|
* Revision 1.1 2003/02/09 17:05:57 joko |
| 45 |
|
* + initial commit |
| 46 |
|
* |
| 47 |
|
* --------------------------------------------------------------------------- |
| 48 |
|
* </pre> |
| 49 |
|
* |
| 50 |
|
*/ |
| 51 |
|
|
| 52 |
|
|
| 53 |
|
require_once('utils/extensions.php'); |
| 54 |
|
php::export_symbols( 'is_hash', 'array_join_merge', 'session_register_safe', 'array_init' ); |
| 55 |
|
|
| 56 |
|
loadModule('Class::Inner'); |
| 57 |
|
|
| 58 |
|
|
| 59 |
|
/** |
| 60 |
|
* --- Application::AbstractBase |
| 61 |
|
* |
| 62 |
|
* @author Andreas Motl <andreas.motl@ilo.de> |
| 63 |
|
* |
| 64 |
|
* @package org.netfrag.glib |
| 65 |
|
* @subpackage Application |
| 66 |
|
* @name Application::AbstractBase |
| 67 |
|
* |
| 68 |
|
*/ |
| 69 |
|
class Application_AbstractBase extends Class_Inner { |
| 70 |
|
|
| 71 |
var $children = array(); |
var $children = array(); |
| 72 |
|
|
| 117 |
foreach ($build as $declaration) { |
foreach ($build as $declaration) { |
| 118 |
//$args = array_join_merge($defaults, $declaration); |
//$args = array_join_merge($defaults, $declaration); |
| 119 |
//print Dumper($declaration); |
//print Dumper($declaration); |
| 120 |
$this->_mkEmbeddedObjects( $declaration ); |
$this->perform( $declaration ); |
| 121 |
} |
} |
| 122 |
|
|
| 123 |
} |
} |