summaryrefslogtreecommitdiff
path: root/framework/TApplication.php
diff options
context:
space:
mode:
authorxue <>2006-02-13 03:19:48 +0000
committerxue <>2006-02-13 03:19:48 +0000
commitacf77801d4066055cfc3c20e5b634722923f865f (patch)
tree4ef2616f4be993aca6aeb64cb723aeaa35f88274 /framework/TApplication.php
parent6f6f20be24c841e61f999a4cff0bb86cf671aa56 (diff)
Anonymous modules are allowed now.
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r--framework/TApplication.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php
index 2f25925d..8c4f65f0 100644
--- a/framework/TApplication.php
+++ b/framework/TApplication.php
@@ -824,7 +824,8 @@ class TApplication extends TComponent
Prado::trace("Loading module $id ({$moduleConfig[0]})",'System.TApplication');
$module=Prado::createComponent($moduleConfig[0]);
- $this->setModule($id,$module);
+ if(is_string($id))
+ $this->setModule($id,$module);
foreach($moduleConfig[1] as $name=>$value)
$module->setSubProperty($name,$value);
$module->init($moduleConfig[2]);
@@ -1087,14 +1088,15 @@ class TApplicationConfiguration extends TComponent
foreach($modulesNode->getElementsByTagName('module') as $node)
{
$properties=$node->getAttributes();
- if(($id=$properties->itemAt('id'))===null)
- throw new TConfigurationException('appconfig_moduleid_required');
- if(($type=$properties->remove('class'))===null && isset($this->_modules[$id]) && $this->_modules[$id][2]===null)
- $type=$this->_modules[$id][0];
+ $id=$properties->itemAt('id');
+ $type=$properties->remove('class');
if($type===null)
throw new TConfigurationException('appconfig_moduletype_required',$id);
$node->setParent(null);
- $this->_modules[$id]=array($type,$properties->toArray(),$node);
+ if($id===null)
+ $this->_modules[]=array($type,$properties->toArray(),$node);
+ else
+ $this->_modules[$id]=array($type,$properties->toArray(),$node);
}
}
@@ -1106,9 +1108,7 @@ class TApplicationConfiguration extends TComponent
$properties=$node->getAttributes();
if(($id=$properties->itemAt('id'))===null)
throw new TConfigurationException('appconfig_serviceid_required');
- if(($type=$properties->remove('class'))===null && isset($this->_services[$id]) && $this->_services[$id][2]===null)
- $type=$this->_services[$id][0];
- if($type===null)
+ if(($type=$properties->remove('class'))===null)
throw new TConfigurationException('appconfig_servicetype_required',$id);
$node->setParent(null);
$this->_services[$id]=array($type,$properties->toArray(),$node);