| @@ -1,235 +1,228 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * Plugin Name: Woody code snippets (PHP snippets | Insert PHP) | |
| 4 | - * Plugin URI: https://woodysnippet.com/ | |
| 5 | - * Description: Executes PHP code, uses conditional logic to insert ads, text, media content and external service’s code. Ensures no content duplication. | |
| 6 | - * Author: Themeisle | |
| 7 | - * Version: 2.6.1 | |
| 8 | - * WordPress Available: yes | |
| 9 | - * Requires License: no | |
| 10 | - * Text Domain: insert-php | |
| 11 | - * Domain Path: /languages/ | |
| 12 | - * Author URI: https://themeisle.com | |
| 13 | - */ | |
| 14 | - | |
| 15 | -/** | |
| 16 | - * Developers who contributions in the development plugin: | |
| 17 | - * | |
| 18 | - * Will Bontrager | |
| 19 | - * --------------------------------------------------------------------------------- | |
| 20 | - * 1.0.0v - 1.3.0v Developed the first plugin version, which was named Insert php. | |
| 21 | - * This was the founder of this plugin. | |
| 22 | - * | |
| 23 | - * If you are a long-term user, you may be confused about the new plugin update. | |
| 24 | - * You’ve been using an old plugin – Insert php 1.3.0, and now got an extended | |
| 25 | - * product – Woody Code Snippets. Insert php was the first plugin version to work | |
| 26 | - * with PHP code. It was created by Will Bontrager Software, LLC. In 2018, the | |
| 27 | - * Webcraftic studio started to actively develop the plugin. We’ve created a | |
| 28 | - * roadmap and released several powerful updates that help you to use PHP code | |
| 29 | - * more comfortable and secure. Now plugin supports not only PHP but other | |
| 30 | - * snippet types as well. We’ve decided to rename the plugin as Woody ad | |
| 31 | - * snippets. This name is more suitable for new and powerful plugin features. | |
| 32 | - * | |
| 33 | - * More information about the Insert PHP plugin can be found here: | |
| 34 | - * http://www.willmaster.com/software/WPplugins/go/iphphome_iphplugin | |
| 35 | - * --------------------------------------------------------------------------------- | |
| 36 | - * | |
| 37 | - * Alexander Kovalev | |
| 38 | - * --------------------------------------------------------------------------------- | |
| 39 | - * 1.3.0v - 2.0.6v. - Developed framework, plugin interface and plugin development. | |
| 40 | - * 2.0.6v. - 2.2.5v - Fix bugs, improvement some code parts for the plugin. | |
| 41 | - * | |
| 42 | - * Email: alex.kovalevv@gmail.com | |
| 43 | - * Personal card: https://alexkovalevv.github.io | |
| 44 | - * Personal repo: https://github.com/alexkovalevv | |
| 45 | - * --------------------------------------------------------------------------------- | |
| 46 | - * | |
| 47 | - * Alexander Vitkalov | |
| 48 | - * --------------------------------------------------------------------------------- | |
| 49 | - * 2.0.6v. - 2.2.5v - Development conditional logic for some snippets, added new snippets types, | |
| 50 | - * development snippets library, development import/export. | |
| 51 | - * | |
| 52 | - * Personal repo: https://github.com/nechin | |
| 53 | - * --------------------------------------------------------------------------------- | |
| 54 | - * | |
| 55 | - * Artem Prihodko | |
| 56 | - * --------------------------------------------------------------------------------- | |
| 57 | - * 2.3.2v - current | |
| 58 | - * | |
| 59 | - * Email: webtemyk@yandex.ru | |
| 60 | - * Personal repo: https://github.com/temyk | |
| 61 | - * --------------------------------------------------------------------------------- | |
| 62 | - */ | |
| 63 | - | |
| 64 | -// Exit if accessed directly | |
| 65 | -if ( ! defined( 'ABSPATH' ) ) { | |
| 66 | - exit; | |
| 67 | -} | |
| 68 | -// @formatter:off | |
| 69 | - | |
| 70 | - | |
| 71 | - | |
| 72 | -/** | |
| 73 | - * ----------------------------------------------------------------------------- | |
| 74 | - * CHECK REQUIREMENTS | |
| 75 | - * Check compatibility with php and wp version of the user's site. As well as checking | |
| 76 | - * compatibility with other plugins from Webcraftic. | |
| 77 | - * ----------------------------------------------------------------------------- | |
| 78 | - */ | |
| 79 | - | |
| 80 | -require_once dirname( __FILE__ ) . '/libs/factory/core/includes/class-factory-requirements.php'; | |
| 81 | - | |
| 82 | -$plugin_info = [ | |
| 83 | - 'prefix' => 'wbcr_inp_', | |
| 84 | - 'plugin_name' => 'wbcr_insert_php', | |
| 85 | - 'plugin_title' => __( 'Woody Code Snippets', 'insert-php' ), | |
| 86 | - 'plugin_text_domain' => 'insert-php', | |
| 87 | - | |
| 88 | - // PLUGIN SUPPORT | |
| 89 | - 'support_details' => [ | |
| 90 | - 'url' => 'https://r.freemius.com/3465/1916966/https://woodysnippet.com', | |
| 91 | - 'affiliate_url' => 'https://r.freemius.com/3465/1916966/', | |
| 92 | - 'pages_map' => [ | |
| 93 | - 'features' => 'premium-features', // {site}/premium-features | |
| 94 | - 'pricing' => 'pricing', // {site}/prices | |
| 95 | - 'support' => 'support', // {site}/support | |
| 96 | - 'docs' => 'getting-started-with-woody-ad-snippets', // {site}/docs | |
| 97 | - ], | |
| 98 | - ], | |
| 99 | - | |
| 100 | - // PLUGIN ADVERTS | |
| 101 | - 'render_adverts' => true, | |
| 102 | - 'adverts_settings' => [ | |
| 103 | - 'dashboard_widget' => true, // show dashboard widget (default: false) | |
| 104 | - 'right_sidebar' => true, // show adverts sidebar (default: false) | |
| 105 | - 'notice' => true, // show notice message (default: false) | |
| 106 | - ], | |
| 107 | - | |
| 108 | - // PLUGIN UPDATED SETTINGS | |
| 109 | - /* | |
| 110 | - 'has_updates' => false, | |
| 111 | - 'updates_settings' => array( | |
| 112 | - 'repository' => 'wordpress', | |
| 113 | - 'slug' => 'woody-ad-snippets', | |
| 114 | - 'maybe_rollback' => true, | |
| 115 | - 'rollback_settings' => array( | |
| 116 | - 'prev_stable_version' => '0.0.0', | |
| 117 | - ), | |
| 118 | - ),*/ | |
| 119 | - | |
| 120 | - // PLUGIN PREMIUM SETTINGS | |
| 121 | - 'has_premium' => true, | |
| 122 | - 'license_settings' => [ | |
| 123 | - 'provider' => 'freemius', | |
| 124 | - 'slug' => 'woody-ad-snippets-premium', | |
| 125 | - 'plugin_id' => '3465', | |
| 126 | - 'public_key' => 'pk_fc5703fe4f4fbc3e87f17fce5e0b8', | |
| 127 | - 'price' => 19, | |
| 128 | - 'has_updates' => true, | |
| 129 | - 'updates_settings' => [ | |
| 130 | - 'maybe_rollback' => true, | |
| 131 | - 'rollback_settings' => [ | |
| 132 | - 'prev_stable_version' => '0.0.0', | |
| 133 | - ], | |
| 134 | - ], | |
| 135 | - ], | |
| 136 | - | |
| 137 | - // FRAMEWORK MODULES | |
| 138 | - 'load_factory_modules' => [ | |
| 139 | - [ 'libs/factory/bootstrap', 'factory_bootstrap_477', 'admin' ], | |
| 140 | - [ 'libs/factory/forms', 'factory_forms_475', 'admin' ], | |
| 141 | - [ 'libs/factory/pages', 'factory_pages_475', 'admin' ], | |
| 142 | - [ 'libs/factory/types', 'factory_types_415' ], | |
| 143 | - [ 'libs/factory/taxonomies', 'factory_taxonomies_335' ], | |
| 144 | - [ 'libs/factory/metaboxes', 'factory_metaboxes_415', 'admin' ], | |
| 145 | - [ 'libs/factory/viewtables', 'factory_viewtables_415', 'admin' ], | |
| 146 | - [ 'libs/factory/shortcodes', 'factory_shortcodes_335', 'all' ], | |
| 147 | - [ 'libs/factory/freemius', 'factory_freemius_165', 'all' ], | |
| 148 | - [ 'libs/factory/adverts', 'factory_adverts_153', 'admin' ], | |
| 149 | - ], | |
| 150 | -]; | |
| 151 | - | |
| 152 | -/** | |
| 153 | - * Checks compatibility with WordPress, php and other plugins. | |
| 154 | - */ | |
| 155 | -$wbcr_compatibility = new Wbcr_Factory475_Requirements( __FILE__, array_merge( $plugin_info, [ | |
| 156 | - 'plugin_already_activate' => defined( 'WINP_PLUGIN_ACTIVE' ), | |
| 157 | - 'required_php_version' => '7.4', | |
| 158 | - 'required_wp_version' => '5.6.0', | |
| 159 | -] ) ); | |
| 160 | - | |
| 161 | -/** | |
| 162 | - * If the plugin is compatible, it will continue its work, otherwise it will be stopped and the user will receive a warning. | |
| 163 | - */ | |
| 164 | -if ( ! $wbcr_compatibility->check() ) { | |
| 165 | - return; | |
| 166 | -} | |
| 167 | - | |
| 168 | -global $wbcr_inp_safe_mode; | |
| 169 | - | |
| 170 | -$wbcr_inp_safe_mode = false; | |
| 171 | - | |
| 172 | -// Set the constant that the plugin is activated | |
| 173 | -define( 'WINP_PLUGIN_ACTIVE', true ); | |
| 174 | - | |
| 175 | -define( 'WINP_PLUGIN_VERSION', $wbcr_compatibility->get_plugin_version() ); | |
| 176 | - | |
| 177 | -// Root directory of the plugin | |
| 178 | -define( 'WINP_PLUGIN_DIR', dirname( __FILE__ ) ); | |
| 179 | - | |
| 180 | -define( 'WINP_PLUGIN_FILE', __FILE__ ); | |
| 181 | - | |
| 182 | -// Absolute url of the root directory of the plugin | |
| 183 | -define( 'WINP_PLUGIN_URL', plugins_url( '', __FILE__ ) ); | |
| 184 | - | |
| 185 | -// Relative url of the plugin | |
| 186 | -define( 'WINP_PLUGIN_BASE', plugin_basename( __FILE__ ) ); | |
| 187 | - | |
| 188 | -// The type of posts used for snippets types | |
| 189 | -define( 'WINP_SNIPPETS_POST_TYPE', 'wbcr-snippets' ); | |
| 190 | - | |
| 191 | -// The taxonomy used for snippets types | |
| 192 | -define( 'WINP_SNIPPETS_TAXONOMY', 'wbcr-snippet-tags' ); | |
| 193 | - | |
| 194 | -// The snippets types | |
| 195 | -define( 'WINP_SNIPPET_TYPE_PHP', 'php' ); | |
| 196 | -define( 'WINP_SNIPPET_TYPE_TEXT', 'text' ); | |
| 197 | -define( 'WINP_SNIPPET_TYPE_UNIVERSAL', 'universal' ); | |
| 198 | -define( 'WINP_SNIPPET_TYPE_CSS', 'css' ); | |
| 199 | -define( 'WINP_SNIPPET_TYPE_JS', 'js' ); | |
| 200 | -define( 'WINP_SNIPPET_TYPE_HTML', 'html' ); | |
| 201 | -define( 'WINP_SNIPPET_TYPE_AD', 'advert' ); | |
| 202 | - | |
| 203 | -require_once WINP_PLUGIN_DIR . '/libs/factory/core/boot.php'; | |
| 204 | -require_once WINP_PLUGIN_DIR . '/includes/compat.php'; | |
| 205 | -require_once WINP_PLUGIN_DIR . '/includes/class.insertion.locations.php'; | |
| 206 | -require_once WINP_PLUGIN_DIR . '/includes/class.helpers.php'; | |
| 207 | -require_once WINP_PLUGIN_DIR . '/includes/class.plugin.php'; | |
| 208 | - | |
| 209 | -/* | |
| 210 | - * Woocommerce Insertion location | |
| 211 | - * @since 2.4 | |
| 212 | - * */ | |
| 213 | - | |
| 214 | -global $winp_snippets_locations; | |
| 215 | -$winp_snippets_locations = new WINP_Insertion_Locations(); | |
| 216 | - | |
| 217 | -try { | |
| 218 | - require_once WINP_PLUGIN_DIR . '/vendor/autoload.php'; | |
| 219 | - new WINP_Plugin( __FILE__, array_merge( $plugin_info, [ | |
| 220 | - 'plugin_version' => WINP_PLUGIN_VERSION, | |
| 221 | - 'plugin_text_domain' => $wbcr_compatibility->get_text_domain(), | |
| 222 | - ] ) ); | |
| 223 | -} catch ( Exception $exception ) { | |
| 224 | - // Plugin wasn't initialized due to an error | |
| 225 | - define( 'WINP_PLUGIN_THROW_ERROR', true ); | |
| 226 | - | |
| 227 | - $wbcr_plugin_error_func = function () use ( $exception ) { | |
| 228 | - $error = sprintf( 'The %s plugin has stopped. <b>Error:</b> %s Code: %s', 'Woody Ad Snippets', $exception->getMessage(), $exception->getCode() ); | |
| 229 | - echo '<div class="notice notice-error"><p>' . $error . '</p></div>'; | |
| 230 | - }; | |
| 231 | - | |
| 232 | - add_action( 'admin_notices', $wbcr_plugin_error_func ); | |
| 233 | - add_action( 'network_admin_notices', $wbcr_plugin_error_func ); | |
| 234 | -} | |
| 235 | -// @formatter:on | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * Plugin Name: Woody ad snippets (PHP snippets | Insert PHP) | |
| 4 | + * Plugin URI: http://woody-ad-snippets.webcraftic.com/ | |
| 5 | + * Description: Executes PHP code, uses conditional logic to insert ads, text, media content and external service’s code. Ensures no content duplication. | |
| 6 | + * Author: Will Bontrager Software, LLC <will@willmaster.com>, Webcraftic <wordpress.webraftic@gmail.com> | |
| 7 | + * Version: 2.2.7 | |
| 8 | + * Text Domain: insert-php | |
| 9 | + * Domain Path: /languages/ | |
| 10 | + * Author URI: http://webcraftic.com | |
| 11 | + */ | |
| 12 | + | |
| 13 | +/** | |
| 14 | + * Developers who contributions in the development plugin: | |
| 15 | + * | |
| 16 | + * Will Bontrager | |
| 17 | + * --------------------------------------------------------------------------------- | |
| 18 | + * 1.0.0v - 1.3.0v Developed the first plugin version, which was named Insert php. | |
| 19 | + * This was the founder of this plugin. | |
| 20 | + * | |
| 21 | + * If you are a long-term user, you may be confused about the new plugin update. | |
| 22 | + * You’ve been using an old plugin – Insert php 1.3.0, and now got an extended | |
| 23 | + * product – Woody ad snippets. Insert php was the first plugin version to work | |
| 24 | + * with PHP code. It was created by Will Bontrager Software, LLC. In 2018, the | |
| 25 | + * Webcraftic studio started to actively develop the plugin. We’ve created a | |
| 26 | + * roadmap and released several powerful updates that help you to use PHP code | |
| 27 | + * more comfortable and secure. Now plugin supports not only PHP but other | |
| 28 | + * snippet types as well. We’ve decided to rename the plugin as Woody ad | |
| 29 | + * snippets. This name is more suitable for new and powerful plugin features. | |
| 30 | + * | |
| 31 | + * More information about the Insert PHP plugin can be found here: | |
| 32 | + * http://www.willmaster.com/software/WPplugins/go/iphphome_iphplugin | |
| 33 | + * --------------------------------------------------------------------------------- | |
| 34 | + * | |
| 35 | + * Alexander Kovalev | |
| 36 | + * --------------------------------------------------------------------------------- | |
| 37 | + * 1.3.0v - 2.0.6v. - Developed framework, plugin interface and plugin development. | |
| 38 | + * 2.0.6v. - 2.2.5v - Fix bugs, improvement some code parts for the plugin. | |
| 39 | + * | |
| 40 | + * Email: alex.kovalevv@gmail.com | |
| 41 | + * Personal card: https://alexkovalevv.github.io | |
| 42 | + * Personal repo: https://github.com/alexkovalevv | |
| 43 | + * --------------------------------------------------------------------------------- | |
| 44 | + * | |
| 45 | + * Alexander Vitkalov | |
| 46 | + * --------------------------------------------------------------------------------- | |
| 47 | + * 2.0.6v. - 2.2.5v - Development conditional logic for some snippets, added new snippets types, | |
| 48 | + * development snippets library, development import/export. | |
| 49 | + * | |
| 50 | + * Personal repo: https://github.com/nechin | |
| 51 | + * --------------------------------------------------------------------------------- | |
| 52 | + * | |
| 53 | + * Alexander Teshabaev | |
| 54 | + * --------------------------------------------------------------------------------- | |
| 55 | + * 2.0.6v. - 2.2.1v - Development snippets library and block for the Guttenberg editor. | |
| 56 | + * | |
| 57 | + * Personal repo: https://github.com/bologer | |
| 58 | + * --------------------------------------------------------------------------------- | |
| 59 | + * | |
| 60 | + * All development rights belong to @webcraftic studio. | |
| 61 | + * http://webcraftic.com | |
| 62 | + */ | |
| 63 | + | |
| 64 | +// Exit if accessed directly | |
| 65 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 66 | + exit; | |
| 67 | +} | |
| 68 | + | |
| 69 | +// @formatter:off | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | +/** | |
| 74 | + * ----------------------------------------------------------------------------- | |
| 75 | + * CHECK REQUIREMENTS | |
| 76 | + * Check compatibility with php and wp version of the user's site. As well as checking | |
| 77 | + * compatibility with other plugins from Webcraftic. | |
| 78 | + * ----------------------------------------------------------------------------- | |
| 79 | + */ | |
| 80 | + | |
| 81 | +require_once( dirname( __FILE__ ) . '/libs/factory/core/includes/class-factory-requirements.php' ); | |
| 82 | + | |
| 83 | +$plugin_info = array( | |
| 84 | + 'prefix' => 'wbcr_inp_', | |
| 85 | + 'plugin_name' => 'wbcr_insert_php', | |
| 86 | + 'plugin_title' => __( 'Woody ad snippets', 'insert-php' ), | |
| 87 | + 'plugin_text_domain' => 'insert-php', | |
| 88 | + | |
| 89 | + // PLUGIN SUPPORT | |
| 90 | + 'support_details' => array( | |
| 91 | + 'url' => 'https://r.freemius.com/3465/1916966/http://woody-ad-snippets.webcraftic.com', | |
| 92 | + 'affiliate_url' => 'https://r.freemius.com/3465/1916966/', | |
| 93 | + 'pages_map' => array( | |
| 94 | + 'features' => 'premium-features', // {site}/premium-features | |
| 95 | + 'pricing' => 'pricing', // {site}/prices | |
| 96 | + 'support' => 'support', // {site}/support | |
| 97 | + 'docs' => 'getting-started-with-woody-ad-snippets', // {site}/docs | |
| 98 | + ), | |
| 99 | + ), | |
| 100 | + | |
| 101 | + // PLUGIN UPDATED SETTINGS | |
| 102 | + /*'has_updates' => false, | |
| 103 | + 'updates_settings' => array( | |
| 104 | + 'repository' => 'wordpress', | |
| 105 | + 'slug' => 'woody-ad-snippets', | |
| 106 | + 'maybe_rollback' => true, | |
| 107 | + 'rollback_settings' => array( | |
| 108 | + 'prev_stable_version' => '0.0.0', | |
| 109 | + ), | |
| 110 | + ),*/ | |
| 111 | + | |
| 112 | + // PLUGIN PREMIUM SETTINGS | |
| 113 | + 'has_premium' => true, | |
| 114 | + 'license_settings' => array( | |
| 115 | + 'provider' => 'freemius', | |
| 116 | + 'slug' => 'woody-ad-snippets-premium', | |
| 117 | + 'plugin_id' => '3465', | |
| 118 | + 'public_key' => 'pk_fc5703fe4f4fbc3e87f17fce5e0b8', | |
| 119 | + 'price' => 19, | |
| 120 | + 'has_updates' => true, | |
| 121 | + 'updates_settings' => array( | |
| 122 | + 'maybe_rollback' => true, | |
| 123 | + 'rollback_settings' => array( | |
| 124 | + 'prev_stable_version' => '0.0.0', | |
| 125 | + ), | |
| 126 | + ), | |
| 127 | + ), | |
| 128 | + | |
| 129 | + // FRAMEWORK MODULES | |
| 130 | + 'load_factory_modules' => array( | |
| 131 | + array( 'libs/factory/bootstrap', 'factory_bootstrap_420', 'admin' ), | |
| 132 | + array( 'libs/factory/forms', 'factory_forms_417', 'admin' ), | |
| 133 | + array( 'libs/factory/pages', 'factory_pages_419', 'admin' ), | |
| 134 | + array( 'libs/factory/types', 'factory_types_410' ), | |
| 135 | + array( 'libs/factory/taxonomies', 'factory_taxonomies_330' ), | |
| 136 | + array( 'libs/factory/metaboxes', 'factory_metaboxes_409', 'admin' ), | |
| 137 | + array( 'libs/factory/viewtables', 'factory_viewtables_410', 'admin' ), | |
| 138 | + array( 'libs/factory/shortcodes', 'factory_shortcodes_329', 'all' ), | |
| 139 | + array( 'libs/factory/freemius', 'factory_freemius_108', 'all' ), | |
| 140 | + ), | |
| 141 | +); | |
| 142 | + | |
| 143 | +/** | |
| 144 | + * Checks compatibility with WordPress, php and other plugins. | |
| 145 | + */ | |
| 146 | +$wbcr_compatibility = new Wbcr_Factory419_Requirements( __FILE__, array_merge( $plugin_info, array( | |
| 147 | + 'plugin_already_activate' => defined( 'WINP_PLUGIN_ACTIVE' ), | |
| 148 | + 'required_php_version' => '5.4', | |
| 149 | + 'required_wp_version' => '4.2.0', | |
| 150 | +) ) ); | |
| 151 | + | |
| 152 | +/** | |
| 153 | + * If the plugin is compatible, it will continue its work, otherwise it will be stopped and the user will receive a warning. | |
| 154 | + */ | |
| 155 | +if ( ! $wbcr_compatibility->check() ) { | |
| 156 | + return; | |
| 157 | +} | |
| 158 | + | |
| 159 | +global $wbcr_inp_safe_mode; | |
| 160 | + | |
| 161 | +$wbcr_inp_safe_mode = false; | |
| 162 | + | |
| 163 | +// Set the constant that the plugin is activated | |
| 164 | +define( 'WINP_PLUGIN_ACTIVE', true ); | |
| 165 | + | |
| 166 | +define( 'WINP_PLUGIN_VERSION', $wbcr_compatibility->get_plugin_version() ); | |
| 167 | + | |
| 168 | +// Root directory of the plugin | |
| 169 | +define( 'WINP_PLUGIN_DIR', dirname( __FILE__ ) ); | |
| 170 | + | |
| 171 | +// Absolute url of the root directory of the plugin | |
| 172 | +define( 'WINP_PLUGIN_URL', plugins_url( null, __FILE__ ) ); | |
| 173 | + | |
| 174 | +// Relative url of the plugin | |
| 175 | +define( 'WINP_PLUGIN_BASE', plugin_basename( __FILE__ ) ); | |
| 176 | + | |
| 177 | +// The type of posts used for snippets types | |
| 178 | +define( 'WINP_SNIPPETS_POST_TYPE', 'wbcr-snippets' ); | |
| 179 | + | |
| 180 | +// The taxonomy used for snippets types | |
| 181 | +define( 'WINP_SNIPPETS_TAXONOMY', 'wbcr-snippet-tags' ); | |
| 182 | + | |
| 183 | +// The snippets types | |
| 184 | +define( 'WINP_SNIPPET_TYPE_PHP', 'php' ); | |
| 185 | +define( 'WINP_SNIPPET_TYPE_TEXT', 'text' ); | |
| 186 | +define( 'WINP_SNIPPET_TYPE_UNIVERSAL', 'universal' ); | |
| 187 | +define( 'WINP_SNIPPET_TYPE_CSS', 'css' ); | |
| 188 | +define( 'WINP_SNIPPET_TYPE_JS', 'js' ); | |
| 189 | +define( 'WINP_SNIPPET_TYPE_HTML', 'html' ); | |
| 190 | + | |
| 191 | +// The snippet automatic insertion locations | |
| 192 | +define( 'WINP_SNIPPET_AUTO_HEADER', 'header' ); | |
| 193 | +define( 'WINP_SNIPPET_AUTO_FOOTER', 'footer' ); | |
| 194 | +define( 'WINP_SNIPPET_AUTO_BEFORE_POST', 'before_post' ); | |
| 195 | +define( 'WINP_SNIPPET_AUTO_BEFORE_CONTENT', 'before_content' ); | |
| 196 | +define( 'WINP_SNIPPET_AUTO_BEFORE_PARAGRAPH', 'before_paragraph' ); | |
| 197 | +define( 'WINP_SNIPPET_AUTO_AFTER_PARAGRAPH', 'after_paragraph' ); | |
| 198 | +define( 'WINP_SNIPPET_AUTO_AFTER_CONTENT', 'after_content' ); | |
| 199 | +define( 'WINP_SNIPPET_AUTO_AFTER_POST', 'after_post' ); | |
| 200 | +define( 'WINP_SNIPPET_AUTO_BEFORE_EXCERPT', 'before_excerpt' ); | |
| 201 | +define( 'WINP_SNIPPET_AUTO_AFTER_EXCERPT', 'after_excerpt' ); | |
| 202 | +define( 'WINP_SNIPPET_AUTO_BETWEEN_POSTS', 'between_posts' ); | |
| 203 | +define( 'WINP_SNIPPET_AUTO_BEFORE_POSTS', 'before_posts' ); | |
| 204 | +define( 'WINP_SNIPPET_AUTO_AFTER_POSTS', 'after_posts' ); | |
| 205 | + | |
| 206 | +require_once( WINP_PLUGIN_DIR . '/libs/factory/core/boot.php' ); | |
| 207 | +require_once( WINP_PLUGIN_DIR . '/includes/compat.php' ); | |
| 208 | +require_once( WINP_PLUGIN_DIR . '/includes/class.helpers.php' ); | |
| 209 | +require_once( WINP_PLUGIN_DIR . '/includes/class.plugin.php' ); | |
| 210 | + | |
| 211 | +try { | |
| 212 | + new WINP_Plugin( __FILE__, array_merge( $plugin_info, array( | |
| 213 | + 'plugin_version' => WINP_PLUGIN_VERSION, | |
| 214 | + 'plugin_text_domain' => $wbcr_compatibility->get_text_domain(), | |
| 215 | + ) ) ); | |
| 216 | +} catch ( Exception $exception ) { | |
| 217 | + // Plugin wasn't initialized due to an error | |
| 218 | + define( 'WINP_PLUGIN_THROW_ERROR', true ); | |
| 219 | + | |
| 220 | + $wbcr_plugin_error_func = function () use ( $exception ) { | |
| 221 | + $error = sprintf( "The %s plugin has stopped. <b>Error:</b> %s Code: %s", 'Woody Ad Snippets', $exception->getMessage(), $exception->getCode() ); | |
| 222 | + echo '<div class="notice notice-error"><p>' . $error . '</p></div>'; | |
| 223 | + }; | |
| 224 | + | |
| 225 | + add_action( 'admin_notices', $wbcr_plugin_error_func ); | |
| 226 | + add_action( 'network_admin_notices', $wbcr_plugin_error_func ); | |
| 227 | +} | |
| 228 | +// @formatter:on | |