| @@ -4,9 +4,9 @@ | ||
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * Plugin Name: Shortcode Variables |
| 7 | 7 | * Description: Create your own shortcodes and assign text / variables to it or use our premade ones. You can then embed these shortcodes throughout your entire site and only have to change the value in one place. |
| 8 | - * Version: 2.0 | |
| 8 | + * Version: 3.0.2 | |
| 9 | 9 | * Author: YeKen |
| 10 | 10 | * Author URI: http://www.YeKen.uk |
| 11 | 11 | * License: GPL2 |
| 12 | 12 | * Text Domain: shortcode-variables |
| @@ -28,12 +28,14 @@ | ||
| 28 | 28 | */ |
| 29 | 29 | |
| 30 | 30 | define( 'SH_CD_ABSPATH', plugin_dir_path( __FILE__ ) ); |
| 31 | 31 | |
| 32 | -define( 'SH_CD_PLUGIN_VERSION', '2.0' ); | |
| 32 | +define( 'SH_CD_PLUGIN_VERSION', '3.0.2' ); | |
| 33 | 33 | define( 'SH_CD_PLUGIN_NAME', 'Shortcode Variables' ); |
| 34 | 34 | define( 'SH_CD_TABLE', 'SH_CD_SHORTCODES' ); |
| 35 | +define( 'SH_CD_TABLE_MULTISITE', 'SH_CD_SHORTCODES_MULTISITE' ); | |
| 35 | 36 | define( 'SH_CD_SLUG', 'sh-cd-shortcode-variables' ); |
| 37 | +define( 'SH_CD_PREFIX', 'sh-cd-' ); | |
| 36 | 38 | define( 'SH_CD_SHORTCODE', 'sv' ); |
| 37 | 39 | define( 'SH_CD_PREMIUM_PRICE', 5.00 ); |
| 38 | 40 | define( 'SH_CD_UPGRADE_LINK', 'https://sv.yeken.uk/upgrade' ); |
| 39 | 41 | |
| @@ -53,8 +55,9 @@ | ||
| 53 | 55 | include_once SH_CD_ABSPATH . 'includes/pages/pages.list.php'; |
| 54 | 56 | include_once SH_CD_ABSPATH . 'includes/pages/pages.premade.php'; |
| 55 | 57 | include_once SH_CD_ABSPATH . 'includes/pages/pages.edit.php'; |
| 56 | 58 | include_once SH_CD_ABSPATH . 'includes/pages/pages.license.php'; |
| 59 | +include_once SH_CD_ABSPATH . 'includes/tinymce.php'; | |
| 57 | 60 | |
| 58 | 61 | // ----------------------------------------------------------------------------------------- |
| 59 | 62 | // AC: Load relevant language files |
| 60 | 63 | // ----------------------------------------------------------------------------------------- |