|
1
|
<?php |
|
2
|
namespace NestedPages\Entities\PluginIntegration; |
|
3
|
|
|
4
|
class DarkMode |
|
5
|
{ |
|
6
|
/** |
|
7
|
* Installed
|
|
8
|
* @var boolean |
|
9
|
*/ |
|
10
|
public $installed = false; |
|
11
|
|
|
12
|
public function __construct() |
|
13
|
{ |
|
14
|
if( !class_exists('Dark_Mode') ) return; |
|
15
|
$this->installed = true; |
|
16
|
} |
|
17
|
}
|