summaryrefslogtreecommitdiff
path: root/framework/interfaces.php
diff options
context:
space:
mode:
authorxue <>2007-02-13 04:33:05 +0000
committerxue <>2007-02-13 04:33:05 +0000
commit9fb0bcd1aa9cdd1b20c916a7c5154741c0ec513a (patch)
tree509e5a7721cfc64fd7341df8182724a6115bed3d /framework/interfaces.php
parentc662da1a887f852e08bd34d643111239ea82a961 (diff)
Added support to include external application configuration files.
Diffstat (limited to 'framework/interfaces.php')
-rw-r--r--framework/interfaces.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/framework/interfaces.php b/framework/interfaces.php
index 31bbefd7..747d5b02 100644
--- a/framework/interfaces.php
+++ b/framework/interfaces.php
@@ -63,6 +63,14 @@ interface IService
*/
public function setID($id);
/**
+ * @return boolean whether the service is enabled
+ */
+ public function getEnabled();
+ /**
+ * @param boolean whether the service is enabled
+ */
+ public function setEnabled($value);
+ /**
* Runs the service.
*/
public function run();