1<?php
2
3/**
4 * The plugin bootstrap file
5 *
6 * This file is read by WordPress to generate the plugin information in the plugin
7 * admin area. This file also includes all the dependencies used by the plugin,
8 * registers the activation and deactivation functions, and defines a function
9 * that starts the plugin.
10 *
11 * @since 1.0.0
12 * @package Wptool
13 *
14 * @wordpress-plugin
15 * Plugin Name: WPTOOL - WP Admin Dash Plugin
16 * Plugin URI: godaddy.com
17 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
18 * Version: 1.0.20
19 * Author: GoDaddy
20 * License: GPL-2.0+
21 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
22 * Text Domain: wptool-admin-dashboard
23 * Domain Path: /languages
24 */
25
26// If this file is called directly, abort.
27
28if (!defined('WPINC')) {
29 die;
30}
31
32/**
33 * Currently plugin version.
34 * Start at version 1.0.0 and use SemVer - https://semver.org
35 * Rename this for your plugin and update it as you release new versions.
36 */
37define("WPTOOL_WP_AD_VERSION", "1.0.20");
38
39require_once __DIR__ . '/vendor/autoload.php';
40
41use Wptool\adminDash\core\AdminDashCore;
42
43$core = new AdminDashCore("wptool-admin-dashboard");
44