PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.2.7
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.2.7
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
← All changes | insert_php.php +6 -15 2.3.12.2.7 View file →
@@ -3,9 +3,9 @@
3 3 * Plugin Name: Woody ad snippets (PHP snippets | Insert PHP)
4 4 * Plugin URI: http://woody-ad-snippets.webcraftic.com/
5 5 * Description: Executes PHP code, uses conditional logic to insert ads, text, media content and external service’s code. Ensures no content duplication.
6 6 * Author: Will Bontrager Software, LLC <will@willmaster.com>, Webcraftic <wordpress.webraftic@gmail.com>
7 - * Version: 2.3.1
7 + * Version: 2.2.7
8 8 * Text Domain: insert-php
9 9 * Domain Path: /languages/
10 10 * Author URI: http://webcraftic.com
11 11 */
@@ -97,16 +97,8 @@
97 97 'docs' => 'getting-started-with-woody-ad-snippets', // {site}/docs
98 98 ),
99 99 ),
100 100
101 - // PLUGIN ADVERTS
102 - 'render_adverts' => true,
103 - 'adverts_settings' => array(
104 - 'dashboard_widget' => true, // show dashboard widget (default: false)
105 - 'right_sidebar' => true, // show adverts sidebar (default: false)
106 - 'notice' => true, // show notice message (default: false)
107 - ),
108 -
109 101 // PLUGIN UPDATED SETTINGS
110 102 /*'has_updates' => false,
111 103 'updates_settings' => array(
112 104 'repository' => 'wordpress',
@@ -135,18 +127,17 @@
135 127 ),
136 128
137 129 // FRAMEWORK MODULES
138 130 'load_factory_modules' => array(
139 - array( 'libs/factory/bootstrap', 'factory_bootstrap_423', 'admin' ),
140 - array( 'libs/factory/forms', 'factory_forms_420', 'admin' ),
141 - array( 'libs/factory/pages', 'factory_pages_422', 'admin' ),
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' ),
142 134 array( 'libs/factory/types', 'factory_types_410' ),
143 135 array( 'libs/factory/taxonomies', 'factory_taxonomies_330' ),
144 136 array( 'libs/factory/metaboxes', 'factory_metaboxes_409', 'admin' ),
145 137 array( 'libs/factory/viewtables', 'factory_viewtables_410', 'admin' ),
146 138 array( 'libs/factory/shortcodes', 'factory_shortcodes_329', 'all' ),
147 - array( 'libs/factory/freemius', 'factory_freemius_110', 'all' ),
148 - array( 'libs/factory/adverts', 'factory_adverts_104', 'admin')
139 + array( 'libs/factory/freemius', 'factory_freemius_108', 'all' ),
149 140 ),
150 141 );
151 142
152 143 /**
@@ -151,9 +142,9 @@
151 142
152 143 /**
153 144 * Checks compatibility with WordPress, php and other plugins.
154 145 */
155 -$wbcr_compatibility = new Wbcr_Factory422_Requirements( __FILE__, array_merge( $plugin_info, array(
146 +$wbcr_compatibility = new Wbcr_Factory419_Requirements( __FILE__, array_merge( $plugin_info, array(
156 147 'plugin_already_activate' => defined( 'WINP_PLUGIN_ACTIVE' ),
157 148 'required_php_version' => '5.4',
158 149 'required_wp_version' => '4.2.0',
159 150 ) ) );