| Total Complexity | 6 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class WP_Site_Monitor { |
||
| 25 | /** |
||
| 26 | * Define the core functionality of the plugin. |
||
| 27 | */ |
||
| 28 | public function __construct() { |
||
| 29 | $this->init(); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Initialise plugin files. |
||
| 34 | */ |
||
| 35 | public static function init() { |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Fired during plugin activation |
||
| 40 | */ |
||
| 41 | public static function activate() { |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Fired during plugin deactivation |
||
| 46 | */ |
||
| 47 | public static function deactivate() { |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Fired during plugin deletion |
||
| 52 | */ |
||
| 53 | public static function uninstall() { |
||
| 54 | } |
||
| 55 | |||
| 56 | public function display_settings() { |
||
| 57 | |||
| 58 | } |
||
| 59 | } |
||
| 60 |