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
|
<?php /** * Duplicate Post main class. * * @package Duplicate_Post * @since 4.0 */
namespace Yoast\WP\Duplicate_Post;
use Yoast\WP\Duplicate_Post\Handlers\Handler; use Yoast\WP\Duplicate_Post\UI\User_Interface; use Yoast\WP\Duplicate_Post\Watchers\Watchers;
/** * Represents the Duplicate Post main class. */ class Duplicate_Post {
/** * Permissions_Helper object. * * @var Permissions_Helper */ protected $permissions_helper;
/** * User_Interface object. * * @var User_Interface */ protected $user_interface;
/** * Post_Duplicator object. * * @var Post_Duplicator */ protected $post_duplicator;
/** * Handler object. * * @var Handler */ protected $handler;
/** * Post_Republisher object. * * @var Post_Republisher */ protected $post_republisher;
/** * Revisions_Migrator object. * * @var Revisions_Migrator */ protected $revisions_migrator;
/** * Watchers object. * * @var Watchers */ protected $watchers;
/** * Initializes the main class. */ public function __construct() { $this->permissions_helper = new Permissions_Helper(); $this->user_interface = new User_Interface( $this->permissions_helper ); $this->post_duplicator = new Post_Duplicator(); $this->handler = new Handler( $this->post_duplicator, $this->permissions_helper ); $this->post_republisher = new Post_Republisher( $this->post_duplicator, $this->permissions_helper ); $this->revisions_migrator = new Revisions_Migrator(); $this->watchers = new Watchers( $this->permissions_helper );
$this->post_republisher->register_hooks(); $this->revisions_migrator->register_hooks(); } }
|