forked from codesnippetspro/code-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code-snippets.php
108 lines (90 loc) · 2.74 KB
/
code-snippets.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/**
* Code Snippets - An easy, clean and simple way to add code snippets to your site.
*
* If you're interested in helping to develop Code Snippets, or perhaps contribute
* to the localization, please see https://github.com/sheabunge/code-snippets
*
* @package Code_Snippets
* @author Shea Bunge <[email protected]>
* @copyright 2012-2016 Shea Bunge
* @license MIT http://opensource.org/licenses/MIT
* @version 2.8.0
* @link https://github.com/sheabunge/code-snippets
*/
/*
Plugin Name: Code Snippets
Plugin URI: https://github.com/sheabunge/code-snippets
Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again!
Author: Shea Bunge
Author URI: https://bungeshea.com
Version: 2.8.0
License: MIT
License URI: license.txt
Text Domain: code-snippets
Domain Path: /languages
*/
/* Exit if accessed directly */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* The version number for this release of the plugin.
* This will later be used for upgrades and enqueuing files
*
* This should be set to the 'Plugin Version' value,
* as defined above in the plugin header
*
* @since 2.0
* @var string A PHP-standardized version number string
*/
define( 'CODE_SNIPPETS_VERSION', '2.8.0' );
/**
* The full path to the main file of this plugin
*
* This can later be passed to functions such as
* plugin_dir_path(), plugins_url() and plugin_basename()
* to retrieve information about plugin paths
*
* @since 2.0
* @var string
*/
define( 'CODE_SNIPPETS_FILE', __FILE__ );
/**
* Enable autoloading of plugin classes
* @param $class_name
*/
function code_snippets_autoload( $class_name ) {
/* Only autoload classes from this plugin */
if ( 'Snippet' !== $class_name && 'Code_Snippets' !== substr( $class_name, 0, 13 ) ) {
return;
}
/* Remove namespace from class name */
$class_file = str_replace( 'Code_Snippets_', '', $class_name );
/* Convert class name format to file name format */
$class_file = strtolower( $class_file );
$class_file = str_replace( '_', '-', $class_file );
$class_path = dirname( __FILE__ ) . '/php/';
if ( 'Menu' === substr( $class_name, -4, 4 ) ) {
$class_path .= 'admin-menus/';
}
/* Load the class */
require_once $class_path . "class-{$class_file}.php";
}
spl_autoload_register( 'code_snippets_autoload' );
/**
* Retrieve the instance of the main plugin class
*
* @since 2.6.0
* @return Code_Snippets
*/
function code_snippets() {
static $plugin;
if ( is_null( $plugin ) ) {
$plugin = new Code_Snippets( CODE_SNIPPETS_VERSION, __FILE__ );
}
return $plugin;
}
code_snippets()->load_plugin();
/* Execute the snippets once the plugins are loaded */
add_action( 'plugins_loaded', 'execute_active_snippets', 1 );