diff options
author | xue <> | 2006-03-31 12:42:22 +0000 |
---|---|---|
committer | xue <> | 2006-03-31 12:42:22 +0000 |
commit | 6845c00a3f752abecd9ef763848329bceaf63df4 (patch) | |
tree | d573c37ad864edde9a04f1c7b415afe6c2a9c1ef /framework/TModule.php | |
parent | 06fdd252452217716b1062b632fd2fc2195a66e2 (diff) |
Reorganized folders under framework. This may break existing applications.
Diffstat (limited to 'framework/TModule.php')
-rw-r--r-- | framework/TModule.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/framework/TModule.php b/framework/TModule.php new file mode 100644 index 00000000..ad68ca9f --- /dev/null +++ b/framework/TModule.php @@ -0,0 +1,57 @@ +<?php
+/**
+ * TModule class file.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System
+ */
+
+/**
+ * TModule class.
+ *
+ * TModule implements the basic methods required by IModule and may be
+ * used as the basic class for application modules.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System
+ * @since 3.0
+ */
+abstract class TModule extends TApplicationComponent implements IModule
+{
+ /**
+ * @var string module id
+ */
+ private $_id;
+
+ /**
+ * Initializes the module.
+ * This method is required by IModule and is invoked by application.
+ * @param TXmlElement module configuration
+ */
+ public function init($config)
+ {
+ }
+
+ /**
+ * @return string id of this module
+ */
+ public function getID()
+ {
+ return $this->_id;
+ }
+
+ /**
+ * @param string id of this module
+ */
+ public function setID($value)
+ {
+ $this->_id=$value;
+ }
+}
+
+?>
\ No newline at end of file |