Initial commit, dashboard settings page seems to work fine.

This commit is contained in:
2021-05-31 15:03:52 -06:00
commit 5ce0217861
30 changed files with 825 additions and 0 deletions

24
bootstrap.php Normal file
View File

@ -0,0 +1,24 @@
<?php
use PluginNamespace\App;
/**
| ----------------------------------------------------------------
| Bootstrap
| ----------------------------------------------------------------
|
| Place anything that needs to be configured/defined in this
| file that needs to be set up before the plugin is
| utilized by WordPress.
|
*/
require_once 'constants/http-codes.php';
require_once 'constants/base.php';
require_once 'constants/rewrites.php';
if ( ! function_exists( 'nmsp_plugin_app' ) ) {
function nmsp_plugin_app(): App {
return App::get_instance();
}
}