-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities-for-second-life.php
63 lines (54 loc) · 1.74 KB
/
utilities-for-second-life.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* utilities for Second Life
*
* @package UTILITIESF
* @author Nolan Perry, LLC
* @license gplv2
* @version 1.0.0
*
* @wordpress-plugin
* Plugin Name: utilities for Second Life
* Plugin URI: https://darknebula.world/software-plugins/
* Description: Various Utilities for Second Life, a amazing Metaverse and Virtual World.
* Version: 1.0.0
* Author: Nolan Perry, LLC
* Author URI: https://darknebula.world
* Text Domain: utilities-for-second-life
* Domain Path: /languages
* License: GPLv2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*
* You should have received a copy of the GNU General Public License
* along with utilities for Second Life. If not, see <https://www.gnu.org/licenses/gpl-2.0.html/>.
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;
// Plugin name
define( 'UTILITIESF_NAME', 'utilities for Second Life' );
// Plugin version
define( 'UTILITIESF_VERSION', '1.0.0' );
// Plugin Root File
define( 'UTILITIESF_PLUGIN_FILE', __FILE__ );
// Plugin base
define( 'UTILITIESF_PLUGIN_BASE', plugin_basename( UTILITIESF_PLUGIN_FILE ) );
// Plugin Folder Path
define( 'UTILITIESF_PLUGIN_DIR', plugin_dir_path( UTILITIESF_PLUGIN_FILE ) );
// Plugin Folder URL
define( 'UTILITIESF_PLUGIN_URL', plugin_dir_url( UTILITIESF_PLUGIN_FILE ) );
/**
* Load the main class for the core functionality
*/
require_once UTILITIESF_PLUGIN_DIR . 'core/class-utilities-for-second-life.php';
/**
* The main function to load the only instance
* of our master class.
*
* @author Nolan Perry, LLC
* @since 1.0.0
* @return object|Utilities_For_Second_Life
*/
function UTILITIESF() {
return Utilities_For_Second_Life::instance();
}
UTILITIESF();