-
Notifications
You must be signed in to change notification settings - Fork 17
/
AbstractSwiftypeComponent.php
83 lines (73 loc) · 1.54 KB
/
AbstractSwiftypeComponent.php
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
<?php
namespace Swiftype\SiteSearch\Wordpress;
use Elastic\SiteSearch\Client\Client;
use Swiftype\SiteSearch\Wordpress\Config\Config;
/**
* A base class for all components used by the Swiftype Site Search plugin.
*
* @author Matt Riley <[email protected]>, Quin Hoxie <[email protected]>, Aurelien Foucret <[email protected]>
*/
class AbstractSwiftypeComponent
{
/**
* @var Config
*/
private $config;
/**
* @var Client
*/
private $client;
/**
* Constructor.
*/
public function __construct()
{
\add_action('swiftype_config_loaded', [$this, 'loadConfig']);
\add_action('swiftype_client_loaded', [$this, 'loadClient']);
}
/**
* Install the config.
*
* @param Config $config
*/
public final function loadConfig(Config $config)
{
$this->config = $config;
}
/**
* Install the client.
*
* @param Client $client
*/
public final function loadClient(Client $client)
{
$this->client = $client;
}
/**
* Get the config.
*
* @return Config
*/
public function getConfig()
{
return $this->config;
}
/**
* Get the client.
*
* @return Client
*/
public function getClient()
{
return $this->client;
}
/**
* Check if currently executing WP_CLI.
*
* @return boolean
*/
public function isWpCLI()
{
return (defined('WP_CLI') && WP_CLI == true) || php_sapi_name () == 'cli';
}
}