/**
 * @ignore
 */
function mdp_default_batch_render()
{
    $options = get_option('mdp_settings');
    ?>
  <input type='checkbox' name='mdp_settings[add_bulk_settings]' <?php 
    mpd_checked_lookup($options, 'add_bulk_settings', 'allow-batch');
    ?>
 value='allow-batch'>

  <p class="mpdtip"><?php 
    _e('Having this option checked will allow you to duplicate muliple pages at a time via the batch processing options on the WordPress post list page', MPD_DOMAIN);
    ?>
</p>
  <?php 
}
/**
 * 
 * Create the UI for the Inline Image Copy Selection setting
 * 
 * @since 0.4
 * @return null
 * 
 */
function mdp_copy_content_image_render()
{
    $options = get_option('mdp_settings');
    ?>
	<input type='checkbox' name='mdp_settings[mdp_copy_content_images]' <?php 
    mpd_checked_lookup($options, 'mdp_copy_content_images', 'content-image');
    ?>
 value='content-image'>

	<p class="mpdtip"><?php 
    _e('On duplication this plugin will look at the content within the main post content field and try to identify any images that have been added from your media library. If it finds any it will duplicate the image and all its meta data to your destinations site`s media library for exclusive use there. It will also change the urls in the duplicated post to reference the new media file. You can turn off this activity by unchecking the box', MPD_DOMAIN);
    ?>
</p>
	<?php 
}