BuddyPress.php
961 Bytes
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
<?php
namespace ACA\BP;
use AC;
use AC\ListScreenFactory\Aggregate;
use AC\Registerable;
use AC\Services;
use ACP\Service\IntegrationStatus;
final class BuddyPress implements Registerable
{
private $location;
public function __construct(AC\Asset\Location\Absolute $location)
{
$this->location = $location;
}
public function register(): void
{
if ( ! class_exists('BuddyPress', false)) {
return;
}
Aggregate::add(new ListScreenFactory\Email());
Aggregate::add(new ListScreenFactory\Group());
$this->create_services()->register();
}
private function create_services(): Services
{
return new Services([
new Service\Admin($this->location),
new Service\Columns(),
new Service\ListScreens(),
new Service\Table($this->location),
new IntegrationStatus('ac-addon-buddypress'),
]);
}
}