function VelvetBluesUU_options_page()
{
    function VB_update_urls($options, $oldurl, $newurl)
    {
        global $wpdb;
        $results = array();
        $queries = array('content' => array("UPDATE {$wpdb->posts} SET post_content = replace(post_content, '" . $oldurl . "','" . $newurl . "')", __('Content Items (Posts, Pages, Custom Post Types, Revisions)', 'velvet-blues-update-urls')), 'excerpts' => array("UPDATE {$wpdb->posts} SET post_excerpt = replace(post_excerpt, '" . $oldurl . "','" . $newurl . "')", __('Excerpts', 'velvet-blues-update-urls')), 'attachments' => array("UPDATE {$wpdb->posts} SET guid = replace(guid, '" . $oldurl . "','" . $newurl . "') WHERE post_type = 'attachment'", __('Attachments', 'velvet-blues-update-urls')), 'custom' => array("UPDATE {$wpdb->postmeta} SET meta_value = replace(meta_value, '" . $oldurl . "','" . $newurl . "')", __('Custom Fields', 'velvet-blues-update-urls')), 'guids' => array("UPDATE {$wpdb->posts} SET guid = replace(guid, '" . $oldurl . "','" . $newurl . "')", __('GUIDs', 'velvet-blues-update-urls')));
        foreach ($options as $option) {
            $result = $wpdb->query($wpdb->prepare($queries[$option][0]));
            $results[$option] = array($result, $queries[$option][1]);
        }
        return $results;
    }
    if (isset($_POST['VBUU_settings_submit']) && !check_admin_referer('VBUU_submit', 'VBUU_nonce')) {
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Please try again.', 'velvet-blues-update-urls') . '</strong></p></div>';
    } elseif (isset($_POST['VBUU_settings_submit']) && !isset($_POST['VBUU_update_links'])) {
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Your URLs have not been updated.', 'velvet-blues-update-urls') . '</p></strong><p>' . __('Please select at least one checkbox.', 'velvet-blues-update-urls') . '</p></div>';
    } elseif (isset($_POST['VBUU_settings_submit'])) {
        $vbuu_update_links = $_POST['VBUU_update_links'];
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        if ($vbuu_oldurl && $vbuu_oldurl != 'http://www.oldurl.com' && trim($vbuu_oldurl) != '' && ($vbuu_newurl && $vbuu_newurl != 'http://www.newurl.com' && trim($vbuu_newurl) != '')) {
            $results = VB_update_urls($vbuu_update_links, $vbuu_oldurl, $vbuu_newurl);
            $empty = false;
            $emptystring = '<strong>' . __('Why do the results show 0 URLs updated?', 'velvet-blues-update-urls') . '</strong><br/>' . __('This happens if a URL is incorrect or if it is not found in the content.', 'velvet-blues-update-urls');
            $resultstring = '';
            foreach ($results as $result) {
                $empty = $result[0] == 0 || $empty == true ? true : false;
                $resultstring .= '<br/><strong>' . $result[0] . '</strong> ' . $result[1];
            }
            ?>
			<div id="message" class="updated fade"><table><tr><td><p><strong><?php 
            _e('Success! Your URLs have been updated.', 'velvet-blues-update-urls');
            ?>
</strong></p>
			<p><u><?php 
            _e('Results', 'velvet-blues-update-urls');
            ?>
</u><?php 
            echo $resultstring;
            ?>
</p>
			<?php 
            echo $empty ? '<p>' . $emptystring . '</p>' : '';
            ?>
			</td><td width="60"></td>
			<td align="center"><p><?php 
            //You can now uninstall this plugin.<br/>
            printf(__('If you found our plugin useful, %s please consider donating', 'velvet-blues-update-urls'), '<br/>');
            ?>
.</p><p><a style="outline:none;" href="http://www.velvetblues.com/go/updateurlsdonate/" target="_blank"><img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" alt="PayPal -<?php 
            _e('The safer, easier way to pay online!', 'velvet-blues-update-urls');
            ?>
"></a></p></td></tr></table></div>
		<?php 
        } else {
            echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Your URLs have not been updated.', 'velvet-blues-update-urls') . '</p></strong><p>' . __('Please enter values for both the old url and the new url.', 'velvet-blues-update-urls') . '</p></div>';
        }
    }
    ?>
<div class="wrap">
<h2>Velvet Blues Update URLs</h2>
<form method="post" action="options-general.php?page=<?php 
    echo basename(__FILE__);
    ?>
">
<?php 
    wp_nonce_field('VBUU_submit', 'VBUU_nonce');
    ?>
<p><?php 
    printf(__("After moving a website, %s lets you fix old URLs in content, excerpts, and custom fields.", 'velvet-blues-update-urls'), '<strong>Update URLs</strong>');
    ?>
</p>
<h3 style="margin-bottom:5px;"><?php 
    _e('Step');
    ?>
 1: <?php 
    _e('Enter your URLs in the fields below', 'velvet-blues-update-urls');
    ?>
</h3>
<table class="form-table"><tr valign="middle">
<th scope="row" width="140" style="width:140px"><strong><?php 
    _e('Old URL', 'velvet-blues-update-urls');
    ?>
</strong><br/><span class="description"><?php 
    _e('Old Site Address', 'velvet-blues-update-urls');
    ?>
</span></th>
<td><input name="VBUU_oldurl" type="text" id="VBUU_oldurl" value="<?php 
    echo isset($vbuu_oldurl) && trim($vbuu_oldurl) != '' ? $vbuu_oldurl : 'http://www.oldurl.com';
    ?>
" style="width:300px;font-size:20px;" onfocus="if(this.value=='http://www.oldurl.com') this.value='';" onblur="if(this.value=='') this.value='http://www.oldurl.com';" /></td>
</tr>
<tr valign="middle">
<th scope="row" width="140" style="width:140px"><strong><?php 
    _e('New URL', 'velvet-blues-update-urls');
    ?>
</strong><br/><span class="description"><?php 
    _e('New Site Address', 'velvet-blues-update-urls');
    ?>
</span></th>
<td><input name="VBUU_newurl" type="text" id="VBUU_newurl" value="<?php 
    echo isset($vbuu_newurl) && trim($vbuu_newurl) != '' ? $vbuu_newurl : 'http://www.newurl.com';
    ?>
" style="width:300px;font-size:20px;" onfocus="if(this.value=='http://www.newurl.com') this.value='';" onblur="if(this.value=='') this.value='http://www.newurl.com';" /></td>
</tr></table>
<br/>
<h3 style="margin-bottom:5px;"><?php 
    _e('Step');
    ?>
 2: <?php 
    _e('Choose which URLs should be updated', 'velvet-blues-update-urls');
    ?>
</h3>
<table class="form-table"><tr><td><p style="line-height:20px;">
<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="content" checked="checked" /> <label for="VBUU_update_true"><strong><?php 
    _e('URLs in page content', 'velvet-blues-update-urls');
    ?>
</strong> (<?php 
    _e('posts, pages, custom post types, revisions', 'velvet-blues-update-urls');
    ?>
)</label><br/>
<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="excerpts" /> <label for="VBUU_update_true"><strong><?php 
    _e('URLs in excerpts', 'velvet-blues-update-urls');
    ?>
</strong></label><br/>
<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="attachments" /> <label for="VBUU_update_true"><strong><?php 
    _e('URLs for attachments', 'velvet-blues-update-urls');
    ?>
</strong> (<?php 
    _e('images, documents, general media', 'velvet-blues-update-urls');
    ?>
)</label><br/>
<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="custom" /> <label for="VBUU_update_true"><strong><?php 
    _e('URLs in custom fields and meta boxes', 'velvet-blues-update-urls');
    ?>
</strong></label><br/>
<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="guids" /> <label for="VBUU_update_true"><strong><?php 
    _e('Update ALL GUIDs', 'velvet-blues-update-urls');
    ?>
</strong> <span class="description" style="color:#f00;"><?php 
    _e('GUIDs for posts should only be changed on development sites.', 'velvet-blues-update-urls');
    ?>
</span> <a href="http://www.velvetblues.com/go/guids/" target="_blank"><?php 
    _e('Learn More.', 'velvet-blues-update-urls');
    ?>
</a></label>
</p></td></tr></table>
<p><input class="button-primary" name="VBUU_settings_submit" value="<?php 
    _e('Update URLs NOW', 'velvet-blues-update-urls');
    ?>
" type="submit" /></p>
</form>
<p>&nbsp;<br/><?php 
    printf(__("Need help? Get support at the %s plugin page%s.", 'velvet-blues-update-urls'), '<a href="http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/" target="_blank">Velvet Blues Update URLs', '</a>');
    ?>
<br/><?php 
    _e('Want to donate?', 'velvet-blues-update-urls');
    ?>
 <a href="http://www.velvetblues.com/go/updateurlsdonate/" target="_blank"><?php 
    _e('Click here.', 'velvet-blues-update-urls');
    ?>
</a></p>
<?php 
}
function pp_import_demo_content()
{
    if (is_admin() && isset($_POST['demo']) && !empty($_POST['demo'])) {
        if (!defined('WP_LOAD_IMPORTERS')) {
            define('WP_LOAD_IMPORTERS', true);
        }
        // Load Importer API
        require_once ABSPATH . 'wp-admin/includes/import.php';
        if (!class_exists('WP_Importer')) {
            $class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
            if (file_exists($class_wp_importer)) {
                require $class_wp_importer;
            }
        }
        if (!class_exists('WP_Import')) {
            $class_wp_importer = get_template_directory() . "/modules/import/wordpress-importer.php";
            if (file_exists($class_wp_importer)) {
                require $class_wp_importer;
            }
        }
        $import_files = array();
        //Check import selected demo
        if (class_exists('WP_Import')) {
            switch ($_POST['demo']) {
                case 1:
                default:
                    //Check if install Woocommerce
                    if (!class_exists('Woocommerce')) {
                        $import_filepath = get_template_directory() . "/cache/demos/1.xml";
                    } else {
                        $import_filepath = get_template_directory() . "/cache/demos/1_woo.xml";
                    }
                    $page_on_front = 3602;
                    //Demo 1 Homepage ID
                    $oldurl = 'http://themes.themegoods2.com/photome/demo';
                    break;
            }
            //Run and download demo contents
            $wp_import = new WP_Import();
            $wp_import->fetch_attachments = true;
            $wp_import->import($import_filepath);
        }
        //Setup default front page settings.
        update_option('show_on_front', 'page');
        update_option('page_on_front', $page_on_front);
        //Set default custom menu settings
        $locations = get_theme_mod('nav_menu_locations');
        $locations['primary-menu'] = 21;
        $locations['top-menu'] = 24;
        $locations['side-menu'] = 23;
        set_theme_mod('nav_menu_locations', $locations);
        //Change all URLs from demo URL to localhost
        $update_options = array(0 => 'content', 1 => 'excerpts', 2 => 'links', 3 => 'attachments', 4 => 'custom', 5 => 'guids');
        $newurl = esc_url(site_url());
        VB_update_urls($update_options, $oldurl, $newurl);
        exit;
    }
}
function VelvetBluesUU_management_page()
{
    if (!function_exists('VB_update_urls')) {
        function VB_update_urls($options, $oldurl, $newurl)
        {
            global $wpdb;
            $results = array();
            $queries = array('content' => array("UPDATE {$wpdb->posts} SET post_content = replace(post_content, %s, %s)", __('Content Items (Posts, Pages, Custom Post Types, Revisions)', 'velvet-blues-update-urls')), 'excerpts' => array("UPDATE {$wpdb->posts} SET post_excerpt = replace(post_excerpt, %s, %s)", __('Excerpts', 'velvet-blues-update-urls')), 'attachments' => array("UPDATE {$wpdb->posts} SET guid = replace(guid, %s, %s) WHERE post_type = 'attachment'", __('Attachments', 'velvet-blues-update-urls')), 'links' => array("UPDATE {$wpdb->links} SET link_url = replace(link_url, %s, %s)", __('Links', 'velvet-blues-update-urls')), 'custom' => array("UPDATE {$wpdb->postmeta} SET meta_value = replace(meta_value, %s, %s)", __('Custom Fields', 'velvet-blues-update-urls')), 'guids' => array("UPDATE {$wpdb->posts} SET guid = replace(guid, %s, %s)", __('GUIDs', 'velvet-blues-update-urls')));
            foreach ($options as $option) {
                if ($option == 'custom') {
                    $n = 0;
                    $row_count = $wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->postmeta}");
                    $page_size = 10000;
                    $pages = ceil($row_count / $page_size);
                    for ($page = 0; $page < $pages; $page++) {
                        $current_row = 0;
                        $start = $page * $page_size;
                        $end = $start + $page_size;
                        $pmquery = "SELECT * FROM {$wpdb->postmeta} WHERE meta_value <> ''";
                        $items = $wpdb->get_results($pmquery);
                        foreach ($items as $item) {
                            $value = $item->meta_value;
                            if (trim($value) == '') {
                                continue;
                            }
                            $edited = VB_unserialize_replace($oldurl, $newurl, $value);
                            if ($edited != $value) {
                                $fix = $wpdb->query("UPDATE {$wpdb->postmeta} SET meta_value = '" . $edited . "' WHERE meta_id = " . $item->meta_id);
                                if ($fix) {
                                    $n++;
                                }
                            }
                        }
                    }
                    $results[$option] = array($n, $queries[$option][1]);
                } else {
                    $result = $wpdb->query($wpdb->prepare($queries[$option][0], $oldurl, $newurl));
                    $results[$option] = array($result, $queries[$option][1]);
                }
            }
            return $results;
        }
    }
    if (!function_exists('VB_unserialize_replace')) {
        function VB_unserialize_replace($from = '', $to = '', $data = '', $serialised = false)
        {
            try {
                if (is_string($data) && ($unserialized = @unserialize($data)) !== false) {
                    $data = VB_unserialize_replace($from, $to, $unserialized, true);
                } elseif (is_array($data)) {
                    $_tmp = array();
                    foreach ($data as $key => $value) {
                        $_tmp[$key] = VB_unserialize_replace($from, $to, $value, false);
                    }
                    $data = $_tmp;
                    unset($_tmp);
                } else {
                    if (is_string($data)) {
                        $data = str_replace($from, $to, $data);
                    }
                }
                if ($serialised) {
                    return serialize($data);
                }
            } catch (Exception $error) {
            }
            return $data;
        }
    }
    if (isset($_POST['VBUU_settings_submit']) && !check_admin_referer('VBUU_submit', 'VBUU_nonce')) {
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Please try again.', 'velvet-blues-update-urls') . '</strong></p></div>';
    } elseif (isset($_POST['VBUU_settings_submit']) && !isset($_POST['VBUU_update_links'])) {
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Your URLs have not been updated.', 'velvet-blues-update-urls') . '</p></strong><p>' . __('Please select at least one checkbox.', 'velvet-blues-update-urls') . '</p></div>';
    } elseif (isset($_POST['VBUU_settings_submit'])) {
        $vbuu_update_links = $_POST['VBUU_update_links'];
        if (isset($_POST['VBUU_oldurl']) && isset($_POST['VBUU_newurl'])) {
            if (function_exists('esc_attr')) {
                $vbuu_oldurl = esc_attr(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = esc_attr(trim($_POST['VBUU_newurl']));
            } else {
                $vbuu_oldurl = attribute_escape(trim($_POST['VBUU_oldurl']));
                $vbuu_newurl = attribute_escape(trim($_POST['VBUU_newurl']));
            }
        }
        if ($vbuu_oldurl && $vbuu_oldurl != 'http://www.oldurl.com' && trim($vbuu_oldurl) != '' && ($vbuu_newurl && $vbuu_newurl != 'http://www.newurl.com' && trim($vbuu_newurl) != '')) {
            $results = VB_update_urls($vbuu_update_links, $vbuu_oldurl, $vbuu_newurl);
            $empty = true;
            $emptystring = '<strong>' . __('Why do the results show 0 URLs updated?', 'velvet-blues-update-urls') . '</strong><br/>' . __('This happens if a URL is incorrect OR if it is not found in the content. Check your URLs and try again.', 'velvet-blues-update-urls') . '<br/><br/><strong>' . __('Want us to do it for you?', 'velvet-blues-update-urls') . '</strong><br/>' . __('Contact us at', 'velvet-blues-update-urls') . ' <a href="mailto:info@velvetblues.com?subject=Move%20My%20WP%20Site">info@velvetblues.com</a>. ' . __('We will backup your website and move it for $65 OR simply update your URLs for only $29.', 'velvet-blues-update-urls');
            $resultstring = '';
            foreach ($results as $result) {
                $empty = $result[0] != 0 || $empty == false ? false : true;
                $resultstring .= '<br/><strong>' . $result[0] . '</strong> ' . $result[1];
            }
            if ($empty) {
                ?>
<div id="message" class="error fade">
<table>
<tr>
	<td><p><strong>
			<?php 
                _e('ERROR: Something may have gone wrong.', 'velvet-blues-update-urls');
                ?>
			</strong><br/>
			<?php 
                _e('Your URLs have not been updated.', 'velvet-blues-update-urls');
                ?>
		</p>
		<?php 
            } else {
                ?>
		<div id="message" class="updated fade">
			<table>
				<tr>
					<td><p><strong>
							<?php 
                _e('Success! Your URLs have been updated.', 'velvet-blues-update-urls');
                ?>
							</strong></p>
						<?php 
            }
            ?>
						<p><u>
							<?php 
            _e('Results', 'velvet-blues-update-urls');
            ?>
							</u><?php 
            echo $resultstring;
            ?>
</p>
						<?php 
            echo $empty ? '<p>' . $emptystring . '</p>' : '';
            ?>
</td>
					<td width="60"></td>
					<td align="center"><?php 
            if (!$empty) {
                ?>
						<p>
							<?php 
                //You can now uninstall this plugin.<br/>
                ?>
							<?php 
                printf(__('If you found our plugin useful, %s please consider donating', 'velvet-blues-update-urls'), '<br/>');
                ?>
.</p>
						<p><a style="outline:none;" href="http://www.velvetblues.com/go/updateurlsdonate/" target="_blank"><img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" alt="PayPal -<?php 
                _e('The safer, easier way to pay online!', 'velvet-blues-update-urls');
                ?>
"></a></p>
						<?php 
            }
            ?>
</td>
				</tr>
			</table>
		</div>
		<?php 
        } else {
            echo '<div id="message" class="error fade"><p><strong>' . __('ERROR', 'velvet-blues-update-urls') . ' - ' . __('Your URLs have not been updated.', 'velvet-blues-update-urls') . '</p></strong><p>' . __('Please enter values for both the old url and the new url.', 'velvet-blues-update-urls') . '</p></div>';
        }
    }
    ?>
		<div class="wrap">
		<h2>Velvet Blues Update URLs</h2>
		<form method="post" action="tools.php?page=<?php 
    echo basename(__FILE__);
    ?>
">
			<?php 
    wp_nonce_field('VBUU_submit', 'VBUU_nonce');
    ?>
			<p><?php 
    printf(__("After moving a website, %s lets you fix old URLs in content, excerpts, links, and custom fields.", 'velvet-blues-update-urls'), '<strong>Update URLs</strong>');
    ?>
</p>
			<p><strong>
				<?php 
    _e('WE RECOMMEND THAT YOU BACKUP YOUR WEBSITE.', 'velvet-blues-update-urls');
    ?>
				</strong><br/>
				<?php 
    _e('You may need to restore it if incorrect URLs are entered in the fields below.', 'velvet-blues-update-urls');
    ?>
			</p>
			<h3 style="margin-bottom:5px;">
				<?php 
    _e('Step');
    ?>
				1:
				<?php 
    _e('Enter your URLs in the fields below', 'velvet-blues-update-urls');
    ?>
			</h3>
			<table class="form-table">
				<tr valign="middle">
					<th scope="row" width="140" style="width:140px"><strong>
						<?php 
    _e('Old URL', 'velvet-blues-update-urls');
    ?>
						</strong><br/>
						<span class="description">
						<?php 
    _e('Old Site Address', 'velvet-blues-update-urls');
    ?>
						</span></th>
					<td><input name="VBUU_oldurl" type="text" id="VBUU_oldurl" value="<?php 
    echo isset($vbuu_oldurl) && trim($vbuu_oldurl) != '' ? $vbuu_oldurl : 'http://www.oldurl.com';
    ?>
" style="width:300px;font-size:20px;" onfocus="if(this.value=='http://www.oldurl.com') this.value='';" onblur="if(this.value=='') this.value='http://www.oldurl.com';" /></td>
				</tr>
				<tr valign="middle">
					<th scope="row" width="140" style="width:140px"><strong>
						<?php 
    _e('New URL', 'velvet-blues-update-urls');
    ?>
						</strong><br/>
						<span class="description">
						<?php 
    _e('New Site Address', 'velvet-blues-update-urls');
    ?>
						</span></th>
					<td><input name="VBUU_newurl" type="text" id="VBUU_newurl" value="<?php 
    echo isset($vbuu_newurl) && trim($vbuu_newurl) != '' ? $vbuu_newurl : 'http://www.newurl.com';
    ?>
" style="width:300px;font-size:20px;" onfocus="if(this.value=='http://www.newurl.com') this.value='';" onblur="if(this.value=='') this.value='http://www.newurl.com';" /></td>
				</tr>
			</table>
			<br/>
			<h3 style="margin-bottom:5px;">
				<?php 
    _e('Step');
    ?>
				2:
				<?php 
    _e('Choose which URLs should be updated', 'velvet-blues-update-urls');
    ?>
			</h3>
			<table class="form-table">
				<tr>
					<td><p style="line-height:20px;">
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="content" checked="checked" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('URLs in page content', 'velvet-blues-update-urls');
    ?>
								</strong> (
								<?php 
    _e('posts, pages, custom post types, revisions', 'velvet-blues-update-urls');
    ?>
								)</label>
							<br/>
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="excerpts" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('URLs in excerpts', 'velvet-blues-update-urls');
    ?>
								</strong></label>
							<br/>
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="links" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('URLs in links', 'velvet-blues-update-urls');
    ?>
								</strong></label>
							<br/>
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="attachments" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('URLs for attachments', 'velvet-blues-update-urls');
    ?>
								</strong> (
								<?php 
    _e('images, documents, general media', 'velvet-blues-update-urls');
    ?>
								)</label>
							<br/>
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="custom" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('URLs in custom fields and meta boxes', 'velvet-blues-update-urls');
    ?>
								</strong></label>
							<br/>
							<input name="VBUU_update_links[]" type="checkbox" id="VBUU_update_true" value="guids" />
							<label for="VBUU_update_true"><strong>
								<?php 
    _e('Update ALL GUIDs', 'velvet-blues-update-urls');
    ?>
								</strong> <span class="description" style="color:#f00;">
								<?php 
    _e('GUIDs for posts should only be changed on development sites.', 'velvet-blues-update-urls');
    ?>
								</span> <a href="http://www.velvetblues.com/go/guids/" target="_blank">
								<?php 
    _e('Learn More.', 'velvet-blues-update-urls');
    ?>
								</a></label>
						</p></td>
				</tr>
			</table>
			<p>
				<input class="button-primary" name="VBUU_settings_submit" value="<?php 
    _e('Update URLs NOW', 'velvet-blues-update-urls');
    ?>
" type="submit" />
			</p>
		</form>
		<p>&nbsp;<br/>
			<strong>
			<?php 
    _e('Need help?', 'velvet-blues-update-urls');
    ?>
			</strong> <?php 
    printf(__("Get support at the %s plugin page%s.", 'velvet-blues-update-urls'), '<a href="http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/" target="_blank">Velvet Blues Update URLs', '</a>');
    ?>
			<?php 
    if (!isset($empty)) {
        ?>
			<br/>
			<strong>
			<?php 
        _e('Want us to do it for you?', 'velvet-blues-update-urls');
        ?>
			</strong>
			<?php 
        _e('Contact us at', 'velvet-blues-update-urls');
        ?>
			<a href="mailto:info@velvetblues.com?subject=Move%20My%20WP%20Site">info@velvetblues.com</a>.
			<?php 
        _e('We will backup your website and move it for $65 OR update your URLs for only $29.', 'velvet-blues-update-urls');
        ?>
			<?php 
    }
    ?>
		</p>
		<?php 
}