-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-skeleton-d.php
More file actions
73 lines (62 loc) · 1.77 KB
/
plugin-skeleton-d.php
File metadata and controls
73 lines (62 loc) · 1.77 KB
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
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Plugin Skeleton D
*
* @package rtCamp/Plugin_Skeleton_D
* @author rtCamp
* @copyright 2026 rtCamp
* @license GPL-2.0-or-later
*
* Plugin Name: Plugin Skeleton D
* Plugin URI: https://github.com/rtCamp/plugin-skeleton-d
* Description: @todo
* Version: 0.0.1
* Author: rtCamp
* Author URI: https://rtcamp.com
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: plugin-skeleton-d
* Domain Path: /languages
* Requires PHP: 8.2
* Requires at least: 6.9
* Tested up to: 6.9
*/
declare( strict_types = 1 );
namespace rtCamp\Plugin_Skeleton_D;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Define the plugin constants.
*/
function constants(): void {
/**
* File path to the plugin's main file.
*/
define( 'PLUGIN_SKELETON_D_FILE', __FILE__ );
/**
* Version of the plugin.
*/
define( 'PLUGIN_SKELETON_D_VERSION', '0.0.1' );
/**
* Root path to the plugin directory.
*/
define( 'PLUGIN_SKELETON_D_PATH', plugin_dir_path( PLUGIN_SKELETON_D_FILE ) );
/**
* Root URL to the plugin directory.
*/
define( 'PLUGIN_SKELETON_D_URL', plugin_dir_url( PLUGIN_SKELETON_D_FILE ) );
/**
* The plugin basename.
*/
define( 'PLUGIN_SKELETON_D_BASENAME', plugin_basename( PLUGIN_SKELETON_D_FILE ) );
}
constants();
// If autoloader fails, we cannot proceed.
require_once __DIR__ . '/inc/Autoloader.php';
if ( ! class_exists( 'rtCamp\Plugin_Skeleton_D\Autoloader' ) || ! \rtCamp\Plugin_Skeleton_D\Autoloader::autoload() ) {
return;
}
// Load the main plugin class.
if ( class_exists( 'rtCamp\Plugin_Skeleton_D\Main' ) ) {
\rtCamp\Plugin_Skeleton_D\Main::get_instance();
}