From df3b67867982dfd7f4a0a0d7a7a05d1d8c916b1b Mon Sep 17 00:00:00 2001 From: Michael Larabel Date: Mon, 23 Jun 2008 11:08:04 -0400 Subject: Move all sensor monitoring code from pts-core to system_monitor module. --- pts-core/objects/pts_module_interface.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'pts-core/objects/pts_module_interface.php') 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; } -- cgit