PluginProbe
Search Analytics for WP / 1.0
Search Analytics for WP v1.0
trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.1.1 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 37 releases
search-analytics / admin / admin.php

admin.php in Search Analytics for WP 1.0, at admin/admin.php

20 lines 375 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
4 if( ! class_exists('MWTSA_Admin') ) {
5
6 class MWTSA_Admin {
7
8 public function __construct() {
9 $this->includes();
10 }
11
12 private function includes() {
13 include_once ('includes/class.settings.php');
14 include_once ('includes/class.stats.php');
15 }
16 }
17
18 }
19
20 return new MWTSA_Admin();