/home/vianto5/ceibaresidencial.mx/wp-content/plugins/code-snippets
NameSizeModeActions
assets/-0755rm
css/-0755rm
dist/-0755rm
js/-0755rm
php/-0755rm
vendor/-0755rm
CHANGELOG.md648490644editdlrm
code-snippets.php18470644editdlrm
license.txt188550644editdlrm
readme.txt164450644editdlrm
uninstall.php4550644editdlrm
Edit: /home/vianto5/ceibaresidencial.mx/wp-content/plugins/code-snippets/code-snippets.php (1847B)
* @copyright 2012-2026 Code Snippets Pro * @license GPL-2.0-or-later https://spdx.org/licenses/GPL-2.0-or-later.html * @link https://github.com/codesnippetspro/code-snippets * * phpcs:disable Modernize.FunctionCalls.Dirname.FileConstant */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { return; } // Halt loading here if the plugin is already loaded, or we're running an incompatible version of PHP. if ( ! defined( 'CODE_SNIPPETS_FILE' ) && version_compare( phpversion(), '7.4', '>=' ) ) { /** * The current plugin version. * * Should be set to the same value as set above. * * @const string */ define( 'CODE_SNIPPETS_VERSION', '3.10.2' ); /** * 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.0 * @const string */ define( 'CODE_SNIPPETS_FILE', __FILE__ ); /** * Used to determine which version of Code Snippets is running. * * @since 3.0.0 * @const bool */ define( 'CODE_SNIPPETS_PRO', false ); require_once dirname( __FILE__ ) . '/php/Core/load.php'; } else { require_once dirname( __FILE__ ) . '/php/Core/deactivation-notice.php'; }