XYZ File Manager
Current Path:
/var/www/wordpress/wp-content/plugins/code-snippets/php
var
/
www
/
wordpress
/
wp-content
/
plugins
/
code-snippets
/
php
/
📁
..
📁
admin-menus
📄
class-admin.php
(12 KB)
📄
class-contextual-help.php
(6.46 KB)
📄
class-data-item.php
(6.56 KB)
📄
class-db.php
(10.12 KB)
📄
class-licensing.php
(314 B)
📄
class-list-table.php
(43.83 KB)
📄
class-plugin.php
(11.08 KB)
📄
class-snippet.php
(13.88 KB)
📄
class-upgrade.php
(6.55 KB)
📄
class-validator.php
(7.02 KB)
📄
class-welcome-api.php
(9.53 KB)
📁
cloud
📄
deactivation-notice.php
(1.94 KB)
📄
editor.php
(3.48 KB)
📁
evaluation
📁
export
📁
flat-files
📁
front-end
📄
load.php
(2.16 KB)
📁
migration
📁
rest-api
📁
settings
📄
snippet-ops.php
(20.99 KB)
📄
strings.php
(1.8 KB)
📄
uninstall.php
(2.54 KB)
📁
views
Editing: load.php
<?php /** * Initialise and load the plugin under the proper namespace. * * @package Code_Snippets */ namespace Code_Snippets; /** * 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 defined * in the plugin header. * * @var string A PHP-standardized version number string. */ const PLUGIN_VERSION = CODE_SNIPPETS_VERSION; /** * The full path to the main file of this plugin. * * This can later be used with functions such as * plugin_dir_path(), plugins_url() and plugin_basename() * to retrieve information about plugin paths. * * @var string */ const PLUGIN_FILE = CODE_SNIPPETS_FILE; /** * Name of the group used for caching data. * * @var string */ const CACHE_GROUP = 'code_snippets'; /** * Namespace used for REST API endpoints. * * @var string */ const REST_API_NAMESPACE = 'code-snippets/v'; // Load dependencies with Composer. $code_snippets_autoloader = require dirname( __DIR__ ) . '/vendor/autoload.php'; // Remove all original (non-prefixed) vendor namespace mappings to prevent collisions with other plugins. // Since Imposter rewrites namespaces to Code_Snippets\Vendor\*, we need to remove the original PSR-4 // mappings that Composer generates so other plugins can load their own copies of these libraries. if ( $code_snippets_autoloader instanceof \Composer\Autoload\ClassLoader ) { $prefixes = $code_snippets_autoloader->getPrefixesPsr4(); $our_prefix = 'Code_Snippets\\Vendor\\'; foreach ( $prefixes as $namespace => $paths ) { // Remove any non-Code_Snippets namespace that has a corresponding prefixed version if ( strpos( $namespace, $our_prefix ) === false ) { $prefixed_namespace = $our_prefix . $namespace; if ( isset( $prefixes[ $prefixed_namespace ] ) ) { $code_snippets_autoloader->setPsr4( $namespace, [] ); } } } } /** * Retrieve the instance of the main plugin class. * * @return Plugin * @since 2.6.0 */ function code_snippets(): Plugin { static $plugin; if ( is_null( $plugin ) ) { $plugin = new Plugin( PLUGIN_VERSION, PLUGIN_FILE ); } return $plugin; } code_snippets()->load_plugin();
Upload File
Create Folder