summaryrefslogtreecommitdiff
path: root/framework/Util/TParameterModule.php
diff options
context:
space:
mode:
authorcarlgmathisen <>2008-12-26 23:51:27 +0000
committercarlgmathisen <>2008-12-26 23:51:27 +0000
commit7aeee6e122427cc207364971560bde78ef173cf0 (patch)
tree49a9508c0ac7107258006e6531efb08e8279569b /framework/Util/TParameterModule.php
parent7f0c873c5edebcec7bc1d27fe482f2c4395ee5cf (diff)
tparametermodule docs
Diffstat (limited to 'framework/Util/TParameterModule.php')
-rw-r--r--framework/Util/TParameterModule.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/framework/Util/TParameterModule.php b/framework/Util/TParameterModule.php
index 5549ff71..bd8414ea 100644
--- a/framework/Util/TParameterModule.php
+++ b/framework/Util/TParameterModule.php
@@ -40,19 +40,23 @@
* tag, the former takes precedence.
*
* @author Qiang Xue <qiang.xue@gmail.com>
+ * @author Carl G. Mathisen <carlgmathisen@gmail.com>
* @version $Id$
* @package System.Util
* @since 3.0
*/
class TParameterModule extends TModule
{
+ /**
+ * @deprecated since 3.2
+ */
const PARAM_FILE_EXT='.xml';
private $_initialized=false;
private $_paramFile=null;
/**
* Initializes the module by loading parameters.
- * @param TXmlElement content enclosed within the module tag
+ * @param mixed content enclosed within the module tag
*/
public function init($config)
{
@@ -89,7 +93,7 @@ class TParameterModule extends TModule
/**
* Loads parameters into application.
- * @param TXmlElement XML representation of the parameters
+ * @param mixed XML of PHP representation of the parameters
* @throws TConfigurationException if the parameter file format is invalid
*/
protected function loadParameters($config)