deprecated.php
1.59 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/**
* An abstract service class, individual services should
* extend this class
*/
abstract class HMBKP_Service {}
/**
* A singleton to handle the registering, de-registering
* and storage of services
*/
class HMBKP_Services {
/**
* Store the current instance
*
* @access private
* @var object HMBKP_Services
* @static
*/
private static $instance;
/**
* The array of services
*
* Should be of the format array( __FILE__ => __CLASS__ );
*
* @access private
* @var array
* @static
*/
private $services = array();
/**
* The current schedule object
*
* @access private
* @var object HMBKP_Scheduled_Backup
*/
private $schedule;
/**
* Get the current instance
*
* @access public
* @static
*/
public static function instance() {
if ( ! isset( self::$instance ) )
self::$instance = new HMBKP_Services;
return self::$instance;
}
/**
* Register a new service
*
* @param $filepath
* @param $classname
* @return bool|WP_Error
*/
public static function register( $filepath, $classname ) {
_deprecated_function( __METHOD__, '3.1.2' );
}
/**
* Instantiate the individual service classes
*
* @param string $classname
*
* @return array An array of instantiated classes
*/
private static function instantiate( $classname ) {
if ( ! class_exists( $classname ) )
return new \WP_Error( 'hmbkp_invalid_type_error', sprintf( __( 'Argument 1 for %s must be a valid class', 'backupwordpress' ) ), __METHOD__ );
/**
* @var HMBKP_Service
*/
$class = new $classname( self::instance()->schedule );
return $class;
}
}