summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_module_interface.php
blob: 56cba1dc189ff6029e3ad24bb96432343950bdba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php

/*
	Phoronix Test Suite "Trondheim"
	URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/
	Copyright (C) 2008, Phoronix Media
	Copyright (C) 2004-2008, Michael Larabel
	pts_module_interface.php: The generic Phoronix Test Suite module object that is extended by the specific modules/plug-ins
*/

class pts_module_interface
{
	const module_name = "Generic Module";
	const module_version = "1.0.0";
	const module_description = "A description of the module.";
	const module_author = "Module Creator";

	//
	// General Functions
	//

	public static function __startup($obj)
	{
		return;
	}
	public static function __shutdown($obj)
	{
		return;
	}

	//
	// Installation Functions
	//

	public static function __pre_install_process($obj)
	{
		return;
	}
	public static function __pre_test_install($obj)
	{
		return;
	}
	public static function __post_test_install($obj)
	{
		return;
	}
	public static function __post_install_process($obj)
	{
		return;
	}

	//
	// Run Functions
	//

	public static function __pre_run_process($obj)
	{
		return;
	}
	public static function __pre_test_run($obj)
	{
		return;
	}
	public static function __interim_test_run($obj)
	{
		return;
	}
	public static function __post_test_run($obj)
	{
		return;
	}
	public static function __post_run_process($obj)
	{
		return;
	}
}

?>