summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_module_interface.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-06-23 11:08:04 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-03 11:49:16 -0400
commitdf3b67867982dfd7f4a0a0d7a7a05d1d8c916b1b (patch)
tree1e97bc84bdc0784bae7a71c7f63ec1ae5644e647 /pts-core/objects/pts_module_interface.php
parent3f9da606ced5bd2cdf861b86f9a61f1ce075164f (diff)
downloadphoronix-test-suite-upstream-df3b67867982dfd7f4a0a0d7a7a05d1d8c916b1b.tar.gz
phoronix-test-suite-upstream-df3b67867982dfd7f4a0a0d7a7a05d1d8c916b1b.tar.xz
phoronix-test-suite-upstream-df3b67867982dfd7f4a0a0d7a7a05d1d8c916b1b.zip
Move all sensor monitoring code from pts-core to system_monitor module.
Diffstat (limited to 'pts-core/objects/pts_module_interface.php')
-rw-r--r--pts-core/objects/pts_module_interface.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/pts-core/objects/pts_module_interface.php b/pts-core/objects/pts_module_interface.php
index 1538e2d..83f4b21 100644
--- a/pts-core/objects/pts_module_interface.php
+++ b/pts-core/objects/pts_module_interface.php
@@ -32,11 +32,11 @@ class pts_module_interface
// General Functions
//
- public static function __startup($obj)
+ public static function __startup($obj = NULL)
{
return;
}
- public static function __shutdown($obj)
+ public static function __shutdown($obj = NULL)
{
return;
}
@@ -45,19 +45,19 @@ class pts_module_interface
// Installation Functions
//
- public static function __pre_install_process($obj)
+ public static function __pre_install_process($obj = NULL)
{
return;
}
- public static function __pre_test_install($obj)
+ public static function __pre_test_install($obj = NULL)
{
return;
}
- public static function __post_test_install($obj)
+ public static function __post_test_install($obj = NULL)
{
return;
}
- public static function __post_install_process($obj)
+ public static function __post_install_process($obj = NULL)
{
return;
}
@@ -66,23 +66,23 @@ class pts_module_interface
// Run Functions
//
- public static function __pre_run_process($obj)
+ public static function __pre_run_process($obj = NULL)
{
return;
}
- public static function __pre_test_run($obj)
+ public static function __pre_test_run($obj = NULL)
{
return;
}
- public static function __interim_test_run($obj)
+ public static function __interim_test_run($obj = NULL)
{
return;
}
- public static function __post_test_run($obj)
+ public static function __post_test_run($obj = NULL)
{
return;
}
- public static function __post_run_process($obj)
+ public static function __post_run_process($obj = NULL)
{
return;
}