| 1 |
<? |
<? |
| 2 |
|
/** |
| 3 |
|
* This file contains the Application::AbstractBase class. |
| 4 |
|
* |
| 5 |
|
* @author Andreas Motl <andreas.motl@ilo.de> |
| 6 |
|
* @package org.netfrag.glib |
| 7 |
|
* @name Application::AbstractBase |
| 8 |
|
* |
| 9 |
|
*/ |
| 10 |
|
|
| 11 |
|
|
| 12 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 13 |
// $Id$ |
// $Id$ |
| 14 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 15 |
// $Log$ |
// $Log$ |
| 16 |
|
// Revision 1.6 2003/03/11 00:12:45 joko |
| 17 |
|
// + fixed metadata for phpDocumentor |
| 18 |
|
// |
| 19 |
|
// Revision 1.5 2003/03/10 23:45:29 joko |
| 20 |
|
// + fixed metadata for phpDocumentor |
| 21 |
|
// |
| 22 |
|
// Revision 1.4 2003/03/10 22:58:48 joko |
| 23 |
|
// + fixed metadata for phpDocumentor |
| 24 |
|
// |
| 25 |
|
// Revision 1.3 2003/03/05 23:16:47 joko |
| 26 |
|
// updated docu - phpDocumentor is very strict about its 'blocks'... |
| 27 |
|
// |
| 28 |
|
// Revision 1.2 2003/03/03 21:11:01 joko |
| 29 |
|
// mungled the namespaces |
| 30 |
|
// |
| 31 |
// Revision 1.1 2003/02/09 17:05:57 joko |
// Revision 1.1 2003/02/09 17:05:57 joko |
| 32 |
// + initial commit |
// + initial commit |
| 33 |
// |
// |
| 34 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 35 |
|
|
| 36 |
|
|
| 37 |
class Application_AbstractBase extends DesignPattern_Bridge { |
require_once('php_extensions.php'); |
| 38 |
|
php::export_symbols( 'is_hash', 'array_join_merge', 'session_register_safe', 'array_init' ); |
| 39 |
|
|
| 40 |
|
loadModule('Class::Inner'); |
| 41 |
|
|
| 42 |
|
/** |
| 43 |
|
* --- Application::AbstractBase |
| 44 |
|
* |
| 45 |
|
* @author Andreas Motl <andreas.motl@ilo.de> |
| 46 |
|
* @package org.netfrag.glib |
| 47 |
|
* @subpackage Application |
| 48 |
|
* @name Application::AbstractBase |
| 49 |
|
* |
| 50 |
|
*/ |
| 51 |
|
class Application_AbstractBase extends Class_Inner { |
| 52 |
|
|
| 53 |
var $children = array(); |
var $children = array(); |
| 54 |
|
|
| 99 |
foreach ($build as $declaration) { |
foreach ($build as $declaration) { |
| 100 |
//$args = array_join_merge($defaults, $declaration); |
//$args = array_join_merge($defaults, $declaration); |
| 101 |
//print Dumper($declaration); |
//print Dumper($declaration); |
| 102 |
$this->_mkEmbeddedObjects( $declaration ); |
$this->perform( $declaration ); |
| 103 |
} |
} |
| 104 |
|
|
| 105 |
} |
} |