| 3 |
// $Id$ |
// $Id$ |
| 4 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 5 |
// $Log$ |
// $Log$ |
| 6 |
|
// Revision 1.2 2003/03/03 21:11:01 joko |
| 7 |
|
// mungled the namespaces |
| 8 |
|
// |
| 9 |
// Revision 1.1 2003/02/09 17:05:57 joko |
// Revision 1.1 2003/02/09 17:05:57 joko |
| 10 |
// + initial commit |
// + initial commit |
| 11 |
// |
// |
| 12 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 13 |
|
|
| 14 |
|
|
| 15 |
class Application_AbstractBase extends DesignPattern_Bridge { |
require_once('php_extensions.php'); |
| 16 |
|
php::export_symbols( 'is_hash', 'array_join_merge', 'session_register_safe', 'array_init' ); |
| 17 |
|
|
| 18 |
|
loadModule('Class::Inner'); |
| 19 |
|
class Application_AbstractBase extends Class_Inner { |
| 20 |
|
|
| 21 |
var $children = array(); |
var $children = array(); |
| 22 |
|
|
| 67 |
foreach ($build as $declaration) { |
foreach ($build as $declaration) { |
| 68 |
//$args = array_join_merge($defaults, $declaration); |
//$args = array_join_merge($defaults, $declaration); |
| 69 |
//print Dumper($declaration); |
//print Dumper($declaration); |
| 70 |
$this->_mkEmbeddedObjects( $declaration ); |
$this->perform( $declaration ); |
| 71 |
} |
} |
| 72 |
|
|
| 73 |
} |
} |