Usage.php
590 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
<?php
namespace AIOSEO\Plugin\Lite\Admin;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use AIOSEO\Plugin\Common\Admin as CommonAdmin;
/**
* Usage tracking class.
*
* @since 4.0.0
*/
class Usage extends CommonAdmin\Usage {
/**
* Class Constructor
*
* @since 4.0.0
*/
public function __construct() {
parent::__construct();
$this->enabled = aioseo()->options->advanced->usageTracking;
}
/**
* Get the type for the request.
*
* @since 4.0.0
*
* @return string The install type.
*/
public function getType() {
return 'lite';
}
}