PluginProbe
Code Snippets / 2.13.0
Code Snippets v2.13.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / code-snippets.php

code-snippets.php in Code Snippets 2.13.0, at code-snippets.php

113 lines 2.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Code Snippets - An easy, clean and simple way to add code snippets to your site.
5 *
6 * If you're interested in helping to develop Code Snippets, or perhaps contribute
7 * to the localization, please see https://github.com/sheabunge/code-snippets
8 *
9 * @package Code_Snippets
10 * @author Shea Bunge <shea@sheabunge.com>
11 * @copyright 2012-2018 Shea Bunge
12 * @license MIT http://opensource.org/licenses/MIT
13 * @version 2.13.0
14 * @link https://github.com/sheabunge/code-snippets
15 */
16
17 /*
18 Plugin Name: Code Snippets
19 Plugin URI: https://github.com/sheabunge/code-snippets
20 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!
21 Author: Shea Bunge
22 Author URI: https://sheabunge.com
23 Version: 2.13.0
24 License: MIT
25 License URI: license.txt
26 Text Domain: code-snippets
27 Domain Path: /languages
28 */
29
30 /* Exit if accessed directly */
31 if ( ! defined( 'ABSPATH' ) ) {
32 exit;
33 }
34
35 /**
36 * The version number for this release of the plugin.
37 * This will later be used for upgrades and enqueuing files
38 *
39 * This should be set to the 'Plugin Version' value,
40 * as defined above in the plugin header
41 *
42 * @since 2.0
43 * @var string A PHP-standardized version number string
44 */
45 define( 'CODE_SNIPPETS_VERSION', '2.13.0' );
46
47 /**
48 * The full path to the main file of this plugin
49 *
50 * This can later be passed to functions such as
51 * plugin_dir_path(), plugins_url() and plugin_basename()
52 * to retrieve information about plugin paths
53 *
54 * @since 2.0
55 * @var string
56 */
57 define( 'CODE_SNIPPETS_FILE', __FILE__ );
58
59 /**
60 * Enable autoloading of plugin classes
61 * @param $class_name
62 */
63 function code_snippets_autoload( $class_name ) {
64
65 /* Only autoload classes from this plugin */
66 if ( 'Code_Snippet' !== $class_name && 'Code_Snippets' !== substr( $class_name, 0, 13 ) ) {
67 return;
68 }
69
70 /* Remove namespace from class name */
71 $class_file = str_replace( 'Code_Snippets_', '', $class_name );
72
73 if ( 'Code_Snippet' === $class_name ) {
74 $class_file = 'Snippet';
75 }
76
77 /* Convert class name format to file name format */
78 $class_file = strtolower( $class_file );
79 $class_file = str_replace( '_', '-', $class_file );
80
81 $class_path = dirname( __FILE__ ) . '/php/';
82
83 if ( 'Menu' === substr( $class_name, -4, 4 ) ) {
84 $class_path .= 'admin-menus/';
85 }
86
87 /* Load the class */
88 require_once $class_path . "class-{$class_file}.php";
89 }
90
91 spl_autoload_register( 'code_snippets_autoload' );
92
93 /**
94 * Retrieve the instance of the main plugin class
95 *
96 * @since 2.6.0
97 * @return Code_Snippets
98 */
99 function code_snippets() {
100 static $plugin;
101
102 if ( is_null( $plugin ) ) {
103 $plugin = new Code_Snippets( CODE_SNIPPETS_VERSION, __FILE__ );
104 }
105
106 return $plugin;
107 }
108
109 code_snippets()->load_plugin();
110
111 /* Execute the snippets once the plugins are loaded */
112 add_action( 'plugins_loaded', 'execute_active_snippets', 1 );
113