woocommerce/plugins/woocommerce-admin/woo-dash.php

29 lines
695 B
PHP
Raw Normal View History

2018-04-17 21:03:14 +00:00
<?php
/**
* Plugin Name: Woo Dashboard
* Plugin URI: https://woocommerce.com/
* Description: A feature plugin for a new Dashboard view of WooCommerce
* Author: Automattic
* Author URI: https://woocommerce.com/
* Text Domain: woo-dash
* Domain Path: /languages
* Version: 0.1.0
2018-04-17 21:03:14 +00:00
*
* @package Woo_Dash
*/
if ( ! defined( 'WOO_DASH_APP' ) ) {
define( 'WOO_DASH_APP', 'woo-dash-app' );
}
// @TODO check for Gutenberg + WooCommerce
// Some common utilities
require_once dirname( __FILE__ ) . '/lib/common.php';
// Register script files
require_once dirname( __FILE__ ) . '/lib/client-assets.php';
// Create the Admin pages
require_once dirname( __FILE__ ) . '/lib/admin.php';