| Server IP : 146.190.157.162 / Your IP : 216.73.217.165 Web Server : Apache System : Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01-KIT-DIGITAL 6.5.0-44-generic #44-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:10:09 UTC 2024 x86_64 User : businessweek ( 639) PHP Version : 8.2.10-2ubuntu2.2 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,pcntl_setpriority,dl,putenv,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/drmarcoserena/wp-content/plugins/shortcode-variables/ |
Upload File : |
<?php
defined('ABSPATH') or die("Jog on!");
/**
* Plugin Name: Snippet Shortcodes
* Description: Create a library of custom shortcodes and reusable content, and seamlessly insert them into your posts and pages.
* Version: 5.1.3
* Requires at least: 6.0
* Tested up to: 6.9.4
* Requires PHP: 7.4
* Author: Ali Colville
* Author URI: https://www.YeKen.uk
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: shortcode-variables
*/
/* Copyright 2025 YeKen.uk
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
define( 'SH_CD_ABSPATH', plugin_dir_path( __FILE__ ) );
define( 'SH_CD_PLUGIN_VERSION', '5.1.3' );
define( 'SH_CD_PLUGIN_NAME', 'Snippet Shortcodes' );
define( 'SH_CD_TABLE', 'SH_CD_SHORTCODES' );
define( 'SH_CD_TABLE_MULTISITE', 'SH_CD_SHORTCODES_MULTISITE' );
define( 'SH_CD_SLUG', 'sh-cd-shortcode-variables' );
define( 'SH_CD_PREFIX', 'sh-cd-' );
define( 'SH_CD_SHORTCODE', 'sv' );
define( 'SH_CD_UPGRADE_LINK', 'https://shop.yeken.uk/product/shortcode-variables/' );
// Note: SH_CD_GET_PREMIUM_LINK is detected by the Premium plugin to determine if the main plugin is enabled.
// Do not remove or rename the constant.
define( 'SH_CD_GET_PREMIUM_LINK', 'https://snippetshortcodes.yeken.uk/download/' );
define( 'SH_CD_YEKEN_UPDATES_URL', 'https://yeken.uk/downloads/_updates/shortcode-variables.json' );
define( 'SH_CD_YEKEN_PREMIUM_RELEASE_MANIFEST', 'https://snippetshortcodes.yeken.uk/wp-content/plugins/snippet-shortcodes-premium/release.json' );
add_action( 'plugins_loaded', function() {
include_once SH_CD_ABSPATH . 'includes/functions.php';
include_once SH_CD_ABSPATH . 'includes/class.presets.php';
include_once SH_CD_ABSPATH . 'includes/hooks.php';
include_once SH_CD_ABSPATH . 'includes/db.php';
include_once SH_CD_ABSPATH . 'includes/marketing.php';
include_once SH_CD_ABSPATH . 'includes/shortcode.marketing.php';
include_once SH_CD_ABSPATH . 'includes/shortcode.user.php';
include_once SH_CD_ABSPATH . 'includes/shortcode.presets.core.php';
include_once SH_CD_ABSPATH . 'includes/shortcode.presets.free.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.list.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.premade.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.edit.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.upgrade.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.settings.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.help.php';
include_once SH_CD_ABSPATH . 'includes/pages/page.import.php';
include_once SH_CD_ABSPATH . 'includes/tinymce.php';
});