Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
pokeloken
/
admin
/
wp-content
/
plugins
/
mailchimp-for-wp
/
includes
/
admin
/
migrations
:
3.0.0-form-2-options.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php defined('ABSPATH') or exit; $global_options = (array) get_option('mc4wp_form', []); // find all form posts $posts = get_posts( [ 'post_type' => 'mc4wp-form', 'post_status' => 'publish', 'numberposts' => -1, ] ); $css_map = [ 'default' => 'basic', 'custom' => 'styles-builder', 'light' => 'theme-light', 'dark' => 'theme-dark', 'red' => 'theme-red', 'green' => 'theme-green', 'blue' => 'theme-blue', 'custom-color' => 'theme-custom-color', ]; $stylesheets = []; foreach ($posts as $post) { // get form options from post meta directly $options = (array) get_post_meta($post->ID, '_mc4wp_settings', true); // store all global options in scoped form settings // do this BEFORE changing css key, so we take that as well. foreach ($global_options as $key => $value) { if (strlen($value) > 0 && ( ! isset($options[ $key ]) || strlen($options[ $key ]) == 0 )) { $options[ $key ] = $value; } } // update "css" option value if (isset($options['css']) && isset($css_map[ $options['css'] ])) { $options['css'] = $css_map[ $options['css'] ]; } // create stylesheets option if (! empty($options['css'])) { $stylesheet = $options['css']; if (strpos($stylesheet, 'theme-') === 0) { $stylesheet = 'themes'; } if (! in_array($stylesheet, $stylesheets)) { $stylesheets[] = $stylesheet; } } update_post_meta($post->ID, '_mc4wp_settings', $options); } // update stylesheets option update_option('mc4wp_form_stylesheets', $stylesheets); // delete old options delete_option('mc4wp_form');