Example #1
0
    function form($instance)
    {
        global $smooth_slider;
        if ($smooth_slider['multiple_sliders'] == '1') {
            $instance = wp_parse_args((array) $instance, array('slider_id' => ''));
            $slider_id = strip_tags($instance['slider_id']);
            $sliders = ss_get_sliders();
            $sname_html = '<option value="0" selected >Select the Slider</option>';
            foreach ($sliders as $slider) {
                if ($slider['slider_id'] == $slider_id) {
                    $selected = 'selected';
                } else {
                    $selected = '';
                }
                $sname_html = $sname_html . '<option value="' . $slider['slider_id'] . '" ' . $selected . '>' . $slider['slider_name'] . '</option>';
            }
            ?>
				<p><label for="<?php 
            echo $this->get_field_id('slider_id');
            ?>
">Select Slider Name: <select class="widefat" id="<?php 
            echo $this->get_field_id('slider_id');
            ?>
" name="<?php 
            echo $this->get_field_name('slider_id');
            ?>
"><?php 
            echo $sname_html;
            ?>
</select></label></p>
<?php 
        }
    }
Example #2
0
function smooth_slider_media_lib_edit($form_fields, $post)
{
    global $wp_version;
    if (version_compare($wp_version, '3.5', '<')) {
        // Using WordPress less than 3.5
        global $smooth_slider;
        if (current_user_can($smooth_slider['user_level'])) {
            if (substr($post->post_mime_type, 0, 5) == 'image') {
                $post_id = $post->ID;
                $extra = "";
                if (isset($post->ID)) {
                    $post_id = $post->ID;
                    if (is_post_on_any_slider($post_id)) {
                        $extra = 'checked="checked"';
                    }
                }
                $post_slider_arr = array();
                $post_sliders = ss_get_post_sliders($post_id);
                if ($post_sliders) {
                    foreach ($post_sliders as $post_slider) {
                        $post_slider_arr[] = $post_slider['slider_id'];
                    }
                }
                $sliders = ss_get_sliders();
                $form_fields['slider'] = array('label' => __('Check the box and select the slider', 'smooth-slider'), 'input' => 'html', 'html' => "<input type='checkbox' style='margin-top:6px;' name='attachments[" . $post->ID . "][slider]' value='slider' " . $extra . " /> &nbsp; <strong>" . __('Add this Image to ', 'smooth-slider') . "</strong>", 'value' => 'slider');
                $sname_html = '';
                foreach ($sliders as $slider) {
                    if (in_array($slider['slider_id'], $post_slider_arr)) {
                        $selected = 'selected';
                    } else {
                        $selected = '';
                    }
                    $sname_html = $sname_html . '<option value="' . $slider['slider_id'] . '" ' . $selected . '>' . $slider['slider_name'] . '</option>';
                }
                $form_fields['slider_name[]'] = array('label' => __(''), 'input' => 'html', 'html' => '<select name="attachments[' . $post->ID . '][slider_name][]" multiple="multiple" size="2" style="height:4em;">' . $sname_html . '</select>', 'value' => '');
                $sslider_link = get_post_meta($post_id, 'slide_redirect_url', true);
                $sslider_nolink = get_post_meta($post_id, 'sslider_nolink', true);
                if ($sslider_nolink == '1') {
                    $checked = "checked";
                } else {
                    $checked = "";
                }
                $form_fields['sslider_link'] = array('label' => __('Slide Link URL', 'smooth-slider'), 'input' => 'html', 'html' => "<input type='text' style='clear:left;' class='text urlfield' name='attachments[" . $post->ID . "][sslider_link]' value='" . esc_attr($sslider_link) . "' /><br /><small>" . __('(If left empty, it will be by default linked to attachment permalink.)', 'smooth-slider') . "</small>", 'value' => $sslider_link);
                $form_fields['sslider_nolink'] = array('label' => __('Do not link this slide to any page(url)', 'smooth-slider'), 'input' => 'html', 'html' => "<input type='checkbox' name='attachments[" . $post->ID . "][sslider_nolink]' value='1' " . $checked . " />", 'value' => 'slider');
            } else {
                unset($form_fields['slider']);
                unset($form_fields['slider_name[]']);
                unset($form_fields['sslider_link']);
                unset($form_fields['sslider_nolink']);
            }
        }
    }
    //less than WP 3.5
    return $form_fields;
}
Example #3
0
function add_to_slider_checkbox()
{
    global $post, $smooth_slider;
    if (current_user_can($smooth_slider['user_level'])) {
        $extra = "";
        $post_id = $post->ID;
        if (isset($post->ID)) {
            $post_id = $post->ID;
            if (is_post_on_any_slider($post_id)) {
                $extra = 'checked="checked"';
            }
        }
        $post_slider_arr = array();
        $post_sliders = ss_get_post_sliders($post_id);
        if ($post_sliders) {
            foreach ($post_sliders as $post_slider) {
                $post_slider_arr[] = $post_slider['slider_id'];
            }
        }
        $sliders = ss_get_sliders();
        $sslider_link = get_post_meta($post_id, 'slide_redirect_url', true);
        $sslider_nolink = get_post_meta($post_id, 'sslider_nolink', true);
        $thumbnail_key = $smooth_slider['img_pick'][1];
        $sslider_thumbnail = get_post_meta($post_id, $thumbnail_key, true);
        $sslider_disable_image = get_post_meta($post_id, '_disable_image', true);
        $smooth_embed_shortcode = get_post_meta($post_id, '_smooth_embed_shortcode', true);
        ?>
	
	  <?php 
        /* start tab 2.6 */
        ?>
	
             <script type="text/javascript">
		jQuery(document).ready(function($) {
			jQuery("#smooth_basic").css({"background":"#222222","color":"#ffffff"});
			jQuery("#smooth_basic").on("click", function(){ 
				jQuery("#smooth_basic_tab").fadeIn("fast");
				jQuery("#smooth_advaced_tab").fadeOut("fast");
				jQuery(this).css({"background":"#222222","color":"#ffffff"});
				jQuery("#smooth_advanced").css({"background":"buttonface","color":"#222222"});
			});
			jQuery("#smooth_advanced").on("click", function(){
				jQuery("#smooth_basic_tab").fadeOut("fast");
				jQuery("#smooth_advaced_tab").fadeIn("fast");
				jQuery(this).css({"background":"#222222","color":"#ffffff"});
				jQuery("#smooth_basic").css({"background":"buttonface","color":"#222222"});
				
			});
		}); 
		</script>
	    <?php 
        /* End tab 2.6 */
        ?>
	<div style="border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;">
		<button type="button" id="smooth_basic" style="padding:5px 30px 5px 30px;margin: 0;cursor:pointer;border:0;outline:none;">Basic</button>
		<button type="button" id="smooth_advanced" style="padding:5px 30px 5px 30px;margin:0 0 0 10px;cursor:pointer;border:0;outline:none">Advanced</button>
		</div>
	<div id="smooth_basic_tab">
		<div id="slider_checkbox">
		<table class="form-table">
		<tr valign="top">
		<th scope="row"><input type="checkbox" class="sldr_post" name="slider" value="slider" <?php 
        echo $extra;
        ?>
 />
		<label for="slider"><?php 
        _e('Add this post/page to', 'smooth-slider');
        ?>
 </label></th>
		<td><select name="slider_name[]" multiple="multiple" size="2" style="height:4em;">
                <?php 
        foreach ($sliders as $slider) {
            ?>
                  <option value="<?php 
            echo $slider['slider_id'];
            ?>
" <?php 
            if (in_array($slider['slider_id'], $post_slider_arr)) {
                echo 'selected';
            }
            ?>
><?php 
            echo $slider['slider_name'];
            ?>
</option>
                <?php 
        }
        ?>
                </select></td></tr>
	
	<tr valign="top">
		 <th scope="row"><label for="sslider_link"><?php 
        _e('Slide Link URL ', 'smooth-slider');
        ?>
</label></th>
                <td><input type="text" name="sslider_link" class="sslider_link" value="<?php 
        echo $sslider_link;
        ?>
" size="50" /><small><?php 
        _e('If left empty, it will be by default linked to the permalink.', 'smooth-slider');
        ?>
</small> </td></tr>
                
	<tr valign="top">
		 <th scope="row"><label for="sslider_nolink"> <?php 
        _e('Do not link this slide to any page(url)', 'smooth-slider');
        ?>
</label></th>
                <td><input type="checkbox" name="sslider_nolink" class="sslider_nolink" value="1" <?php 
        if ($sslider_nolink == '1') {
            echo "checked";
        }
        ?>
  /> </td></tr>
		</table>
                  </div>
	</div>
	<div id="smooth_advaced_tab" style="display:none;">   
		<div class="slider_checkbox">
		<table class="form-table">
            <?php 
        if ($smooth_slider['multiple_sliders'] == '1') {
            ?>
                <tr valign="top">
		<th scope="row"><label for="display_slider"><?php 
            _e('Display ', 'smooth-slider');
            ?>
		<select name="display_slider_name">
                <?php 
            foreach ($sliders as $slider) {
                ?>
                  <option value="<?php 
                echo $slider['slider_id'];
                ?>
" <?php 
                if (ss_post_on_slider($post_id, $slider['slider_id'])) {
                    echo 'selected';
                }
                ?>
><?php 
                echo $slider['slider_name'];
                ?>
</option>
                <?php 
            }
            ?>
                </select><?php 
            _e('on this Post/Page', 'smooth-slider');
            ?>
</th> 
		<td><input type="checkbox" class="sldr_post" name="display_slider" value="1" <?php 
            if (ss_slider_on_this_post($post_id)) {
                echo "checked";
            }
            ?>
 /><?php 
            _e('(Add the Smooth Slider template tag manually on your page.php/single.php or whatever page template file)');
            ?>
</label></td></tr>
          <?php 
        }
        ?>
		  
		<tr valign="top">
		 <th scope="row"><label for="_smooth_slider_style"><?php 
        _e('Stylesheet to use if slider is displayed on this Post/Page', 'smooth-slider');
        ?>
 </label></th>
    <?php 
        $slider_style = get_post_meta($post->ID, '_smooth_slider_style', true);
        ?>
        <td> <select name="_smooth_slider_style" >
			<?php 
        $directory = SMOOTH_SLIDER_CSS_DIR;
        if ($handle = opendir($directory)) {
            while (false !== ($file = readdir($handle))) {
                if ($file != '.' and $file != '..') {
                    ?>
                  <option value="<?php 
                    echo $file;
                    ?>
" <?php 
                    if ($slider_style == $file or empty($slider_style) and $smooth_slider['stylesheet'] == $file) {
                        echo "selected";
                    }
                    ?>
 ><?php 
                    echo $file;
                    ?>
</option>
             <?php 
                }
            }
            closedir($handle);
        }
        ?>
        </select> </td></tr>
          
	<input type="hidden" name="sldr-verify" id="sldr-verify" value="<?php 
        echo wp_create_nonce('SmoothSlider');
        ?>
" />
	   	 <tr valign="top">
		 <th scope="row"><label for="sslider_thumbnail"><?php 
        _e('Custom Thumbnail Image(url)', 'smooth-slider');
        ?>
</label></th>
                	<td><input type="text" name="sslider_thumbnail" class="sslider_thumbnail" value="<?php 
        echo $sslider_thumbnail;
        ?>
" size="50" />
                </td></tr>
		<tr valign="top">
		<th scope="row"><label for="disable_image"><?php 
        _e('Disable Thumbnail Image', 'smooth-slider');
        ?>
 </label></th>
		<td><input type="checkbox" name="disable_image" value="1" <?php 
        if ($sslider_disable_image == '1') {
            echo "checked";
        }
        ?>
  /> </td>
		</tr>
              
                
		<!-- Added for video - Start -->
		<tr valign="top">
		<th scope="row"><label for="embed_shortcode"><?php 
        _e('Embed Shortcode', 'smooth-slider');
        ?>
 </label><br><br><div style="font-weight:normal;border:1px dashed #ccc;padding:5px;color:#666;line-height:20px;font-size:13px;">You can embed any type of shortcode e.g video shortcode or button shortcode which you want to be overlaid on the slide.</div></th>
		<td><textarea rows="4" cols="50" name="smooth_sslider_eshortcode"><?php 
        echo htmlentities($smooth_embed_shortcode, ENT_QUOTES);
        ?>
</textarea></td>
		</tr>
		</table>
		<!-- Added for video - End -->

                 </div>
    </div>
        
<?php 
    }
}
Example #4
0
function smooth_slider_admin_head()
{
    global $smooth_slider;
    if (is_admin()) {
        // admin actions
        if (isset($_GET['page']) && ('smooth-slider-admin' == $_GET['page'] or 'smooth-slider-settings' == $_GET['page'])) {
            $smooth_slider_curr = get_option('smooth_slider_options');
            $active_tab = isset($smooth_slider_curr['active_tab']) ? $smooth_slider_curr['active_tab'] : 0;
            if (isset($_GET['page']) && 'smooth-slider-admin' == $_GET['page']) {
                if (isset($_POST['active_tab'])) {
                    $active_tab = $_POST['active_tab'];
                } else {
                    $active_tab = 0;
                }
            }
            if (empty($active_tab)) {
                $active_tab = 0;
            }
            ?>
			<script type="text/javascript">
		    // <![CDATA[
		jQuery(document).ready(function() { 
		           jQuery("#slider_tabs").tabs({fx: { opacity: "toggle", duration: 300}, active: <?php 
            echo $active_tab;
            ?>
 }).addClass( "ui-tabs-vertical-left ui-helper-clearfix" );
			 jQuery( "#slider_tabs li" ).removeClass( "ui-corner-top" ).addClass( "ui-corner-left" );
					<?php 
            if (isset($_GET['page']) && ('smooth-slider-settings' == $_GET['page'] or 'smooth-slider-admin' == $_GET['page'])) {
                ?>
		jQuery( "#slider_tabs" ).on( "tabsactivate", function( event, ui ) { 
		jQuery( "#smooth_activetab, .smooth_activetab" ).val( jQuery( "#slider_tabs" ).tabs( "option", "active" ) ); 
						});
		   <?php 
            }
            $sliders = ss_get_sliders();
            foreach ($sliders as $slider) {
                ?>
		            jQuery("#sslider_sortable_<?php 
                echo $slider['slider_id'];
                ?>
").sortable();
		            jQuery("#sslider_sortable_<?php 
                echo $slider['slider_id'];
                ?>
").disableSelection();
				    <?php 
            }
            ?>
			  jQuery( ".uploaded-images" ).sortable({ items: ".addedImg" });

		});
			</script> <?php 
        }
        // Sliders page only
        if (isset($_GET['page']) && 'smooth-slider-admin' == $_GET['page']) {
            ?>
<script type="text/javascript"> 
       function confirmRemove()
        {
            var agree=confirm("This will remove selected Posts/Pages from Slider.");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmRemoveAll()
        {
            var agree=confirm("Remove all Posts/Pages from Smooth Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmSliderDelete()
        {
            var agree=confirm("Delete this Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function slider_checkform ( form )
        {
          if (form.new_slider_name.value == "") {
            alert( "Please enter the New Slider name." );
            form.new_slider_name.focus();
            return false ;
          }
          return true ;
        }
        </script>
<?php 
        }
        //Sliders page only
        // Settings page only
        if (isset($_GET['page']) && 'smooth-slider-settings' == $_GET['page']) {
            $smooth_slider_curr = get_option('smooth_slider_options');
            wp_print_scripts('wp-color-picker');
            wp_print_styles('wp-color-picker');
            ?>
<script type="text/javascript">
jQuery(document).ready(function() {
	jQuery('.wp-color-picker-field').wpColorPicker();
});

function confirmSettingsImport()
        {
            var agree=confirm("Reset these Settings to Imported Settings Set??");
            if (agree)
            return true ;
            else
            return false ;
}
</script>
<style type="text/css">
.color-picker-wrap {
		position: absolute;
 		display: none; 
		background: #fff;
		border: 3px solid #ccc;
		padding: 3px;
		z-index: 1000;
	}
#sldr_message {background-color:#FEF7DA;clear:both;width:72%;}
#sldr_close {float:right;} 
</style>
<?php 
        }
        //for smooth slider option page
    }
    //only for admin
    ?>
<style type="text/css">#adminmenu #toplevel_page_smooth-slider-admin div.wp-menu-image:before { content: "\f233"; }</style>
<?php 
}
Example #5
0
function smooth_slider_settings_page()
{
    global $smooth_slider, $default_slider;
    //print_r($default_slider);
    //die("test");
    /* Skins settings File 2.6 */
    $directory = SMOOTH_SLIDER_CSS_DIR;
    if ($handle = opendir($directory)) {
        while (false !== ($file = readdir($handle))) {
            if ($file != '.' and $file != '..') {
                if ($file != "sample") {
                    require_once dirname(dirname(__FILE__)) . '/css/skins/' . $file . '/settings.php';
                }
            }
        }
        closedir($handle);
    }
    //Reset Settings
    if (isset($_POST['smooth_reset_settings_submit'])) {
        if ($_POST['smooth_reset_settings'] != 'n') {
            $smooth_reset_settings = $_POST['smooth_reset_settings'];
            $options = 'smooth_slider_options';
            $optionsvalue = get_option($options);
            if ($smooth_reset_settings == 'g') {
                $new_settings_value = $default_slider;
                update_option($options, $new_settings_value);
            } elseif (!is_numeric($smooth_reset_settings)) {
                $skin = $smooth_reset_settings;
                $new_settings_value = $default_slider;
                $skin_defaults_str = 'default_settings_' . $skin;
                global ${$skin_defaults_str};
                if (count(${$skin_defaults_str}) > 0) {
                    foreach (${$skin_defaults_str} as $key => $value) {
                        $new_settings_value[$key] = $value;
                    }
                    $new_settings_value['stylesheet'] = $skin;
                }
                update_option($options, $new_settings_value);
            }
        }
    }
    $new_settings_msg = '';
    //Import Settings
    if (isset($_POST['import'])) {
        if ($_POST['import'] == 'Import') {
            $imported_settings_message = '';
            $csv_mimetypes = array('text/csv', 'text/x-csv', 'text/plain', 'application/csv', 'text/comma-separated-values', 'application/excel', 'application/vnd.ms-excel', 'application/vnd.msexcel', 'text/anytext', 'application/octet-stream', 'application/txt');
            if ($_FILES['settings_file']['error'] == UPLOAD_ERR_OK && is_uploaded_file($_FILES['settings_file']['tmp_name']) && in_array($_FILES['settings_file']['type'], $csv_mimetypes)) {
                $imported_settings = file_get_contents($_FILES['settings_file']['tmp_name']);
                $settings_arr = explode("\n", $imported_settings);
                $slider_settings = array();
                foreach ($settings_arr as $settings_field) {
                    $s = explode(',', $settings_field);
                    $inner = explode('|', $s[1]);
                    if (count($inner) > 1) {
                        $slider_settings[$s[0]] = $inner;
                    } else {
                        $slider_settings[$s[0]] = $s[1];
                    }
                }
                $options = 'smooth_slider_options';
                if ($slider_settings['slider_name'] == 'smooth') {
                    update_option($options, $slider_settings);
                    $new_settings_msg = '<div id="message" class="updated fade" style="clear:left;"><h3>' . __('Settings imported successfully ', 'smooth-slider') . '</h3></div>';
                    $imported_settings_message = '<div style="clear:left;color:#006E2E;"><h3>' . __('Settings imported successfully ', 'smooth-slider') . '</h3></div>';
                } else {
                    $new_settings_msg = $imported_settings_message = '<div id="message" class="error fade" style="clear:left;"><h3>' . __('Settings imported do not match to Smooth Slider Settings. Please check the file.', 'smooth-slider') . '</h3></div>';
                    $imported_settings_message = '<div style="clear:left;color:#ff0000;"><h3>' . __('Settings imported do not match to Smooth Slider Settings. Please check the file.', 'smooth-slider') . '</h3></div>';
                }
            } else {
                $new_settings_msg = $imported_settings_message = '<div id="message" class="error fade" style="clear:left;"><h3>' . __('Error in File, Settings not imported. Please check the file being imported. ', 'smooth-slider') . '</h3></div>';
                $imported_settings_message = '<div style="clear:left;color:#ff0000;"><h3>' . __('Error in File, Settings not imported. Please check the file being imported. ', 'smooth-slider') . '</h3></div>';
            }
        }
    }
    $smooth_slider = get_option('smooth_slider_options');
    foreach ($default_slider as $key => $value) {
        if (!isset($smooth_slider[$key])) {
            $smooth_slider[$key] = '';
        }
    }
    ?>
<div class="wrap" style="clear:both;">
<h2 class="top_heading"><?php 
    _e('Smooth Slider Settings ', 'smooth-slider');
    ?>
 </h2>
<div class="svilla_cl"></div>

<?php 
    $url = sslider_admin_url(array('page' => 'smooth-slider-admin'));
    ?>

<?php 
    if ($smooth_slider['disable_preview'] != '1') {
        ?>
<div id="settings_preview"><h2 class="heading"><?php 
        _e('Preview', 'smooth-slider');
        ?>
</h2> 
<?php 
        if ($smooth_slider['preview'] == "0") {
            get_smooth_slider($smooth_slider['slider_id']);
        } elseif ($smooth_slider['preview'] == "1") {
            get_smooth_slider_category($smooth_slider['catg_slug']);
        } else {
            get_smooth_slider_recent();
        }
        ?>
 
</div>
<?php 
    }
    echo $new_settings_msg;
    ?>

<div id="smooth_settings">
<form method="post" action="options.php" id="smooth_slider_form">
<?php 
    settings_fields('smooth-slider-group');
    ?>

<div id="slider_tabs">
        <ul class="ui-tabs">
            <li class="green" style="font-weight:bold;font-size:12px;"><a href="#basic">Basic Settings</a></li>
            <li class="pink" style="font-weight:bold;font-size:12px;"><a href="#slides">Slides Panel</a></li>
	    <li class="yellow" style="font-weight:bold;font-size:12px;"><a href="#preview">Preview</a></li>
	    <li class="asbestos" style="font-weight:bold;font-size:12px;"><a href="#cssvalues">Generated CSS</a></li>
        </ul>

<div id="basic">
<div class="sub_settings toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Basic Controls', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"> </h2> 
<table class="form-table">

<tr valign="top">
<th scope="row"><?php 
    _e('Select Skin', 'smooth-slider');
    ?>
 </th>
<td><select name="smooth_slider_options[stylesheet]" id="smooth_slider_stylesheet" onchange="return checkskin(this.value);">
<?php 
    $directory = SMOOTH_SLIDER_CSS_DIR;
    if ($handle = opendir($directory)) {
        while (false !== ($file = readdir($handle))) {
            if ($file != '.' and $file != '..') {
                ?>
      <option value="<?php 
                echo $file;
                ?>
" <?php 
                if ($smooth_slider['stylesheet'] == $file) {
                    echo "selected";
                }
                ?>
 ><?php 
                echo $file;
                ?>
</option>
 <?php 
            }
        }
        closedir($handle);
    }
    ?>
</select>
</td>
</tr>
<tr valign="top">
<th scope="row"><label for="smooth_slider_autostep"><?php 
    _e(' Enable autostepping of slides', 'smooth-slider');
    ?>
</label></th>
<td> 
<input name="smooth_slider_options[autostep]" type="checkbox" id="smooth_slider_autostep" value="1" <?php 
    checked("1", $smooth_slider['autostep']);
    ?>
 /> 
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Slide Transition Effect', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[fx]" >
<option value="scrollHorz" <?php 
    if ($smooth_slider['fx'] == "scrollHorz") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Scroll Horizontally', 'smooth-slider');
    ?>
</option>
<option value="scrollVert" <?php 
    if ($smooth_slider['fx'] == "scrollVert") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Scroll Vertically', 'smooth-slider');
    ?>
</option>
<option value="turnUp" <?php 
    if ($smooth_slider['fx'] == "turnUp") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Turn Up', 'smooth-slider');
    ?>
</option>
<option value="turnDown" <?php 
    if ($smooth_slider['fx'] == "turnDown") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Turn Down', 'smooth-slider');
    ?>
</option>
<option value="fade" <?php 
    if ($smooth_slider['fx'] == "fade") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Fade', 'smooth-slider');
    ?>
</option>
<option value="uncover" <?php 
    if ($smooth_slider['fx'] == "uncover") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Uncover Slide', 'smooth-slider');
    ?>
</option>
</select>
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('Select the Transition Effect from six different effects.', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Slide Pause Interval', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[speed]" id="smooth_slider_speed" class="small-text" value="<?php 
    echo $smooth_slider['speed'];
    ?>
" min="1" /> &nbsp;<?php 
    _e('(in secs)', 'smooth-slider');
    ?>
 
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('Enter number of secs you want the slider to stop before sliding to next slide.', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Slide Animation Length', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[transition]" id="smooth_slider_transition" class="small-text" value="<?php 
    echo $smooth_slider['transition'];
    ?>
" min="1" />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('The duration of Slide Animation in milliseconds. Lower value indicates fast animation', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Number of Posts in the Slideshow', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[no_posts]" id="smooth_slider_no_posts" class="small-text" value="<?php 
    echo $smooth_slider['no_posts'];
    ?>
" min="1" />
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Slide Background Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[bg_color]" id="smooth_slider_bg_color" value="<?php 
    echo $smooth_slider['bg_color'];
    ?>
" class="wp-color-picker-field" data-default-color="#ffffff" /></div></div></br></br>
<label for="smooth_slider_bg"><input name="smooth_slider_options[bg]" type="checkbox" id="smooth_slider_bg" value="1" <?php 
    checked('1', $smooth_slider['bg']);
    ?>
  /><?php 
    _e(' Use Transparent Background', 'smooth-slider');
    ?>
</label> </td>
</tr>
 
<tr valign="top">
<th scope="row"><?php 
    _e('Min. Slider Height', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[height]" id="smooth_slider_height" class="small-text" value="<?php 
    echo $smooth_slider['height'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
</td>
</tr>


<tr valign="top">
<th scope="row"><?php 
    _e('Slider Width', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[width]" id="smooth_slider_width" class="small-text" value="<?php 
    echo $smooth_slider['width'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Border Thickness', 'smooth-slider');
    ?>
</th>
<td><input type="number" min="0" name="smooth_slider_options[border]" id="smooth_slider_border" class="small-text" value="<?php 
    echo $smooth_slider['border'];
    ?>
" />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('Enter 0 if no border is required', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Border Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[brcolor]" id="smooth_slider_brcolor" value="<?php 
    echo $smooth_slider['brcolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#dddddd" /></td>
</tr>

<tr valign="top"> 
<th scope="row"><?php 
    _e('Navigation Buttons', 'smooth-slider');
    ?>
</th> 
<td><fieldset><legend class="screen-reader-text"><span><?php 
    _e('Navigation Buttons', 'smooth-slider');
    ?>
</span></legend> 
<label for="smooth_slider_prev_next"> 
<input name="smooth_slider_options[prev_next]" type="checkbox" id="smooth_slider_prev_next" value="1" <?php 
    checked("1", $smooth_slider['prev_next']);
    ?>
 /> 
 <?php 
    _e('Show Prev/Next navigation arrows', 'smooth-slider');
    ?>
</label><br /> 
<label for="smooth_slider_goto_slide"><?php 
    _e('Show go to slide number links or images', 'smooth-slider');
    ?>
</label><br />
<input name="smooth_slider_options[goto_slide]" type="radio" id="smooth_slider_goto_slide" value="0" <?php 
    checked('0', $smooth_slider['goto_slide']);
    ?>
  /> <?php 
    _e('None ', 'smooth-slider');
    ?>
<br /> 
<input name="smooth_slider_options[goto_slide]" type="radio" id="smooth_slider_goto_slide" value="1" <?php 
    checked('1', $smooth_slider['goto_slide']);
    ?>
  /> <?php 
    _e('Numbers', 'smooth-slider');
    ?>
 <br /> 
<input name="smooth_slider_options[goto_slide]" type="radio" id="smooth_slider_goto_slide" value="2" <?php 
    checked('2', $smooth_slider['goto_slide']);
    ?>
  /> <?php 
    _e('Custom Images for Navigation', 'smooth-slider');
    ?>
 <br /> <input name="smooth_slider_options[goto_slide]" type="radio" id="smooth_slider_goto_slide" value="4" <?php 
    checked('4', $smooth_slider['goto_slide']);
    ?>
  /> <?php 
    _e('Fixed Images for Navigation', 'smooth-slider');
    ?>
 <br /> &nbsp; &nbsp; &nbsp; <?php 
    _e('Size: ', 'smooth-slider');
    ?>
<input type="number" name="smooth_slider_options[navimg_w]" id="smooth_slider_navimg_w" class="small-text" value="<?php 
    echo $smooth_slider['navimg_w'];
    ?>
" min="1" />&nbsp;X&nbsp;<input type="number" name="smooth_slider_options[navimg_ht]" id="smooth_slider_navimg_ht" class="small-text" value="<?php 
    echo $smooth_slider['navimg_ht'];
    ?>
" min="1" /> <?php 
    _e('px', 'smooth-slider');
    ?>
<br /> 
<input name="smooth_slider_options[goto_slide]" type="radio" id="smooth_slider_goto_slide" value="3" <?php 
    checked('3', $smooth_slider['goto_slide']);
    ?>
  /> <?php 
    _e('Enter Custom Text or HTML', 'smooth-slider');
    ?>
  
<input type="text" name="smooth_slider_options[custom_nav]" class="regular-text code" value="<?php 
    echo htmlentities($smooth_slider['custom_nav'], ENT_QUOTES);
    ?>
" />
</fieldset></td> 
</tr> 

</table>
<p class="submit">
<input type="submit" class="button-primary" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>
</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Miscellaneous', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 

<table class="form-table">

<tr valign="top">
<th scope="row"><?php 
    _e('Retain these html tags', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[allowable_tags]" class="regular-text code" value="<?php 
    echo $smooth_slider['allowable_tags'];
    ?>
" />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('Put the tags like &lt;br&gt;&lt;a&gt;&ltp&gt; to retain them.Do not separate them using commas, neither use ⁄ anywhere.', 'smooth-slider');
    ?>
	</div>
</span>
</td>
</tr>
<tr valign="top">
<th scope="row"><?php 
    _e('Continue Reading Text', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[more]" class="regular-text code" value="<?php 
    echo $smooth_slider['more'];
    ?>
" /></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Color of "Continue Reading Text"', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[readmorecolor]" id="smooth_slider_readmorecolor" value="<?php 
    echo $smooth_slider['readmorecolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#3F4C6B" /></div></td>
</tr>
	

<tr valign="top">
<th scope="row"><?php 
    _e('Minimum User Level to add Post to the Slider', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[user_level]" style="width:100%;">
<option value="manage_options" <?php 
    if ($smooth_slider['user_level'] == "manage_options") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Administrator', 'smooth-slider');
    ?>
</option>
<option value="edit_others_posts" <?php 
    if ($smooth_slider['user_level'] == "edit_others_posts") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Editor and Admininstrator', 'smooth-slider');
    ?>
</option>
<option value="publish_posts" <?php 
    if ($smooth_slider['user_level'] == "publish_posts") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Author, Editor and Admininstrator', 'smooth-slider');
    ?>
</option>
<option value="edit_posts" <?php 
    if ($smooth_slider['user_level'] == "edit_posts") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Contributor, Author, Editor and Admininstrator', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Randomize Slides in Slider', 'smooth-slider');
    ?>
</th>
<td><input name="smooth_slider_options[rand]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['rand']);
    ?>
  />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('check this if you want the slides added to appear in random order', 'smooth-slider');
    ?>
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Text to display in the JavaScript disabled browser', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[noscript]" class="regular-text code" value="<?php 
    echo $smooth_slider['noscript'];
    ?>
" /></td>
</tr>

<tr valign="top" style="display:none;">
<th scope="row"><?php 
    _e('Add Shortcode Support', 'smooth-slider');
    ?>
</th>
<td><input name="smooth_slider_options[shortcode]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['shortcode']);
    ?>
  />&nbsp;<?php 
    _e('check this if you want to use Smooth Slider Shortcode i.e [smoothslider]', 'smooth-slider');
    ?>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Multiple Slider Feature', 'smooth-slider');
    ?>
</th>
<td><label for="smooth_slider_multiple"> 
<input name="smooth_slider_options[multiple_sliders]" type="checkbox" id="smooth_slider_multiple" value="1" <?php 
    checked("1", $smooth_slider['multiple_sliders']);
    ?>
 /> 
 <?php 
    _e('Enable Multiple Slider Function on Edit Post/Page', 'smooth-slider');
    ?>
</label></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Enable FOUC', 'smooth-slider');
    ?>
</th>
<td><input name="smooth_slider_options[fouc]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['fouc']);
    ?>
  />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('(check this if you would not want to disable Flash of Unstyled Content in the slider when the page is loaded)', 'smooth-slider');
    ?>
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Custom Styles', 'smooth-slider');
    ?>
</th>
<td><textarea name="smooth_slider_options[css]"  rows="5" class="regular-text code"><?php 
    echo $smooth_slider['css'];
    ?>
</textarea>
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('(custom css styles that you would want to be applied to the slider elements)', 'roster-slider');
    ?>
	</div>
</span>
</td>
</tr>

</table>
</div>

</div><!--#basics-->

<div id="slides">
<div class="sub_settings toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Slider Title', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Customize the looks of the main title of the Slideshow from here', 'smooth-slider');
    ?>
</p> 
<table class="form-table">

<tr valign="top">
<th scope="row"><?php 
    _e('Default Title Text', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[title_text]" id="smooth_slider_title_text" value="<?php 
    echo $smooth_slider['title_text'];
    ?>
" /></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Pick Slider Title From', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[title_from]" >
<option value="0" <?php 
    if ($smooth_slider['title_from'] == "0") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Default Title Text', 'smooth-slider');
    ?>
</option>
<option value="1" <?php 
    if ($smooth_slider['title_from'] == "1") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Slider Name', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[title_font]" id="smooth_slider_title_font" >
<option value="Arial,Helvetica,sans-serif" <?php 
    if ($smooth_slider['title_font'] == "Arial,Helvetica,sans-serif") {
        echo "selected";
    }
    ?>
 >Arial,Helvetica,sans-serif</option>
<option value="Verdana,Geneva,sans-serif" <?php 
    if ($smooth_slider['title_font'] == "Verdana,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Verdana,Geneva,sans-serif</option>
<option value="Tahoma,Geneva,sans-serif" <?php 
    if ($smooth_slider['title_font'] == "Tahoma,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Tahoma,Geneva,sans-serif</option>
<option value="Trebuchet MS,sans-serif" <?php 
    if ($smooth_slider['title_font'] == "Trebuchet MS,sans-serif") {
        echo "selected";
    }
    ?>
 >Trebuchet MS,sans-serif</option>
<option value="'Century Gothic','Avant Garde',sans-serif" <?php 
    if ($smooth_slider['title_font'] == "'Century Gothic','Avant Garde',sans-serif") {
        echo "selected";
    }
    ?>
 >'Century Gothic','Avant Garde',sans-serif</option>
<option value="'Arial Narrow',sans-serif" <?php 
    if ($smooth_slider['title_font'] == "'Arial Narrow',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Narrow',sans-serif</option>
<option value="'Arial Black',sans-serif" <?php 
    if ($smooth_slider['title_font'] == "'Arial Black',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Black',sans-serif</option>
<option value="'Gills Sans MT','Gills Sans',sans-serif" <?php 
    if ($smooth_slider['title_font'] == "'Gills Sans MT','Gills Sans',sans-serif") {
        echo "selected";
    }
    ?>
 >'Gills Sans MT','Gills Sans',sans-serif</option>
<option value="'Times New Roman',Times,serif" <?php 
    if ($smooth_slider['title_font'] == "'Times New Roman',Times,serif") {
        echo "selected";
    }
    ?>
 >'Times New Roman',Times,serif</option>
<option value="Georgia,serif" <?php 
    if ($smooth_slider['title_font'] == "Georgia,serif") {
        echo "selected";
    }
    ?>
 >Georgia,serif</option>
<option value="Garamond,serif" <?php 
    if ($smooth_slider['title_font'] == "Garamond,serif") {
        echo "selected";
    }
    ?>
 >Garamond,serif</option>
<option value="'Century Schoolbook','New Century Schoolbook',serif" <?php 
    if ($smooth_slider['title_font'] == "'Century Schoolbook','New Century Schoolbook',serif") {
        echo "selected";
    }
    ?>
 >'Century Schoolbook','New Century Schoolbook',serif</option>
<option value="'Bookman Old Style',Bookman,serif" <?php 
    if ($smooth_slider['title_font'] == "'Bookman Old Style',Bookman,serif") {
        echo "selected";
    }
    ?>
 >'Bookman Old Style',Bookman,serif</option>
<option value="'Comic Sans MS',cursive" <?php 
    if ($smooth_slider['title_font'] == "'Comic Sans MS',cursive") {
        echo "selected";
    }
    ?>
 >'Comic Sans MS',cursive</option>
<option value="'Courier New',Courier,monospace" <?php 
    if ($smooth_slider['title_font'] == "'Courier New',Courier,monospace") {
        echo "selected";
    }
    ?>
 >'Courier New',Courier,monospace</option>
<option value="'Copperplate Gothic Bold',Copperplate,fantasy" <?php 
    if ($smooth_slider['title_font'] == "'Copperplate Gothic Bold',Copperplate,fantasy") {
        echo "selected";
    }
    ?>
 >'Copperplate Gothic Bold',Copperplate,fantasy</option>
<option value="Impact,fantasy" <?php 
    if ($smooth_slider['title_font'] == "Impact,fantasy") {
        echo "selected";
    }
    ?>
 >Impact,fantasy</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[title_fcolor]" id="smooth_slider_title_fcolor" value="<?php 
    echo $smooth_slider['title_fcolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#000000" /></div></td>
</tr>
<tr valign="top">
<th scope="row"><?php 
    _e('Font Size', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[title_fsize]" id="smooth_slider_title_fsize" class="small-text" value="<?php 
    echo $smooth_slider['title_fsize'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Style', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[title_fstyle]" id="smooth_slider_title_fstyle" >
<option value="bold" <?php 
    if ($smooth_slider['title_fstyle'] == "bold") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold', 'smooth-slider');
    ?>
</option>
<option value="bold italic" <?php 
    if ($smooth_slider['title_fstyle'] == "bold italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold Italic', 'smooth-slider');
    ?>
</option>
<option value="italic" <?php 
    if ($smooth_slider['title_fstyle'] == "italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Italic', 'smooth-slider');
    ?>
</option>
<option value="normal" <?php 
    if ($smooth_slider['title_fstyle'] == "normal") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Normal', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>
</table>
<p class="submit">
<input type="submit" class="button-primary" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>
</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Post Title', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Customize the looks of the title of each of the sliding post here', 'smooth-slider');
    ?>
</p> 
<table class="form-table">

<tr valign="top">
<th scope="row"><?php 
    _e('Font', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[ptitle_font]" id="smooth_slider_ptitle_font" >
<option value="Arial,Helvetica,sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Arial,Helvetica,sans-serif") {
        echo "selected";
    }
    ?>
 >Arial,Helvetica,sans-serif</option>
<option value="Verdana,Geneva,sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Verdana,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Verdana,Geneva,sans-serif</option>
<option value="Tahoma,Geneva,sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Tahoma,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Tahoma,Geneva,sans-serif</option>
<option value="Trebuchet MS,sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Trebuchet MS,sans-serif") {
        echo "selected";
    }
    ?>
 >Trebuchet MS,sans-serif</option>
<option value="'Century Gothic','Avant Garde',sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Century Gothic','Avant Garde',sans-serif") {
        echo "selected";
    }
    ?>
 >'Century Gothic','Avant Garde',sans-serif</option>
<option value="'Arial Narrow',sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Arial Narrow',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Narrow',sans-serif</option>
<option value="'Arial Black',sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Arial Black',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Black',sans-serif</option>
<option value="'Gills Sans MT','Gills Sans',sans-serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Gills Sans MT','Gills Sans',sans-serif") {
        echo "selected";
    }
    ?>
 >'Gills Sans MT','Gills Sans',sans-serif</option>
<option value="'Times New Roman',Times,serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Times New Roman',Times,serif") {
        echo "selected";
    }
    ?>
 >'Times New Roman',Times,serif</option>
<option value="Georgia,serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Georgia,serif") {
        echo "selected";
    }
    ?>
 >Georgia,serif</option>
<option value="Garamond,serif" <?php 
    if ($smooth_slider['ptitle_font'] == "Garamond,serif") {
        echo "selected";
    }
    ?>
 >Garamond,serif</option>
<option value="'Century Schoolbook','New Century Schoolbook',serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Century Schoolbook','New Century Schoolbook',serif") {
        echo "selected";
    }
    ?>
 >'Century Schoolbook','New Century Schoolbook',serif</option>
<option value="'Bookman Old Style',Bookman,serif" <?php 
    if ($smooth_slider['ptitle_font'] == "'Bookman Old Style',Bookman,serif") {
        echo "selected";
    }
    ?>
 >'Bookman Old Style',Bookman,serif</option>
<option value="'Comic Sans MS',cursive" <?php 
    if ($smooth_slider['ptitle_font'] == "'Comic Sans MS',cursive") {
        echo "selected";
    }
    ?>
 >'Comic Sans MS',cursive</option>
<option value="'Courier New',Courier,monospace" <?php 
    if ($smooth_slider['ptitle_font'] == "'Courier New',Courier,monospace") {
        echo "selected";
    }
    ?>
 >'Courier New',Courier,monospace</option>
<option value="'Copperplate Gothic Bold',Copperplate,fantasy" <?php 
    if ($smooth_slider['ptitle_font'] == "'Copperplate Gothic Bold',Copperplate,fantasy") {
        echo "selected";
    }
    ?>
 >'Copperplate Gothic Bold',Copperplate,fantasy</option>
<option value="Impact,fantasy" <?php 
    if ($smooth_slider['ptitle_font'] == "Impact,fantasy") {
        echo "selected";
    }
    ?>
 >Impact,fantasy</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[ptitle_fcolor]" id="smooth_slider_ptitle_fcolor" value="<?php 
    echo $smooth_slider['ptitle_fcolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#000000" /></div></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Size', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[ptitle_fsize]" id="smooth_slider_ptitle_fsize" class="small-text" value="<?php 
    echo $smooth_slider['ptitle_fsize'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Style', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[ptitle_fstyle]" id="smooth_slider_ptitle_fstyle" >
<option value="bold" <?php 
    if ($smooth_slider['ptitle_fstyle'] == "bold") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold', 'smooth-slider');
    ?>
</option>
<option value="bold italic" <?php 
    if ($smooth_slider['ptitle_fstyle'] == "bold italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold Italic', 'smooth-slider');
    ?>
</option>
<option value="italic" <?php 
    if ($smooth_slider['ptitle_fstyle'] == "italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Italic', 'smooth-slider');
    ?>
</option>
<option value="normal" <?php 
    if ($smooth_slider['ptitle_fstyle'] == "normal") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Normal', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>
</table>
<p class="submit">
<input type="submit" class="button-primary" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>
</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Thumbnail Image', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Customize the looks of the thumbnail image for each of the sliding post here', 'smooth-slider');
    ?>
</p> 
<table class="form-table">

<tr valign="top"> 
<th scope="row"><?php 
    _e('Image Pick Preferences', 'smooth-slider');
    ?>
 <small><?php 
    _e('(The first one is having priority over second, the second having priority on third and so on)', 'smooth-slider');
    ?>
</small></th> 
<td><fieldset><legend class="screen-reader-text"><span><?php 
    _e('Image Pick Sequence', 'smooth-slider');
    ?>
 <small><?php 
    _e('(The first one is having priority over second, the second having priority on third and so on)', 'smooth-slider');
    ?>
</small> </span></legend> 
<input name="smooth_slider_options[img_pick][0]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['img_pick'][0]);
    ?>
  /> <?php 
    _e('Use Custom Field/Key', 'smooth-slider');
    ?>
 &nbsp; &nbsp; <br/> <br/>
<?php 
    _e('Name of the Custom Field/Key', 'smooth-slider');
    ?>
<input type="text" name="smooth_slider_options[img_pick][1]" class="text" value="<?php 
    echo $smooth_slider['img_pick'][1];
    ?>
" /><br /> <br/>
<input name="smooth_slider_options[img_pick][2]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['img_pick'][2]);
    ?>
  /> <?php 
    _e('Use Featured Post/Thumbnail (Wordpress 3.0 +  feature)', 'smooth-slider');
    ?>
&nbsp; <br /> <br/>
<input name="smooth_slider_options[img_pick][3]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['img_pick'][3]);
    ?>
  /> <?php 
    _e('Consider Images attached to the post', 'smooth-slider');
    ?>
 &nbsp; &nbsp; <br/><br/>
<?php 
    _e('Order of the Image attachment to pick', 'smooth-slider');
    ?>
<input type="text" name="smooth_slider_options[img_pick][4]" class="small-text" value="<?php 
    echo $smooth_slider['img_pick'][4];
    ?>
" /> &nbsp; <br /><br/>
<input name="smooth_slider_options[img_pick][5]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['img_pick'][5]);
    ?>
  /> <?php 
    _e('Scan images from the post, in case there is no attached image to the post', 'smooth-slider');
    ?>
&nbsp; 
</fieldset></td> 
</tr> 

<tr valign="top">
<th scope="row"><?php 
    _e('Align to', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[img_align]" id="smooth_slider_img_align" >
<option value="left" <?php 
    if ($smooth_slider['img_align'] == "left") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Left', 'smooth-slider');
    ?>
</option>
<option value="right" <?php 
    if ($smooth_slider['img_align'] == "right") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Right', 'smooth-slider');
    ?>
</option>
<option value="none" <?php 
    if ($smooth_slider['img_align'] == "none") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('None', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Wordpress Image Extract Size', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[crop]" id="smooth_slider_img_crop" >
<option value="0" <?php 
    if ($smooth_slider['crop'] == "0") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Full', 'smooth-slider');
    ?>
</option>
<option value="1" <?php 
    if ($smooth_slider['crop'] == "1") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Large', 'smooth-slider');
    ?>
</option>
<option value="2" <?php 
    if ($smooth_slider['crop'] == "2") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Medium', 'smooth-slider');
    ?>
</option>
<option value="3" <?php 
    if ($smooth_slider['crop'] == "3") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Thumbnail', 'smooth-slider');
    ?>
</option>
</select>
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('This is for fast page load, in case you choose \'Custom Size\' setting from below, you would not like to extract \'full\' size image from the media library. In this case you can use, \'medium\' or \'thumbnail\' image. This is because, for every image upload to the media gallery WordPress creates four sizes of the same image. So you can choose which to load in the slider and then specify the actual size.', 'smooth-slider');
    ?>
	</div>
</span>

</td>
</tr>


<tr valign="top"> 
<th scope="row"><?php 
    _e('Image Size', 'smooth-slider');
    ?>
</th> 
<td><fieldset><legend class="screen-reader-text"><span><?php 
    _e('Image Size', 'smooth-slider');
    ?>
</span></legend> 
<input name="smooth_slider_options[img_size]" type="radio" value="0" <?php 
    checked('0', $smooth_slider['img_size']);
    ?>
  /> <?php 
    _e('Original Size', 'smooth-slider');
    ?>
 
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('(In this case, the size would be equal to the extracted image (full/large/medium/thumbnail) from the above settings', 'smooth-slider');
    ?>
 
	</div>
</span>
<br />
<input name="smooth_slider_options[img_size]" type="radio" value="1" <?php 
    checked('1', $smooth_slider['img_size']);
    ?>
  /> <?php 
    _e('Custom Size:', 'smooth-slider');
    ?>
&nbsp; 
<label for="smooth_slider_options[img_width]"><?php 
    _e('Width', 'smooth-slider');
    ?>
</label>
<input type="number" name="smooth_slider_options[img_width]" class="small-text" value="<?php 
    echo $smooth_slider['img_width'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
 &nbsp;&nbsp; 
</fieldset></td> 
</tr> 

<tr valign="top">
<th scope="row"><?php 
    _e('Maximum Height of the Image', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[img_height]" class="small-text" value="<?php 
    echo $smooth_slider['img_height'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('(This is necessary in order to keep the maximum image height in control)', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Border Thickness', 'smooth-slider');
    ?>
</th>
<td><input type="number" min="0" name="smooth_slider_options[img_border]" id="smooth_slider_img_border" class="small-text" value="<?php 
    echo $smooth_slider['img_border'];
    ?>
" />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('px  (put 0 if no border is required)', 'smooth-slider');
    ?>
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Border Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[img_brcolor]" id="smooth_slider_img_brcolor" value="<?php 
    echo $smooth_slider['img_brcolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#000000" /></div></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Make pure Image Slider', 'smooth-slider');
    ?>
</th>
<td><input name="smooth_slider_options[image_only]" type="checkbox" value="1" <?php 
    checked('1', $smooth_slider['image_only']);
    ?>
  />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('(check this to convert Smooth Slider to Image Slider with no content)', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>
</table>

<p class="submit">
<input type="submit" class="button-primary" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>

</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Slider Content', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Customize the looks of the content of each of the sliding post here', 'smooth-slider');
    ?>
</p> 
<table class="form-table">
<tr valign="top">
<th scope="row"><?php 
    _e('Font', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[content_font]" id="smooth_slider_content_font" >
<option value="Arial,Helvetica,sans-serif" <?php 
    if ($smooth_slider['content_font'] == "Arial,Helvetica,sans-serif") {
        echo "selected";
    }
    ?>
 >Arial,Helvetica,sans-serif</option>
<option value="Verdana,Geneva,sans-serif" <?php 
    if ($smooth_slider['content_font'] == "Verdana,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Verdana,Geneva,sans-serif</option>
<option value="Tahoma,Geneva,sans-serif" <?php 
    if ($smooth_slider['content_font'] == "Tahoma,Geneva,sans-serif") {
        echo "selected";
    }
    ?>
 >Tahoma,Geneva,sans-serif</option>
<option value="Trebuchet MS,sans-serif" <?php 
    if ($smooth_slider['content_font'] == "Trebuchet MS,sans-serif") {
        echo "selected";
    }
    ?>
 >Trebuchet MS,sans-serif</option>
<option value="'Century Gothic','Avant Garde',sans-serif" <?php 
    if ($smooth_slider['content_font'] == "'Century Gothic','Avant Garde',sans-serif") {
        echo "selected";
    }
    ?>
 >'Century Gothic','Avant Garde',sans-serif</option>
<option value="'Arial Narrow',sans-serif" <?php 
    if ($smooth_slider['content_font'] == "'Arial Narrow',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Narrow',sans-serif</option>
<option value="'Arial Black',sans-serif" <?php 
    if ($smooth_slider['content_font'] == "'Arial Black',sans-serif") {
        echo "selected";
    }
    ?>
 >'Arial Black',sans-serif</option>
<option value="'Gills Sans MT','Gills Sans',sans-serif" <?php 
    if ($smooth_slider['content_font'] == "'Gills Sans MT','Gills Sans',sans-serif") {
        echo "selected";
    }
    ?>
 >'Gills Sans MT','Gills Sans',sans-serif</option>
<option value="'Times New Roman',Times,serif" <?php 
    if ($smooth_slider['content_font'] == "'Times New Roman',Times,serif") {
        echo "selected";
    }
    ?>
 >'Times New Roman',Times,serif</option>
<option value="Georgia,serif" <?php 
    if ($smooth_slider['content_font'] == "Georgia,serif") {
        echo "selected";
    }
    ?>
 >Georgia,serif</option>
<option value="Garamond,serif" <?php 
    if ($smooth_slider['content_font'] == "Garamond,serif") {
        echo "selected";
    }
    ?>
 >Garamond,serif</option>
<option value="'Century Schoolbook','New Century Schoolbook',serif" <?php 
    if ($smooth_slider['content_font'] == "'Century Schoolbook','New Century Schoolbook',serif") {
        echo "selected";
    }
    ?>
 >'Century Schoolbook','New Century Schoolbook',serif</option>
<option value="'Bookman Old Style',Bookman,serif" <?php 
    if ($smooth_slider['content_font'] == "'Bookman Old Style',Bookman,serif") {
        echo "selected";
    }
    ?>
 >'Bookman Old Style',Bookman,serif</option>
<option value="'Comic Sans MS',cursive" <?php 
    if ($smooth_slider['content_font'] == "'Comic Sans MS',cursive") {
        echo "selected";
    }
    ?>
 >'Comic Sans MS',cursive</option>
<option value="'Courier New',Courier,monospace" <?php 
    if ($smooth_slider['content_font'] == "'Courier New',Courier,monospace") {
        echo "selected";
    }
    ?>
 >'Courier New',Courier,monospace</option>
<option value="'Copperplate Gothic Bold',Copperplate,fantasy" <?php 
    if ($smooth_slider['content_font'] == "'Copperplate Gothic Bold',Copperplate,fantasy") {
        echo "selected";
    }
    ?>
 >'Copperplate Gothic Bold',Copperplate,fantasy</option>
<option value="Impact,fantasy" <?php 
    if ($smooth_slider['content_font'] == "Impact,fantasy") {
        echo "selected";
    }
    ?>
 >Impact,fantasy</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Color', 'smooth-slider');
    ?>
</th>
<td><input type="text" name="smooth_slider_options[content_fcolor]" id="smooth_slider_content_fcolor" value="<?php 
    echo $smooth_slider['content_fcolor'];
    ?>
" class="wp-color-picker-field" data-default-color="#333333" /></div></td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Size', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[content_fsize]" id="smooth_slider_content_fsize" class="small-text" value="<?php 
    echo $smooth_slider['content_fsize'];
    ?>
" min="1" />&nbsp;<?php 
    _e('px', 'smooth-slider');
    ?>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Font Style', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[content_fstyle]" id="smooth_slider_content_fstyle" >
<option value="bold" <?php 
    if ($smooth_slider['content_fstyle'] == "bold") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold', 'smooth-slider');
    ?>
</option>
<option value="bold italic" <?php 
    if ($smooth_slider['content_fstyle'] == "bold italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Bold Italic', 'smooth-slider');
    ?>
</option>
<option value="italic" <?php 
    if ($smooth_slider['content_fstyle'] == "italic") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Italic', 'smooth-slider');
    ?>
</option>
<option value="normal" <?php 
    if ($smooth_slider['content_fstyle'] == "normal") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Normal', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Pick content From', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[content_from]" id="smooth_slider_content_from" >
<option value="slider_content" <?php 
    if ($smooth_slider['content_from'] == "slider_content") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Slider Content Custom field', 'smooth-slider');
    ?>
</option>
<option value="excerpt" <?php 
    if ($smooth_slider['content_from'] == "excerpt") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Post Excerpt', 'smooth-slider');
    ?>
</option>
<option value="content" <?php 
    if ($smooth_slider['content_from'] == "content") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('From Content', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Maximum content size (in words)', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[content_limit]" id="smooth_slider_content_limit" class="small-text" value="<?php 
    echo $smooth_slider['content_limit'];
    ?>
" min="1" />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('If the number of Words are not specified in this field, the below field i.e. the \'Maximum Content Size in Chracters\' will be considered.', 'smooth-slider');
    ?>
 
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Maximum content size (in characters)', 'smooth-slider');
    ?>
</th>
<td><input type="number" name="smooth_slider_options[content_chars]" id="smooth_slider_content_chars" class="small-text" value="<?php 
    echo $smooth_slider['content_chars'];
    ?>
" min="1" />&nbsp;<?php 
    _e('characters', 'smooth-slider');
    ?>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</td>
</tr>

</table>
</div>

</div><!--#slides-->

<div id="preview">
<div class="sub_settings toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Preview on Settings Panel', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 

<table class="form-table">

<tr valign="top"> 
<th scope="row"><label for="smooth_slider_disable_preview"><?php 
    _e('Disable Preview Section', 'smooth-slider');
    ?>
</label></th> 
<td> 
<input name="smooth_slider_options[disable_preview]" type="checkbox" id="smooth_slider_disable_preview" value="1" <?php 
    checked("1", $smooth_slider['disable_preview']);
    ?>
 />
<span class="moreInfo">
	&nbsp; <span class="trigger"> ? </span>
	<div class="tooltip">
	<?php 
    _e('If disabled, the \'Preview\' of Slider on this Settings page will be removed.', 'smooth-slider');
    ?>
	</div>
</span>
</td>
</tr>

<tr valign="top">
<th scope="row"><?php 
    _e('Type of Smooth Slider', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_slider_options[preview]" id="smooth_slider_preview" id="smooth_slider_preview" onchange="checkpreview(this.value);">
<option value="2" <?php 
    if ($smooth_slider['preview'] == "2") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Recent Posts Slider', 'smooth-slider');
    ?>
</option>
<option value="1" <?php 
    if ($smooth_slider['preview'] == "1") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Category Slider', 'smooth-slider');
    ?>
</option>
<option value="0" <?php 
    if ($smooth_slider['preview'] == "0") {
        echo "selected";
    }
    ?>
 ><?php 
    _e('Custom Slider', 'smooth-slider');
    ?>
</option>
</select>
</td>
</tr>
<?php 
    /* Added for category selection in Meta Box 2.6*/
    //category slug
    $categories = get_categories();
    $scat_html = '<option value="" selected >Select the Category</option>';
    foreach ($categories as $category) {
        if ($category->slug == $smooth_slider['catg_slug']) {
            $selected = 'selected';
        } else {
            $selected = '';
        }
        $scat_html = $scat_html . '<option value="' . $category->slug . '" ' . $selected . '>' . $category->name . '</option>';
    }
    //fetching slider names 2.6
    global $smooth_slider;
    if ($smooth_slider['multiple_sliders'] == '1') {
        $slider_id = $smooth_slider['slider_id'];
        $sliders = ss_get_sliders();
        $sname_html = '<option value="0" selected >Select the Slider</option>';
        foreach ($sliders as $slider) {
            if ($slider['slider_id'] == $slider_id) {
                $selected = 'selected';
            } else {
                $selected = '';
            }
            $sname_html = $sname_html . '<option value="' . $slider['slider_id'] . '" ' . $selected . '>' . $slider['slider_name'] . '</option>';
        }
    }
    ?>
 

<!-- Added for category selection in Meta Box 2.6-->
<tr valign="top" class="smooth_slider_params"> 
<th scope="row"><?php 
    _e('Preview Slider Params', 'smooth-slider');
    ?>
</th> 
<td><fieldset><legend class="screen-reader-text"><span><?php 
    _e('Preview Slider Params', 'smooth-slider');
    ?>
</span></legend> 

<label for="smooth_slider_options[slider_id]" class="smooth_sid"><?php 
    _e('Select Slider Name', 'smooth-slider');
    ?>
</label>
<select id="smooth_slider_id" name="smooth_slider_options[slider_id]" class="smooth_sid"><?php 
    echo $sname_html;
    ?>
</select>

<label for="smooth_slider_options[catg_slug]" class="smooth_catslug"><?php 
    _e('Select Category', 'smooth-slider');
    ?>
</label>
<select id="smooth_slider_catslug" name="smooth_slider_options[catg_slug]" class="smooth_catslug"><?php 
    echo $scat_html;
    ?>
</select>
</fieldset></td> 
</tr> 


</table>
<p class="submit">
<input type="submit" class="button-primary" id="preview_save" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>
</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Shortcode', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Paste the below shortcode on Page/Post Edit Panel to get the slider as shown in the above Preview', 'smooth-slider');
    ?>
</p>
<?php 
    if ($smooth_slider['preview'] == "0") {
        $preview = '[smoothslider id="' . $smooth_slider['slider_id'] . '"]';
    } elseif ($smooth_slider['preview'] == "1") {
        $preview = '[smoothcategory catg_slug="' . $smooth_slider['catg_slug'] . '"]';
    } else {
        $preview = '[smoothrecent]';
    }
    echo "<p>" . $preview . "</p>";
    ?>
</div>

<div class="sub_settings_m toggle_settings">
<h2 class="sub-heading"><?php 
    _e('Template Tag', 'smooth-slider');
    ?>
<img src="<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
" class="toggle_img"></h2> 
<p><?php 
    _e('Paste the below template tag in your theme template file like index.php or page.php at required location to get the slider as shown in the above Preview', 'smooth-slider');
    ?>
</p><br />
<?php 
    if ($smooth_slider['preview'] == "0") {
        echo '<code>&lt;?php if(function_exists("get_smooth_slider")){get_smooth_slider($slider_id="' . $smooth_slider['slider_id'] . '");}?&gt;</code>';
    } elseif ($smooth_slider['preview'] == "1") {
        echo '<code>&lt;?php if(function_exists("get_smooth_slider_category")){get_smooth_slider_category($catg_slug="' . $smooth_slider['catg_slug'] . '");}?&gt;</code>';
    } else {
        echo '<code>&lt;?php if(function_exists("get_smooth_slider_recent")){get_smooth_slider_recent();}?&gt;</code>';
    }
    ?>
</div>

</div><!-- preview tab ends-->

<div id="cssvalues">
<div class="sub_settings">
<h2 class="sub-heading"><?php 
    _e('CSS Generated thru these settings', 'thumbel-slider');
    ?>
</h2> 
<p><?php 
    _e('Save Changes for the settings first and then view this data. You can use this CSS in your \'custom\' stylesheets if you use other than \'default\' value for the Stylesheet folder.', 'thumbel-slider');
    ?>
</p> 
<?php 
    $smooth_slider_css = smooth_get_inline_css($echo = '1');
    ?>
<div style="font-family:monospace;font-size:13px;background:#ddd;">
.smooth_slider{<?php 
    echo $smooth_slider_css['smooth_slider'];
    ?>
} <br />
.smooth_slider .sldr_title{<?php 
    echo $smooth_slider_css['sldr_title'];
    ?>
} <br />
.smooth_slider .smooth_slideri{<?php 
    echo $smooth_slider_css['smooth_slideri'];
    ?>
} <br />
.smooth_slider .smooth_slider_thumbnail{<?php 
    echo $smooth_slider_css['smooth_slider_thumbnail'];
    ?>
} <br />
.smooth_slider .smooth_slideri h2{<?php 
    echo $smooth_slider_css['smooth_slider_h2'];
    ?>
} <br />
.smooth_slider .smooth_slideri h2 a{<?php 
    echo $smooth_slider_css['smooth_slider_h2_a'];
    ?>
} <br />
.smooth_slider .smooth_slideri span{<?php 
    echo $smooth_slider_css['smooth_slider_span'];
    ?>
} <br />
.smooth_slider .smooth_slideri p.more{<?php 
    echo $smooth_slider_css['smooth_slider_p_more'];
    ?>
} <br />
.smooth_slider .smooth_next{<?php 
    echo $smooth_slider_css['smooth_next'];
    ?>
} <br />
.smooth_slider .smooth_prev{<?php 
    echo $smooth_slider_css['smooth_prev'];
    ?>
} 
.smooth_slider .smooth_slider_eshortcode{<?php 
    echo $smooth_slider_css['smooth_slider_eshortcode'];
    ?>
}
.smooth_slider .smooth_more a{<?php 
    echo $smooth_slider_css['smooth_slider_p_more'];
    ?>
}
</div>
</div>
</div> <!--#cssvalues-->
<div class="svilla_cl"></div><div class="svilla_cr"></div>

</div> <!--end of #slider_tabs-->

<p class="submit">
<input type="submit" class="button-primary" value="<?php 
    _e('Save Changes');
    ?>
" />
</p>
<input type="hidden" name="smooth_slider_options[active_tab]" id="smooth_activetab" value="<?php 
    echo $smooth_slider['active_tab'];
    ?>
" />
<input type="hidden" name="smooth_slider_options[popup]" id="smoothpopup" value="<?php 
    echo $smooth_slider['popup'];
    ?>
" />
<input type="hidden" name="hidden_preview" id="hidden_preview" value="<?php 
    echo $smooth_slider['preview'];
    ?>
" />
<input type="hidden" name="hidden_category" id="hidden_category" value="<?php 
    echo $smooth_slider['catg_slug'];
    ?>
" />
<input type="hidden" name="hidden_sliderid" id="hidden_sliderid" value="<?php 
    echo $smooth_slider['slider_id'];
    ?>
" />

</form>
<!-- Added for shortcode to show on save of settings-->
<div id="saveResult"></div>

<!--Form to reset Settings set-->
<form style="float:left;width:100%;" action="" method="post">
<table class="form-table">
<tr valign="top">
<th scope="row"><?php 
    _e('Reset Settings to', 'smooth-slider');
    ?>
</th>
<td><select name="smooth_reset_settings" id="smooth_slider_reset_settings" >
<option value="n" selected ><?php 
    _e('None', 'smooth-slider');
    ?>
</option>
<option value="g" ><?php 
    _e('Global Default', 'smooth-slider');
    ?>
</option>
<?php 
    $directory = SMOOTH_SLIDER_CSS_DIR;
    if ($handle = opendir($directory)) {
        while (false !== ($file = readdir($handle))) {
            if ($file != '.' and $file != '..') {
                if ($file != "default" && $file != "sample") {
                    ?>
      <option value="<?php 
                    echo $file;
                    ?>
"><?php 
                    echo "'" . $file . "' skin";
                    ?>
</option>
 <?php 
                }
            }
        }
        closedir($handle);
    }
    ?>
</select>
</td>
</tr>
</table>

<p class="submit">
<input name="smooth_reset_settings_submit" type="submit" class="button-primary" value="<?php 
    _e('Reset Settings');
    ?>
" />
</p>
</form>

<div class="svilla_cl"></div>

<div style="border:1px solid #ccc;padding:10px;background:#fff;margin-top:2%;float: left;width: 95%;" id="import">
<?php 
    if (isset($imported_settings_message)) {
        echo $imported_settings_message;
    }
    ?>
<h3><?php 
    _e('Import Settings Set by uploading a Settings File', 'smooth-slider');
    ?>
</h3>
<form style="margin-right:10px;font-size:14px;" action="" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
<input type="file" name="settings_file" id="settings_file" style="font-size:13px;width:50%;padding:0 5px;" />
<input type="submit" value="Import" name="import"  onclick="return confirmSettingsImport()" title="<?php 
    _e('Import Settings from a file', 'smooth-slider');
    ?>
" class="button-primary" />
</form>
</div>
</div> <!--end of float left -->
<!-- Added for validations - start -->
<script type="text/javascript">
<?php 
    /* To fetch Skin Specific attributes 2.6 */
    $directory = SMOOTH_SLIDER_CSS_DIR;
    if ($handle = opendir($directory)) {
        while (false !== ($file = readdir($handle))) {
            if ($file != '.' and $file != '..') {
                $default_settings_str = 'default_settings_' . $file;
                global ${$default_settings_str};
                echo 'var ' . $default_settings_str . ' = ' . json_encode(${$default_settings_str}) . ';';
            }
        }
        closedir($handle);
    }
    ?>
/* To populate Skin Specific attributes 2.6 */
function checkskin(skin){ 
	var skin_array = window['default_settings_'+skin];       
	for (var key in skin_array) {
		var html_element='smooth_slider_'+key;
		document.getElementById(html_element).value = skin_array[key];
	}
	
}
jQuery(document).ready(function($) {
<?php 
    if (isset($_GET['settings-updated'])) {
        if ($_GET['settings-updated'] == 'true' and $smooth_slider['popup'] == '1') {
            ?>
jQuery('#saveResult').html("<div id='popup'><div class='modal_shortcode'>Quick Embed Shortcode</div><span class='button b-close'><span>X</span></span></div>");
				jQuery('#popup').append('<div class="modal_preview"><?php 
            echo $preview;
            ?>
</div>');				
				jQuery('#popup').bPopup({
		    			opacity: 0.6,
					position: ['35%', '35%'],
		    			positionStyle: 'fixed', //'fixed' or 'absolute'			
					onClose: function() { return true; }
				});

<?php 
        }
    }
    ?>

	/* jquery code moved to admin.js -2.6 */
	
/* Added for settings tab collapse and expand - 2.6 start */
	jQuery(this).find(".sub-heading").on("click", function(){
		var wrap=jQuery(this).parent('.toggle_settings'),
		tabcontent=wrap.find("p, table, code");
		tabcontent.toggle();
		var imgclass=wrap.find(".toggle_img");
		if (tabcontent.css('display') == 'none') {
			imgclass.attr("src", imgclass.attr("src").replace("<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
", "<?php 
    echo smooth_slider_plugin_url('images/info.png');
    ?>
"));
		} else {
			imgclass.attr("src", imgclass.attr("src").replace("<?php 
    echo smooth_slider_plugin_url('images/info.png');
    ?>
", "<?php 
    echo smooth_slider_plugin_url('images/close.png');
    ?>
"));
		}
	});
	/* Added for settings tab collapse and expand - 2.6 end */

		
	});
</script>
<!-- Added for validation - end -->
</div> <!--end of float wrap -->

<div id="poststuff" class="metabox-holder has-right-sidebar" style="float:left;width:100%;max-width:300px;min-width:inherit;"> 
        <div class="postbox" style="margin:0 0 10px 0;"> 
	<h3 class="hndle"><span></span><?php 
    _e('Quick Embed Shortcode', 'smooth-slider');
    ?>
</h3> 
	<div class="inside" id="shortcodeview">
	<?php 
    if ($smooth_slider['preview'] == "0") {
        echo '[smoothslider id="' . $smooth_slider['slider_id'] . '"]';
    } elseif ($smooth_slider['preview'] == "1") {
        echo '[smoothcategory catg_slug="' . $smooth_slider['catg_slug'] . '"]';
    } else {
        echo '[smoothrecent]';
    }
    ?>
</div></div>

<div class="postbox" style="margin:10px 0;"> 
	<h3 class="hndle"><span></span><?php 
    _e('Quick Embed Template Tag', 'smooth-slider');
    ?>
</h3> 
	<div class="inside">
	<?php 
    if ($smooth_slider['preview'] == "0") {
        echo '<code>&lt;?php if( function_exists("get_smooth_slider") ){ get_smooth_slider( $slider_id="' . $smooth_slider['slider_id'] . '"); } ?&gt;</code>';
    } elseif ($smooth_slider['preview'] == "1") {
        echo '<code>&lt;?php if( function_exists( "get_smooth_slider_category" ) ){ get_smooth_slider_category( $catg_slug="' . $smooth_slider['catg_slug'] . '"); } ?&gt;</code>';
    } else {
        echo '<code>&lt;?php if( function_exists( "get_smooth_slider_recent" ) ){ get_smooth_slider_recent(); } ?&gt;</code>';
    }
    ?>
</div></div>    

<form style="margin-right:10px;font-size:14px;width:100%;" action="" method="post">
<a class="svilla_button svilla_gray_button" href="<?php 
    echo $url;
    ?>
" title="<?php 
    _e('Go to Sliders page where you can re-order the slide posts, delete the slides from the slider etc.', 'smooth-slider');
    ?>
"><?php 
    _e('Go to Sliders Admin', 'smooth-slider');
    ?>
</a>
<input type="submit" value="Export" name="export" title="<?php 
    _e('Export this Settings Set to a file', 'smooth-slider');
    ?>
" class="svilla_button" />
<a href="#import" title="<?php 
    _e('Go to Import Settings Form', 'smooth-slider');
    ?>
" class="svilla_button">Import</a>
<div class="svilla_cl"></div>
</form>
	<div class="postbox" style="margin:10px 0;"> 
				<div class="inside">
				<div style="margin:10px auto;">
							<a href="http://slidervilla.com" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/banner-premium.png');
    ?>
" alt="Premium WordPress Slider Plugins" width="100%" /></a>
				</div>
				<p><a href="http://slidervilla.com/" title="Recommended WordPress Sliders" target="_blank">SliderVilla slider plugins</a> are feature rich and stylish plugins to embed a nice looking featured content slider in your existing or new theme template. 100% customization options available on WordPress Settings page of the plugin.</p>
						<p><strong>Stylish Sliders, <a href="http://slidervilla.com/blog/testimonials/" target="_blank">Happy Customers</a>!</strong></p>
                        <p><a href="http://slidervilla.com/" title="Recommended WordPress Sliders" target="_blank">For more info visit SliderVilla</a></p>
            </div></div>
         
		<div class="postbox"> 
		  <h3 class="hndle"><span><?php 
    _e('About this Plugin:', 'smooth-slider');
    ?>
</span></h3> 
		  <div class="inside">
                <ul>
                <li><a href="http://slidervilla.com/smooth-slider" title="<?php 
    _e('Smooth Slider Homepage', 'smooth-slider');
    ?>
" ><?php 
    _e('Plugin Homepage', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://wordpress.org/support/plugin/smooth-slider" title="<?php 
    _e('Support Forum for Smooth Slider', 'smooth-slider');
    ?>
" ><?php 
    _e('Support Forum', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://slidervilla.com/about-us/" title="<?php 
    _e('Smooth Slider Author Page', 'smooth-slider');
    ?>
" ><?php 
    _e('About the Author', 'smooth-slider');
    ?>
</a></li>
		<li><a href="http://www.clickonf5.org/go/smooth-slider/" title="<?php 
    _e('Donate if you liked the plugin and support in enhancing Smooth Slider and creating new plugins', 'smooth-slider');
    ?>
" ><?php 
    _e('Donate with Paypal', 'smooth-slider');
    ?>
</a></li>
		<li><strong>Current Version: <?php 
    echo SMOOTH_SLIDER_VER;
    ?>
</strong></li>
                </ul> 
              </div> 
		</div>

	<div class="postbox">
 <div class="inside"> 
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="8046056">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div> 

 </div> <!--end of poststuff --> 



<?php 
}
Example #6
0
function smooth_slider_admin_head()
{
    global $smooth_slider;
    if (is_admin()) {
        // admin actions
        // Sliders page only
        if (isset($_GET['page']) && 'smooth-slider' == $_GET['page']) {
            $sliders = ss_get_sliders();
            ?>
		<script type="text/javascript">
            // <![CDATA[
        jQuery(document).ready(function() {
                jQuery(function() {
                    jQuery("#slider_tabs").tabs(); 
				<?php 
            foreach ($sliders as $slider) {
                ?>
                    jQuery("#sslider_sortable_<?php 
                echo $slider['slider_id'];
                ?>
").sortable();
                    jQuery("#sslider_sortable_<?php 
                echo $slider['slider_id'];
                ?>
").disableSelection();
			    <?php 
            }
            ?>
                });
        });
        function confirmRemove()
        {
            var agree=confirm("This will remove selected Posts/Pages from Slider.");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmRemoveAll()
        {
            var agree=confirm("Remove all Posts/Pages from Smooth Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmSliderDelete()
        {
            var agree=confirm("Delete this Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function slider_checkform ( form )
        {
          if (form.new_slider_name.value == "") {
            alert( "Please enter the New Slider name." );
            form.new_slider_name.focus();
            return false ;
          }
          return true ;
        }
        </script>
        <style type="text/css">
        /************************************************
        *	ui-tabs  									*
        ************************************************/
        .ui-tabs { padding: .2em; zoom: 1; }
        .ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
        .ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0;  background-color:#B9B9B9;}
        .ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; color:#FFFFFF;}
        .ui-tabs .ui-tabs-nav li.ui-tabs-selected { border-bottom-width: 0; background-color:#ABD37E;}
        .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; color:#FFF;}
        .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
        .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
        .ui-tabs .ui-tabs-hide { display: none !important; }
        /*tabs complete*/
        #divFeedityWidget span[style] {
                display:none !important;
        }
        div#smooth_sldr_donations a{
           color:#366C94 !important;
           text-decoration:none;
        }
        div#smooth_sldr_donations a:hover{
           text-decoration:underline;
        }
        #sldr_message {background-color:#FEF7DA;clear:both;width:72%;}
        #sldr_close {float:right;} 
        </style>
<?php 
        }
        //Sliders page only
        // Settings page only
        if (isset($_GET['page']) && 'smooth-slider-settings' == $_GET['page']) {
            wp_print_scripts('farbtastic');
            wp_print_styles('farbtastic');
            ?>
<script type="text/javascript">
	// <![CDATA[
jQuery(document).ready(function() {
		jQuery('#colorbox_1').farbtastic('#color_value_1');
		jQuery('#color_picker_1').click(function () {
           if (jQuery('#colorbox_1').css('display') == "block") {
		      jQuery('#colorbox_1').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_1').fadeIn("slow"); }
        });
		var colorpick_1 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_1 == true) {
    			return; }
				jQuery('#colorbox_1').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_1 = false;
		});
//for second color box
		jQuery('#colorbox_2').farbtastic('#color_value_2');
		jQuery('#color_picker_2').click(function () {
           if (jQuery('#colorbox_2').css('display') == "block") {
		      jQuery('#colorbox_2').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_2').fadeIn("slow"); }
        });
		var colorpick_2 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_2 == true) {
    			return; }
				jQuery('#colorbox_2').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_2 = false;
		});
//for third color box
		jQuery('#colorbox_3').farbtastic('#color_value_3');
		jQuery('#color_picker_3').click(function () {
           if (jQuery('#colorbox_3').css('display') == "block") {
		      jQuery('#colorbox_3').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_3').fadeIn("slow"); }
        });
		var colorpick_3 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_3 == true) {
    			return; }
				jQuery('#colorbox_3').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_3 = false;
		});
//for fourth color box
		jQuery('#colorbox_4').farbtastic('#color_value_4');
		jQuery('#color_picker_4').click(function () {
           if (jQuery('#colorbox_4').css('display') == "block") {
		      jQuery('#colorbox_4').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_4').fadeIn("slow"); }
        });
		var colorpick_4 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_4 == true) {
    			return; }
				jQuery('#colorbox_4').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_4 = false;
		});
//for fifth color box
		jQuery('#colorbox_5').farbtastic('#color_value_5');
		jQuery('#color_picker_5').click(function () {
           if (jQuery('#colorbox_5').css('display') == "block") {
		      jQuery('#colorbox_5').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_5').fadeIn("slow"); }
        });
		var colorpick_5 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_5 == true) {
    			return; }
				jQuery('#colorbox_5').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_5 = false;
		});
//for sixth color box
		jQuery('#colorbox_6').farbtastic('#color_value_6');
		jQuery('#color_picker_6').click(function () {
           if (jQuery('#colorbox_6').css('display') == "block") {
		      jQuery('#colorbox_6').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_6').fadeIn("slow"); }
        });
		var colorpick_6 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_6 == true) {
    			return; }
				jQuery('#colorbox_6').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_6 = false;
		});
		jQuery('#sldr_close').click(function () {
			jQuery('#sldr_message').fadeOut("slow");
		});
});
</script>
<style type="text/css">
.color-picker-wrap {
		position: absolute;
 		display: none; 
		background: #fff;
		border: 3px solid #ccc;
		padding: 3px;
		z-index: 1000;
	}
#divFeedityWidget span[style] {
        display:none !important;
}
div#smooth_sldr_donations a{
   color:#366C94 !important;
   text-decoration:none;
}
div#smooth_sldr_donations a:hover{
   text-decoration:underline;
}
#sldr_message {background-color:#FEF7DA;clear:both;width:72%;}
#sldr_close {float:right;} 
</style>
<style type="text/css" media="screen">#smooth_sldr{width:<?php 
            echo $smooth_slider['width'];
            ?>
px;height:<?php 
            echo $smooth_slider['height'];
            ?>
px;background-color:<?php 
            if ($smooth_slider['bg'] == '1') {
                echo "transparent";
            } else {
                echo $smooth_slider['bg_color'];
            }
            ?>
;border:<?php 
            echo $smooth_slider['border'];
            ?>
px solid <?php 
            echo $smooth_slider['brcolor'];
            ?>
;}#smooth_sldr_items{padding:10px <?php 
            if ($smooth_slider['prev_next'] == 1) {
                echo "18";
            } else {
                echo "12";
            }
            ?>
px 0px <?php 
            if ($smooth_slider['prev_next'] == 1) {
                echo "26";
            } else {
                echo "12";
            }
            ?>
px;}#smooth_sliderc{width:<?php 
            if ($smooth_slider['prev_next'] == 1) {
                echo $smooth_slider['width'] - 44;
            } else {
                echo $smooth_slider['width'] - 24;
            }
            ?>
px;height:<?php 
            if ($smooth_slider['goto_slide'] == "1") {
                $nav_size = $smooth_slider['content_fsize'];
            } elseif ($smooth_slider['goto_slide'] == "2") {
                $nav_size = $smooth_slider['navimg_ht'];
            } else {
                $nav_size = 10;
            }
            $sldr_title = $smooth_slider['title_text'];
            if (!empty($sldr_title)) {
                $extra_height = $smooth_slider['title_fsize'] + $nav_size + 5 + 18;
            } else {
                $extra_height = $nav_size + 5 + 5 + 18;
            }
            echo $smooth_slider['height'] - $extra_height;
            ?>
px;}.smooth_slideri{width:<?php 
            if ($smooth_slider['prev_next'] == 1) {
                echo $smooth_slider['width'] - 54;
            } else {
                echo $smooth_slider['width'] - 24;
            }
            ?>
px;height:<?php 
            if ($smooth_slider['goto_slide'] == "1") {
                $nav_size = $smooth_slider['content_fsize'];
            } elseif ($smooth_slider['goto_slide'] == "2") {
                $nav_size = $smooth_slider['navimg_ht'];
            } else {
                $nav_size = 10;
            }
            $sldr_title = $smooth_slider['title_text'];
            if (!empty($sldr_title)) {
                $extra_height = $smooth_slider['title_fsize'] + $nav_size + 5 + 18;
            } else {
                $extra_height = $nav_size + 5 + 5 + 18;
            }
            echo $smooth_slider['height'] - $extra_height;
            ?>
px;}.sldr_title{font-family:<?php 
            echo $smooth_slider['title_font'];
            ?>
, Arial, Helvetica, sans-serif;font-size:<?php 
            echo $smooth_slider['title_fsize'];
            ?>
px;font-weight:<?php 
            if ($smooth_slider['title_fstyle'] == "bold" or $smooth_slider['title_fstyle'] == "bold italic") {
                echo "bold";
            } else {
                echo "normal";
            }
            ?>
;font-style:<?php 
            if ($smooth_slider['title_fstyle'] == "italic" or $smooth_slider['title_fstyle'] == "bold italic") {
                echo "italic";
            } else {
                echo "normal";
            }
            ?>
;color:<?php 
            echo $smooth_slider['title_fcolor'];
            ?>
;}#smooth_sldr_body h2{line-height:<?php 
            echo $smooth_slider['ptitle_fsize'] + 3;
            ?>
px;font-family:<?php 
            echo $smooth_slider['ptitle_font'];
            ?>
, Arial, Helvetica, sans-serif;font-size:<?php 
            echo $smooth_slider['ptitle_fsize'];
            ?>
px;font-weight:<?php 
            if ($smooth_slider['ptitle_fstyle'] == "bold" or $smooth_slider['ptitle_fstyle'] == "bold italic") {
                echo "bold";
            } else {
                echo "normal";
            }
            ?>
;font-style:<?php 
            if ($smooth_slider['ptitle_fstyle'] == "italic" or $smooth_slider['ptitle_fstyle'] == "bold italic") {
                echo "italic";
            } else {
                echo "normal";
            }
            ?>
;color:<?php 
            echo $smooth_slider['ptitle_fcolor'];
            ?>
;margin:<?php 
            $sldr_title = $smooth_slider['title_text'];
            if (!empty($sldr_title)) {
                echo "10";
            } else {
                echo "0";
            }
            ?>
px 0 5px 0;}#smooth_sldr_body h2 a{color:<?php 
            echo $smooth_slider['ptitle_fcolor'];
            ?>
;}#smooth_sldr_body span{font-family:<?php 
            echo $smooth_slider['content_font'];
            ?>
, Arial, Helvetica, sans-serif;font-size:<?php 
            echo $smooth_slider['content_fsize'];
            ?>
px;font-weight:<?php 
            if ($smooth_slider['content_fstyle'] == "bold" or $smooth_slider['content_fstyle'] == "bold italic") {
                echo "bold";
            } else {
                echo "normal";
            }
            ?>
;font-style:<?php 
            if ($smooth_slider['content_fstyle'] == "italic" or $smooth_slider['content_fstyle'] == "bold italic") {
                echo "italic";
            } else {
                echo "normal";
            }
            ?>
;color:<?php 
            echo $smooth_slider['content_fcolor'];
            ?>
;}.smooth_slider_thumbnail{float:<?php 
            echo $smooth_slider['img_align'];
            ?>
;margin:<?php 
            $sldr_title = $smooth_slider['title_text'];
            if (!empty($sldr_title)) {
                echo "10";
            } else {
                echo "0";
            }
            ?>
px <?php 
            if ($smooth_slider['img_align'] == "left") {
                echo "5";
            } else {
                echo "0";
            }
            ?>
px 0 <?php 
            if ($smooth_slider['img_align'] == "right") {
                echo "5";
            } else {
                echo "0";
            }
            ?>
px;max-height:<?php 
            echo $smooth_slider['img_height'];
            ?>
px;border:<?php 
            echo $smooth_slider['img_border'];
            ?>
px solid <?php 
            echo $smooth_slider['img_brcolor'];
            ?>
;}#smooth_sldr_body p.more a{color:<?php 
            echo $smooth_slider['ptitle_fcolor'];
            ?>
;font-family:<?php 
            echo $smooth_slider['content_font'];
            ?>
, Arial, Helvetica, sans-serif;font-size:<?php 
            echo $smooth_slider['content_fsize'];
            ?>
px;}#smooth_sliderc_nav li{border:1px solid <?php 
            echo $smooth_slider['content_fcolor'];
            ?>
;font-size:<?php 
            echo $smooth_slider['content_fsize'];
            ?>
px;font-family:<?php 
            echo $smooth_slider['content_font'];
            ?>
, Arial, Helvetica, sans-serif;}#smooth_sliderc_nav li a{color:<?php 
            echo $smooth_slider['ptitle_fcolor'];
            ?>
;}.sldrlink{padding-right:<?php 
            if ($smooth_slider['prev_next'] == 1) {
                echo "40";
            } else {
                echo "25";
            }
            ?>
px;}.sldrlink a{color:<?php 
            echo $smooth_slider['content_fcolor'];
            ?>
;}</style>
<?php 
        }
        //for smooth slider option page
    }
    //only for admin
}
function smooth_slider_create_multiple_sliders()
{
    global $smooth_slider;
    ?>


<div class="wrap" style="clear:both;">

<h2 style="float:left;">Sliders Created</h2>
<form  style="float:left;" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="8046056">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

<?php 
    if ($_POST['remove_posts_slider']) {
        if ($_POST['slider_posts']) {
            global $wpdb, $table_prefix;
            $table_name = $table_prefix . SLIDER_TABLE;
            $current_slider = $_POST['current_slider_id'];
            foreach ($_POST['slider_posts'] as $post_id => $val) {
                $sql = "DELETE FROM {$table_name} WHERE post_id = '{$post_id}' AND slider_id = '{$current_slider}' LIMIT 1";
                $wpdb->query($sql);
            }
        }
        if ($_POST['remove_all'] == "Remove All at Once") {
            global $wpdb, $table_prefix;
            $table_name = $table_prefix . SLIDER_TABLE;
            $current_slider = $_POST['current_slider_id'];
            if (is_slider_on_slider_table($current_slider)) {
                $sql = "DELETE FROM {$table_name} WHERE slider_id = '{$current_slider}';";
                $wpdb->query($sql);
            }
        }
        if ($_POST['remove_all'] == 'Delete Slider') {
            $slider_id = $_POST['current_slider_id'];
            global $wpdb, $table_prefix;
            $slider_table = $table_prefix . SLIDER_TABLE;
            $slider_meta = $table_prefix . SLIDER_META;
            $slider_postmeta = $table_prefix . SLIDER_POST_META;
            if (is_slider_on_slider_table($slider_id)) {
                $sql = "DELETE FROM {$slider_table} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
            if (is_slider_on_meta_table($slider_id)) {
                $sql = "DELETE FROM {$slider_meta} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
            if (is_slider_on_postmeta_table($slider_id)) {
                $sql = "DELETE FROM {$slider_postmeta} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
        }
    }
    if ($_POST['create_new_slider']) {
        $slider_name = $_POST['new_slider_name'];
        global $wpdb, $table_prefix;
        $slider_meta = $table_prefix . SLIDER_META;
        $sql = "INSERT INTO {$slider_meta} (slider_name) VALUES('{$slider_name}');";
        $result = $wpdb->query($sql);
    }
    if ($_POST['reorder_posts_slider']) {
        $i = 1;
        global $wpdb, $table_prefix;
        $table_name = $table_prefix . SLIDER_TABLE;
        foreach ($_POST['order'] as $slide_order) {
            $slide_order = intval($slide_order);
            $sql = 'UPDATE ' . $table_name . ' SET slide_order=' . $i . ' WHERE post_id=' . $slide_order . '';
            $wpdb->query($sql);
            $i++;
        }
    }
    ?>

<div style="clear:both"></div>
<?php 
    $url = sslider_admin_url(array('page' => 'smooth-slider-settings'));
    ?>

<a href="<?php 
    echo $url;
    ?>
" title="Settings Page for Smooth Slider where you can change the color, font etc. for the sliders">Go to Smooth Slider Settings page</a>
<?php 
    $sliders = ss_get_sliders();
    ?>


<div id="slider_tabs">
        <ul class="ui-tabs">
        <?php 
    foreach ($sliders as $slider) {
        ?>

            <li><a href="#tabs-<?php 
        echo $slider['slider_id'];
        ?>
"><?php 
        echo $slider['slider_name'];
        ?>
</a></li>
        <?php 
    }
    ?>

        <?php 
    if ($smooth_slider['multiple_sliders'] == '1') {
        ?>

            <li><a href="#new_slider">Create New Slider</a></li>
        <?php 
    }
    ?>

        </ul>

<?php 
    foreach ($sliders as $slider) {
        ?>

<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
">
<form action="" method="post">
<?php 
        settings_fields('smooth-slider-group');
        ?>


<input type="hidden" name="remove_posts_slider" value="1" />
<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
">
<h3>Posts/Pages Added To <?php 
        echo $slider['slider_name'];
        ?>
(Slider ID = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
<p><em>Check the Post/Page and Press "Remove Selected" to remove them From <?php 
        echo $slider['slider_name'];
        ?>
. Press "Remove All at Once" to remove all the posts from the <?php 
        echo $slider['slider_name'];
        ?>
.</em></p>

    <table class="widefat">
    <thead><tr><th>Post/Page Title</th><th>Author</th><th>Post Date</th><th>Remove Post</th></tr></thead><tbody>

<?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>

	
    <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
    
<?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (in_array($post->ID, $slider_arr)) {
                $count++;
                $sslider_author = get_userdata($post->post_author);
                $sslider_author_dname = $sslider_author->display_name;
                echo '<tr' . ($count % 2 ? ' class="alternate"' : '') . '><td><strong>' . $post->post_title . '</strong><a href="' . get_edit_post_link($post->ID, $context = 'display') . '" target="_blank"> (Edit)</a> <a href="' . get_permalink($post->ID) . '" target="_blank"> (View) </a></td><td>By ' . $sslider_author_dname . '</td><td>' . date('l, F j. Y', strtotime($post->post_date)) . '</td><td><input type="checkbox" name="slider_posts[' . $post->ID . ']" value="1" /></td></tr>';
            }
        }
        if ($count == 0) {
            echo '<tr><td colspan="4">No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page</td></tr>';
        }
        echo '</tbody><tfoot><tr><th>Post/Page Title</th><th>Author</th><th>Post Date</th><th>Remove Post</th></tr></tfoot></table>';
        echo '<div class="submit">';
        if ($count) {
            echo '<input type="submit" value="Remove Selected" onclick="return confirmRemove()" /><input type="submit" name="remove_all" value="Remove All at Once" onclick="return confirmRemoveAll()" />';
        }
        if ($slider_id != '1') {
            echo '<input type="submit" value="Delete Slider" name="remove_all" onclick="return confirmSliderDelete()" />';
        }
        echo '</div>';
        ?>
    
    </tbody></table>
 </form>
 
 
 <form action="" method="post">
    <input type="hidden" name="reorder_posts_slider" value="1" />
    <h3>Reorder the Posts/Pages Added To <?php 
        echo $slider['slider_name'];
        ?>
(Slider ID = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
    <p><em>Click on and drag the post/page title to a new spot within the list, and the other items will adjust to fit. </em></p>
    <ul id="sslider_sortable_<?php 
        echo $slider['slider_id'];
        ?>
" style="color:#326078">    
    <?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>

        
        <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
        
    <?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (in_array($post->ID, $slider_arr)) {
                $count++;
                $sslider_author = get_userdata($post->post_author);
                $sslider_author_dname = $sslider_author->display_name;
                echo '<li id="' . $post->ID . '"><input type="hidden" name="order[]" value="' . $post->ID . '" /><strong> &raquo; &nbsp; ' . $post->post_title . '</strong></li>';
            }
        }
        if ($count == 0) {
            echo '<li>No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page</li>';
        }
        echo '</ul><div class="submit">';
        if ($count) {
            echo '<input type="submit" value="Save the order"  />';
        }
        echo '</div>';
        ?>
    
       </div>       
  </form>
</div> 
 
<?php 
    }
    ?>


<?php 
    if ($smooth_slider['multiple_sliders'] == '1') {
        ?>

    <div id="new_slider">
    <form action="" method="post" onsubmit="return slider_checkform(this);" >
    <h3>Enter New Slider Name</h3>
    <input type="hidden" name="create_new_slider" value="1" />
    
    <input name="new_slider_name" class="regular-text code" value="" style="clear:both;" />
    
    <div class="submit"><input type="submit" value="Create New" name="create_new" /></div>
    
    </form>
    </div>
<?php 
    }
    ?>
 
</div>

<div id="poststuff" class="metabox-holder has-right-sidebar"> 
   <div id="side-info-column" class="inner-sidebar" style="float:left;"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span>About this Plugin:</span></h3> 
			  <div class="inside">
                <ul>
                <li><a href="http://www.clickonf5.org/smooth-slider" title="Smooth Slider Homepage" >Plugin Homepage</a></li>
                <li><a href="http://www.clickonf5.org" title="Visit Internet Techies" >Plugin Parent Site</a></li>
                <li><a href="http://www.clickonf5.org/phpbb/smooth-slider-f12/" title="Support Forum for Smooth Slider" >Support Forum</a></li>
                <li><a href="http://www.clickonf5.org/about/tejaswini" title="Smooth Slider Author Page" >About the Author</a></li>
                <li><a href="http://www.clickonf5.org/go/smooth-slider/" title="Donate if you liked the plugin and support in enhancing Smooth Slider and creating new plugins" >Donate with Paypal</a></li>
                </ul> 
              </div> 
			</div> 
     </div>
     
        <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span></span>Our Facebook Fan Page</h3> 
			  <div class="inside">
                <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB"></script><script type="text/javascript">FB.init("2aeebe9fb014836a6810ec4426d26f7e");</script><fb:fan profile_id="127760528543" stream="" connections="8" width="270" height="250"></fb:fan>
              </div> 
			</div> 
     </div>

     <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span>Credits:</span></h3> 
			  <div class="inside">
                <ul>
                <li><a href="http://www.dynamicdrive.com" title="Step Carousel jQuery plugin by Dynamic Drive" >Step Carousel Viewer</a></li>
                <li><a href="http://www.bioxd.com/featureme" title="FeatureMe Wordpress Plugin by Oscar Alcalá" >FeatureMe Wordpress Plugin</a></li>
                <li><a href="http://acko.net/dev/farbtastic" title="Farbtastic Color Picker by Steven Wittens" >Farbtastic Color Picker</a></li>
                <li><a href="http://code.google.com/p/timthumb/" title="TimThumb script by Tim McDaniels and Darren Hoyt with tweaks by Ben Gillbanks" >TimThumb script</a></li>
                <li><a href="http://jquery.com/" title="jQuery JavaScript Library - John Resig" >jQuery JavaScript Library</a></li>
                </ul> 
              </div> 
			</div> 
     </div>
     
          <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span>Support &amp; Donations</span></h3> 
			  <div class="inside">
                <div id="smooth_sldr_donations">
                 <ul>
                    <li><a href="http://malamedconsulting.com/" target="_blank">Connie Malamed - $25</a></li>
                    <li><a href="http://www.jacobwiechman.com/wordpress/" target="_blank">Jacob Wiechman - $30</a></li>
                    <li><a href="http://www.whatsthebigidea.com/" target="_blank">WhatsTheBigIdea.com,Inc. - $20</a></li>
                    <li><a href="http://uwaterloo.ca/" target="_blank">Trevor Bain - $25</a></li>
                    <li><a href="http://thule-italia.com/wordpress/" target="_blank">Marco Linguardo - $10</a></li>
                    <li><a href="http://eircom.net" target="_blank">Paul Goode - $5</a></li>
                    <li><a href="http://www.windowsobserver.com/" target="_blank">Richard Hay - $10</a></li>
                    <li><a href="http://www.maximotimes.com/maximo/" target="_blank">Chonbury Neth - $10</a></li>
                    <li><a href="http://www.yobeat.com/" target="_blank">Brooke Geery - $10</a></li>
                 </ul>
					<script language="JavaScript" type="text/javascript">
                    <!--
                        // Customize the widget by editing the fields below
                        // All fields are required
                    
                        // Your Feedity RSS feed URL
                        feedity_widget_feed = "http://feedity.com/rss.aspx/clickonf5-org/UlVTUldR";
                    
                        // Number of items to display in the widget
                        feedity_widget_numberofitems = "10";
                    
                        // Show feed item published date (values: yes or no)
                        feedity_widget_showdate = "no";
                    
                        // Widget box width (in px, pt, em, or %)
                        feedity_widget_width = "220px";
                    
                        // Widget background color in hex or by name (eg: #ffffff or white)
                        feedity_widget_backcolor = "#ffffff";
                    
                        // Widget font/link color in hex or by name (eg: #000000 or black)
                        feedity_widget_fontcolor = "#000000";
                    //-->
                    </script>
                    <script language="JavaScript" type="text/javascript" src="http://feedity.com/js/widget.js"></script>
                </div>
              </div> 
			</div> 
     </div>  
     <div style="clear:left;"></div>
 </div> <!--end of poststuff --> 




</div> <!--end of float wrap -->
<?php 
}
function add_to_slider_checkbox() {
	global $post, $smooth_slider;
	if (current_user_can( $smooth_slider['user_level'] )) {
		$extra = "";
		
		$post_id = $post->ID;
		
		if(isset($post->ID)) {
			$post_id = $post->ID;
			if(is_post_on_any_slider($post_id)) { $extra = 'checked="checked"'; }
		} 
		
		$post_slider_arr = array();
		
		$post_sliders = ss_get_post_sliders($post_id);
		if($post_sliders) {
			foreach($post_sliders as $post_slider){
			   $post_slider_arr[] = $post_slider['slider_id'];
			}
		}
		
		$sliders = ss_get_sliders();
?>
		<div id="slider_checkbox">
				<input type="checkbox" class="sldr_post" name="slider" value="slider" <?php echo $extra;?> />
				<label for="slider"><?php _e('Add this post/page to','smooth-slider'); ?> </label>
				<select name="slider_name[]" multiple="multiple" size="2" style="height:4em;">
                <?php foreach ($sliders as $slider) { ?>
                  <option value="<?php echo $slider['slider_id'];?>" <?php if(in_array($slider['slider_id'],$post_slider_arr)){echo 'selected';} ?>><?php echo $slider['slider_name'];?></option>
                <?php } ?>
                </select>
                
         <?php if($smooth_slider['multiple_sliders'] == '1') {?>
                <br />
                <br />
                <br />
                
                <input type="checkbox" class="sldr_post" name="display_slider" value="1" <?php if(ss_slider_on_this_post($post_id)){echo "checked";}?> />
				<label for="display_slider"><?php _e('Display ','smooth-slider'); ?>
				<select name="display_slider_name">
                <?php foreach ($sliders as $slider) { ?>
                  <option value="<?php echo $slider['slider_id'];?>" <?php if(ss_post_on_slider($post_id,$slider['slider_id'])){echo 'selected';} ?>><?php echo $slider['slider_name'];?></option>
                <?php } ?>
                </select> <?php _e('on this Post/Page (you need to add the Smooth Slider template tag manually on your page.php/single.php or whatever page template file)','smooth-slider'); ?></label>
          <?php } ?>
          
				<input type="hidden" name="sldr-verify" id="sldr-verify" value="<?php echo wp_create_nonce('SmoothSlider');?>" />
	    </div>
        <br />
        <div>
        <?php
        $slider_style = get_post_meta($post->ID,'_smooth_slider_style',true);
        ?>
         <select name="_smooth_slider_style" >
			<?php 
            $directory = SMOOTH_SLIDER_CSS_DIR;
            if ($handle = opendir($directory)) {
                while (false !== ($file = readdir($handle))) { 
                 if($file != '.' and $file != '..') { ?>
                  <option value="<?php echo $file;?>" <?php if (($slider_style == $file) or (empty($slider_style) and $smooth_slider['stylesheet'] == $file)){ echo "selected";}?> ><?php echo $file;?></option>
             <?php  } }
                closedir($handle);
            }
            ?>
        </select> <label for="_smooth_slider_style"><?php _e('Stylesheet to use if slider is displayed on this Post/Page','smooth-slider'); ?> </label><br /> <br />
        
  <?php         $thumbnail_key = $smooth_slider['img_pick'][1];
                $sslider_thumbnail= get_post_meta($post_id, $thumbnail_key, true); 
				$sslider_link= get_post_meta($post_id, 'slide_redirect_url', true);  
				$sslider_nolink=get_post_meta($post_id, 'sslider_nolink', true);
  ?>
                <label for="sslider_thumbnail"><?php _e('Custom Thumbnail Image(url)','smooth-slider'); ?>
                <input type="text" name="sslider_thumbnail" class="sslider_thumbnail" value="<?php echo $sslider_thumbnail;?>" size="75" />
                <br /> </label> <br /><br />
                <fieldset>
                <label for="sslider_link"><?php _e('Slide Link URL ','smooth-slider'); ?>
                <input type="text" name="sslider_link" class="sslider_link" value="<?php echo $sslider_link;?>" size="50" /><small><?php _e('If left empty, it will be by default linked to the permalink.','smooth-slider'); ?></small> </label><br />
                <label for="sslider_nolink"> 
                <input type="checkbox" name="sslider_nolink" class="sslider_nolink" value="1" <?php if($sslider_nolink=='1'){echo "checked";}?>  /> <?php _e('Do not link this slide to any page(url)','smooth-slider'); ?></label>
                 </fieldset>
                 </div>
        
<?php }
}
Example #9
0
function smooth_slider_create_multiple_sliders()
{
    global $smooth_slider;
    ?>
<div class="wrap smooth_sliders_create" id="smooth_sliders_create" style="clear:both;">
<h2 style="float:left;"><?php 
    _e('Sliders Created', 'smooth-slider');
    ?>
</h2>
<?php 
    if (isset($_POST['remove_posts_slider'])) {
        if (isset($_POST['slider_posts'])) {
            global $wpdb, $table_prefix;
            $table_name = $table_prefix . SLIDER_TABLE;
            $current_slider = $_POST['current_slider_id'];
            foreach ($_POST['slider_posts'] as $post_id => $val) {
                $sql = "DELETE FROM {$table_name} WHERE post_id = '{$post_id}' AND slider_id = '{$current_slider}' LIMIT 1";
                $wpdb->query($sql);
            }
        }
        if (isset($_POST['remove_all'])) {
            if ($_POST['remove_all'] == __('Remove All at Once', 'smooth-slider')) {
                global $wpdb, $table_prefix;
                $table_name = $table_prefix . SLIDER_TABLE;
                $current_slider = $_POST['current_slider_id'];
                if (is_slider_on_slider_table($current_slider)) {
                    $sql = "DELETE FROM {$table_name} WHERE slider_id = '{$current_slider}';";
                    $wpdb->query($sql);
                }
            }
        }
        if (isset($_POST['remove_all'])) {
            if ($_POST['remove_all'] == __('Delete Slider', 'smooth-slider')) {
                $slider_id = $_POST['current_slider_id'];
                global $wpdb, $table_prefix;
                $slider_table = $table_prefix . SLIDER_TABLE;
                $slider_meta = $table_prefix . SLIDER_META;
                $slider_postmeta = $table_prefix . SLIDER_POST_META;
                if (is_slider_on_slider_table($slider_id)) {
                    $sql = "DELETE FROM {$slider_table} WHERE slider_id = '{$slider_id}';";
                    $wpdb->query($sql);
                }
                if (is_slider_on_meta_table($slider_id)) {
                    $sql = "DELETE FROM {$slider_meta} WHERE slider_id = '{$slider_id}';";
                    $wpdb->query($sql);
                }
                if (is_slider_on_postmeta_table($slider_id)) {
                    $sql = "DELETE FROM {$slider_postmeta} WHERE slider_id = '{$slider_id}';";
                    $wpdb->query($sql);
                }
            }
        }
    }
    if (isset($_POST['create_new_slider'])) {
        $slider_name = $_POST['new_slider_name'];
        global $wpdb, $table_prefix;
        $slider_meta = $table_prefix . SLIDER_META;
        $sql = "INSERT INTO {$slider_meta} (slider_name) VALUES('{$slider_name}');";
        $result = $wpdb->query($sql);
    }
    if (isset($_POST['reorder_posts_slider'])) {
        $i = 1;
        global $wpdb, $table_prefix;
        $table_name = $table_prefix . SLIDER_TABLE;
        foreach ($_POST['order'] as $slide_order) {
            $slide_order = intval($slide_order);
            $sql = 'UPDATE ' . $table_name . ' SET slide_order=' . $i . ' WHERE post_id=' . $slide_order . '';
            $wpdb->query($sql);
            $i++;
        }
    }
    /*Added for rename slider-2.6-start*/
    if (isset($_POST['rename_slider']) and $_POST['rename_slider'] == __('Rename', 'smooth-slider')) {
        $slider_name = $_POST['rename_slider_to'];
        $slider_id = $_POST['current_slider_id'];
        if (!empty($slider_name)) {
            global $wpdb, $table_prefix;
            $slider_meta = $table_prefix . SLIDER_META;
            $sql = 'UPDATE ' . $slider_meta . ' SET slider_name="' . $slider_name . '" WHERE slider_id=' . $slider_id;
            $wpdb->query($sql);
        }
    }
    /*Added for rename slider-2.6-end*/
    /* Added for upload media save-2.6 */
    if (isset($_POST['addSave']) and $_POST['addSave'] == 'Save') {
        $images = isset($_POST['imgID']) ? $_POST['imgID'] : array();
        $slider_id = $_POST['current_slider_id'];
        $ids = array_reverse($images);
        global $wpdb, $table_prefix;
        foreach ($ids as $id) {
            $title = isset($_POST['title'][$id]) ? $_POST['title'][$id] : '';
            $desc = isset($_POST['desc'][$id]) ? $_POST['desc'][$id] : '';
            $link = isset($_POST['link'][$id]) ? $_POST['link'][$id] : '';
            $nolink = isset($_POST['nolink'][$id]) ? $_POST['nolink'][$id] : '';
            $attachment = array('ID' => $id, 'post_title' => $title, 'post_content' => $desc);
            wp_update_post($attachment);
            update_post_meta($id, 'smooth_slide_redirect_url', $link);
            update_post_meta($id, 'smooth_sslider_nolink', $nolink);
            if (!slider($id, $slider_id)) {
                $dt = date('Y-m-d H:i:s');
                $sql = "INSERT INTO " . $table_prefix . SLIDER_TABLE . " (post_id, date, slider_id) VALUES ('{$id}', '{$dt}', '{$slider_id}')";
                $wpdb->query($sql);
            }
        }
    }
    /*   upload media end 2.6 */
    ?>
<div style="clear:left"></div>
<?php 
    $url = sslider_admin_url(array('page' => 'smooth-slider-settings'));
    ?>
<a class="svorangebutton" href="<?php 
    echo $url;
    ?>
" title="<?php 
    _e('Settings Page for Smooth Slider where you can change the color, font etc. for the sliders', 'smooth-slider');
    ?>
"><?php 
    _e('Go to Smooth Slider Settings page', 'smooth-slider');
    ?>
</a>
<?php 
    $sliders = ss_get_sliders();
    ?>
<div style="clear:right"></div>
<div id="slider_tabs">
        <ul class="ui-tabs">
        <?php 
    foreach ($sliders as $slider) {
        ?>
            <li class="yellow"><a href="#tabs-<?php 
        echo $slider['slider_id'];
        ?>
"><?php 
        echo $slider['slider_name'];
        ?>
</a></li>
        <?php 
    }
    ?>
        <?php 
    if (isset($smooth_slider['multiple_sliders']) && $smooth_slider['multiple_sliders'] == '1') {
        ?>
            <li class="green"><a href="#new_slider"><?php 
        _e('Create New Slider', 'smooth-slider');
        ?>
</a></li>
        <?php 
    }
    ?>
        </ul>

<?php 
    foreach ($sliders as $slider) {
        ?>
<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
" style="width:56%;">
<strong>Quick Embed Shortcode:</strong>
<div class="admin_shortcode">
<pre style="padding: 10px 0;">[smoothslider id='<?php 
        echo $slider['slider_id'];
        ?>
']</pre>
</div>
<!-- Add bulk images start 2.6-->
<?php 
        if (!did_action('wp_enqueue_media')) {
            wp_enqueue_media();
        }
        wp_enqueue_script('media-uploader', smooth_slider_plugin_url('js/media-uploader.js'), array('jquery', 'iris'), SMOOTH_SLIDER_VER, false);
        ?>
	<h3 class="sub-heading" style="margin-left:0px;"><?php 
        _e('Add Images to', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
 (Slider ID = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>

	<div class="uploaded-images">
		<form method="post" class="addImgForm">
			<div style="clear:left;margin-top:20px;" class="image-uploader">
				<input type="submit" class="upload-button slider_images_upload" name="slider_images_upload" value="Upload" />
			</div>
			<input type="hidden" name="current_slider_id" value="<?php 
        echo $slider['slider_id'];
        ?>
" />
			<input type="hidden" name="active_tab" class="smooth_activetab" value="0" />
		</form>
	</div>
<!-- Add bulk images end 2.6-->
<form action="" method="post">
<?php 
        settings_fields('smooth-slider-group');
        ?>

<input type="hidden" name="remove_posts_slider" value="1" />
<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
">
<h3><?php 
        _e('Posts/Pages Added To', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        _e('(Slider ID', 'smooth-slider');
        ?>
 = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
<p><em><?php 
        _e('Check the Post/Page and Press "Remove Selected" to remove them From', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
. <?php 
        _e('Press "Remove All at Once" to remove all the posts from the', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
.</em></p>

    <table class="widefat">
    <thead class="blue"><tr><th><?php 
        _e('Post/Page Title', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Author', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Post Date', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Remove Post', 'smooth-slider');
        ?>
</th></tr></thead><tbody>

<?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>
	
    <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
    
<?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (isset($post) and isset($slider_arr)) {
                if (in_array($post->ID, $slider_arr)) {
                    $count++;
                    $sslider_author = get_userdata($post->post_author);
                    $sslider_author_dname = $sslider_author->display_name;
                    echo '<tr' . ($count % 2 ? ' class="alternate"' : '') . '><td><strong>' . $post->post_title . '</strong><a href="' . get_edit_post_link($post->ID, $context = 'display') . '" target="_blank"> ' . __('(Edit)', 'smooth-slider') . '</a> <a href="' . get_permalink($post->ID) . '" target="_blank"> ' . __('(View)', 'smooth-slider') . ' </a></td><td>By ' . $sslider_author_dname . '</td><td>' . date('l, F j. Y', strtotime($post->post_date)) . '</td><td><input type="checkbox" name="slider_posts[' . $post->ID . ']" value="1" /></td></tr>';
                }
            }
        }
        if ($count == 0) {
            echo '<tr><td colspan="4">' . __('No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider') . '</td></tr>';
        }
        echo '</tbody><tfoot class="blue"><tr><th>' . __('Post/Page Title', 'smooth-slider') . '</th><th>' . __('Author', 'smooth-slider') . '</th><th>' . __('Post Date', 'smooth-slider') . '</th><th>' . __('Remove Post', 'smooth-slider') . '</th></tr></tfoot></table>';
        echo '<div class="submit">';
        if ($count) {
            echo '<input type="submit" value="' . __('Remove Selected', 'smooth-slider') . '" onclick="return confirmRemove()" /><input type="submit" name="remove_all" value="' . __('Remove All at Once', 'smooth-slider') . '" onclick="return confirmRemoveAll()" />';
        }
        if ($slider_id != '1') {
            echo '<input type="submit" value="' . __('Delete Slider', 'smooth-slider') . '" name="remove_all" onclick="return confirmSliderDelete()" />';
        }
        echo '</div>';
        ?>
    
    </tbody></table>
	<input type="hidden" name="active_tab" class="smooth_activetab" value="0" />
 </form>
 
 
 <form action="" method="post">
    <input type="hidden" name="reorder_posts_slider" value="1" />
    <h3 class="sub-heading" style="margin-left:0px;"><?php 
        _e('Reorder the Posts/Pages Added To', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
(Slider ID = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
    <p><em><?php 
        _e('Click on and drag the post/page title to a new spot within the list, and the other items will adjust to fit.', 'smooth-slider');
        ?>
 </em></p>
    <ul id="sslider_sortable_<?php 
        echo $slider['slider_id'];
        ?>
" style="color:#326078;overflow: auto;">    
    <?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>
        
        <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
        
    <?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (isset($post) and isset($slider_arr)) {
                if (in_array($post->ID, $slider_arr)) {
                    $count++;
                    $sslider_author = get_userdata($post->post_author);
                    $sslider_author_dname = $sslider_author->display_name;
                    echo '<li id="' . $post->ID . '" class="reorder"><input type="hidden" name="order[]" value="' . $post->ID . '" /><strong> &raquo; &nbsp; ' . $post->post_title . '</strong></li>';
                }
            }
        }
        if ($count == 0) {
            echo '<li>' . __('No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider') . '</li>';
        }
        echo '</ul><div class="submit">';
        if ($count) {
            echo '<input type="submit" value="Save the order"  />';
        }
        echo '</div>';
        ?>
    
       </div>   
	<input type="hidden" name="active_tab" class="smooth_activetab" value="0" />    
  </form>
<!-- Added for rename slider -start -->
	 <h3 class="sub-heading" style="margin:40px 0px 5px 0;"><?php 
        _e('Rename Slider', 'smooth-slider');
        ?>
</h3>
	<form action="" method="post"> 
		<table class="form-table">
			<tr valign="top">
			<th scope="row"><?php 
        _e('Rename Slider to', 'smooth-slider');
        ?>
</th>
			<td><input type="text" name="rename_slider_to" class="regular-text" value="<?php 
        echo $slider['slider_name'];
        ?>
" /></td>
			</tr>
		</table>
		<input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
		<input type="submit" value="<?php 
        _e('Rename', 'smooth-slider');
        ?>
"  name="<?php 
        _e('rename_slider', 'smooth-slider');
        ?>
" />
	
		<input type="hidden" name="active_tab" class="smooth_activetab" value="0" />
	
	</form>
<!-- Added for rename slider -end -->	
</div> 
 
<?php 
    }
    ?>

<?php 
    if (isset($smooth_slider['multiple_sliders']) && $smooth_slider['multiple_sliders'] == '1') {
        ?>
    <div id="new_slider" style="width:56%;">
    <form action="" method="post" onsubmit="return slider_checkform(this);" >
    <h3><?php 
        _e('Enter New Slider Name', 'smooth-slider');
        ?>
</h3>
    <input type="hidden" name="create_new_slider" value="1" />
    
    <input name="new_slider_name" class="regular-text code" value="" style="clear:both;" />
    
    <div class="submit"><input type="submit" value="<?php 
        _e('Create New', 'smooth-slider');
        ?>
" name="create_new" /></div>
    
    </form>
    </div>
<?php 
    }
    ?>
 

</div>


<div id="poststuff" class="metabox-holder has-right-sidebar" style="float:left;width:25%;max-width:300px;margin-top:20px;"> 
		
		<div class="postbox"> 
		<h3 class="hndle"><span><?php 
    _e('About this Plugin:', 'smooth-slider');
    ?>
</span></h3> 
		<div class="inside">
                <ul>
                <li><a href="http://slidervilla.com/smooth-slider" title="<?php 
    _e('Smooth Slider Homepage', 'smooth-slider');
    ?>
" ><?php 
    _e('Plugin Homepage', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://wordpress.org/support/plugin/smooth-slider" title="<?php 
    _e('Support Forum for Smooth Slider', 'smooth-slider');
    ?>
" ><?php 
    _e('Support Forum', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://slidervilla.com/about-us/" title="<?php 
    _e('Smooth Slider Author Page', 'smooth-slider');
    ?>
" ><?php 
    _e('About the Author', 'smooth-slider');
    ?>
</a></li>
		<li><a href="http://www.clickonf5.org/go/smooth-slider/" title="<?php 
    _e('Donate if you liked the plugin and support in enhancing Smooth Slider and creating new plugins', 'smooth-slider');
    ?>
" ><?php 
    _e('Donate with Paypal', 'smooth-slider');
    ?>
</a></li>
		<li><strong>Current Version: <?php 
    echo SMOOTH_SLIDER_VER;
    ?>
</strong></li>
                </ul> 
            	</div> 
		</div>
                      
		<div class="postbox" style="margin:10px 0;"> 
				
     		  <div class="inside">
				<div style="margin:10px auto;">
							<a href="http://slidervilla.com" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/banner-premium.png');
    ?>
" alt="Premium WordPress Slider Plugins" width="100%" /></a>
				</div>
				</div></div>
     
     <div style="clear:left;"></div>
 </div> <!--end of poststuff --> 


</div> <!--end of float wrap -->
<?php 
}
Example #10
0
function smooth_slider_admin_head() {
global $smooth_slider;
if ( is_admin() ){ // admin actions
   
  // Sliders page only
    if ( isset($_GET['page']) && 'smooth-slider-admin' == $_GET['page'] ) {
	  $sliders = ss_get_sliders(); 
	?>
		<script type="text/javascript">
            // <![CDATA[
        jQuery(document).ready(function() {
                    jQuery("#slider_tabs").tabs();
				<?php foreach($sliders as $slider){?>
                    jQuery("#sslider_sortable_<?php echo $slider['slider_id'];?>").sortable();
                    jQuery("#sslider_sortable_<?php echo $slider['slider_id'];?>").disableSelection();
			    <?php } ?>
        });
        function confirmRemove()
        {
            var agree=confirm("This will remove selected Posts/Pages from Slider.");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmRemoveAll()
        {
            var agree=confirm("Remove all Posts/Pages from Smooth Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function confirmSliderDelete()
        {
            var agree=confirm("Delete this Slider??");
            if (agree)
            return true ;
            else
            return false ;
        }
        function slider_checkform ( form )
        {
          if (form.new_slider_name.value == "") {
            alert( "Please enter the New Slider name." );
            form.new_slider_name.focus();
            return false ;
          }
          return true ;
        }
        </script>
<?php
   } //Sliders page only
   
   // Settings page only
  if ( isset($_GET['page']) && 'smooth-slider-settings' == $_GET['page']  ) { ?>
		<script type="text/javascript">
            // <![CDATA[
        jQuery(document).ready(function() {
                    jQuery("#slider_tabs").tabs();
        });
		</script>
		<?php wp_print_scripts( 'farbtastic' );
		wp_print_styles( 'farbtastic' );
?>
<script type="text/javascript">
	// <![CDATA[
jQuery(document).ready(function() {
		jQuery('#colorbox_1').farbtastic('#color_value_1');
		jQuery('#color_picker_1').click(function () {
           if (jQuery('#colorbox_1').css('display') == "block") {
		      jQuery('#colorbox_1').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_1').fadeIn("slow"); }
        });
		var colorpick_1 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_1 == true) {
    			return; }
				jQuery('#colorbox_1').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_1 = false;
		});
//for second color box
		jQuery('#colorbox_2').farbtastic('#color_value_2');
		jQuery('#color_picker_2').click(function () {
           if (jQuery('#colorbox_2').css('display') == "block") {
		      jQuery('#colorbox_2').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_2').fadeIn("slow"); }
        });
		var colorpick_2 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_2 == true) {
    			return; }
				jQuery('#colorbox_2').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_2 = false;
		});
//for third color box
		jQuery('#colorbox_3').farbtastic('#color_value_3');
		jQuery('#color_picker_3').click(function () {
           if (jQuery('#colorbox_3').css('display') == "block") {
		      jQuery('#colorbox_3').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_3').fadeIn("slow"); }
        });
		var colorpick_3 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_3 == true) {
    			return; }
				jQuery('#colorbox_3').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_3 = false;
		});
//for fourth color box
		jQuery('#colorbox_4').farbtastic('#color_value_4');
		jQuery('#color_picker_4').click(function () {
           if (jQuery('#colorbox_4').css('display') == "block") {
		      jQuery('#colorbox_4').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_4').fadeIn("slow"); }
        });
		var colorpick_4 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_4 == true) {
    			return; }
				jQuery('#colorbox_4').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_4 = false;
		});
//for fifth color box
		jQuery('#colorbox_5').farbtastic('#color_value_5');
		jQuery('#color_picker_5').click(function () {
           if (jQuery('#colorbox_5').css('display') == "block") {
		      jQuery('#colorbox_5').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_5').fadeIn("slow"); }
        });
		var colorpick_5 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_5 == true) {
    			return; }
				jQuery('#colorbox_5').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_5 = false;
		});
//for sixth color box
		jQuery('#colorbox_6').farbtastic('#color_value_6');
		jQuery('#color_picker_6').click(function () {
           if (jQuery('#colorbox_6').css('display') == "block") {
		      jQuery('#colorbox_6').fadeOut("slow"); }
		   else {
		      jQuery('#colorbox_6').fadeIn("slow"); }
        });
		var colorpick_6 = false;
		jQuery(document).mousedown(function(){
		    if (colorpick_6 == true) {
    			return; }
				jQuery('#colorbox_6').fadeOut("slow");
		});
		jQuery(document).mouseup(function(){
		    colorpick_6 = false;
		});
		jQuery('#sldr_close').click(function () {
			jQuery('#sldr_message').fadeOut("slow");
		});
});
</script>
<style type="text/css">
.color-picker-wrap {
		position: absolute;
 		display: none; 
		background: #fff;
		border: 3px solid #ccc;
		padding: 3px;
		z-index: 1000;
	}
#sldr_message {background-color:#FEF7DA;clear:both;width:72%;}
#sldr_close {float:right;} 
</style>
<?php
   } //for smooth slider option page
 }//only for admin
}
Example #11
0
function smooth_slider_create_multiple_sliders()
{
    global $smooth_slider;
    ?>

<div class="wrap" style="clear:both;">
                     <div style="margin:10px auto;clear:left;">
                        <a href="http://slidervilla.com/" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/slidervilla-728.jpg');
    ?>
" alt="Premium WordPress Slider Plugins" /></a>
                     </div>
<h2 style="float:left;"><?php 
    _e('Sliders Created', 'smooth-slider');
    ?>
</h2>
<form  style="float:left;" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="8046056">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

<?php 
    if ($_POST['remove_posts_slider']) {
        if ($_POST['slider_posts']) {
            global $wpdb, $table_prefix;
            $table_name = $table_prefix . SLIDER_TABLE;
            $current_slider = $_POST['current_slider_id'];
            foreach ($_POST['slider_posts'] as $post_id => $val) {
                $sql = "DELETE FROM {$table_name} WHERE post_id = '{$post_id}' AND slider_id = '{$current_slider}' LIMIT 1";
                $wpdb->query($sql);
            }
        }
        if ($_POST['remove_all'] == __('Remove All at Once', 'smooth-slider')) {
            global $wpdb, $table_prefix;
            $table_name = $table_prefix . SLIDER_TABLE;
            $current_slider = $_POST['current_slider_id'];
            if (is_slider_on_slider_table($current_slider)) {
                $sql = "DELETE FROM {$table_name} WHERE slider_id = '{$current_slider}';";
                $wpdb->query($sql);
            }
        }
        if ($_POST['remove_all'] == __('Delete Slider', 'smooth-slider')) {
            $slider_id = $_POST['current_slider_id'];
            global $wpdb, $table_prefix;
            $slider_table = $table_prefix . SLIDER_TABLE;
            $slider_meta = $table_prefix . SLIDER_META;
            $slider_postmeta = $table_prefix . SLIDER_POST_META;
            if (is_slider_on_slider_table($slider_id)) {
                $sql = "DELETE FROM {$slider_table} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
            if (is_slider_on_meta_table($slider_id)) {
                $sql = "DELETE FROM {$slider_meta} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
            if (is_slider_on_postmeta_table($slider_id)) {
                $sql = "DELETE FROM {$slider_postmeta} WHERE slider_id = '{$slider_id}';";
                $wpdb->query($sql);
            }
        }
    }
    if ($_POST['create_new_slider']) {
        $slider_name = $_POST['new_slider_name'];
        global $wpdb, $table_prefix;
        $slider_meta = $table_prefix . SLIDER_META;
        $sql = "INSERT INTO {$slider_meta} (slider_name) VALUES('{$slider_name}');";
        $result = $wpdb->query($sql);
    }
    if ($_POST['reorder_posts_slider']) {
        $i = 1;
        global $wpdb, $table_prefix;
        $table_name = $table_prefix . SLIDER_TABLE;
        foreach ($_POST['order'] as $slide_order) {
            $slide_order = intval($slide_order);
            $sql = 'UPDATE ' . $table_name . ' SET slide_order=' . $i . ' WHERE post_id=' . $slide_order . '';
            $wpdb->query($sql);
            $i++;
        }
    }
    ?>
<div style="clear:both"></div>
<?php 
    $url = sslider_admin_url(array('page' => 'smooth-slider-settings'));
    ?>
<a href="<?php 
    echo $url;
    ?>
" title="<?php 
    _e('Settings Page for Smooth Slider where you can change the color, font etc. for the sliders', 'smooth-slider');
    ?>
"><?php 
    _e('Go to Smooth Slider Settings page', 'smooth-slider');
    ?>
</a>
<?php 
    $sliders = ss_get_sliders();
    ?>

<div id="slider_tabs">
        <ul class="ui-tabs">
        <?php 
    foreach ($sliders as $slider) {
        ?>
            <li><a href="#tabs-<?php 
        echo $slider['slider_id'];
        ?>
"><?php 
        echo $slider['slider_name'];
        ?>
</a></li>
        <?php 
    }
    ?>
        <?php 
    if ($smooth_slider['multiple_sliders'] == '1') {
        ?>
            <li><a href="#new_slider"><?php 
        _e('Create New Slider', 'smooth-slider');
        ?>
</a></li>
        <?php 
    }
    ?>
        </ul>

<?php 
    foreach ($sliders as $slider) {
        ?>
<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
">
<form action="" method="post">
<?php 
        settings_fields('smooth-slider-group');
        ?>

<input type="hidden" name="remove_posts_slider" value="1" />
<div id="tabs-<?php 
        echo $slider['slider_id'];
        ?>
">
<h3><?php 
        _e('Posts/Pages Added To', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        _e('(Slider ID', 'smooth-slider');
        ?>
 = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
<p><em><?php 
        _e('Check the Post/Page and Press "Remove Selected" to remove them From', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
. <?php 
        _e('Press "Remove All at Once" to remove all the posts from the', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
.</em></p>

    <table class="widefat">
    <thead><tr><th><?php 
        _e('Post/Page Title', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Author', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Post Date', 'smooth-slider');
        ?>
</th><th><?php 
        _e('Remove Post', 'smooth-slider');
        ?>
</th></tr></thead><tbody>

<?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>
	
    <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
    
<?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (in_array($post->ID, $slider_arr)) {
                $count++;
                $sslider_author = get_userdata($post->post_author);
                $sslider_author_dname = $sslider_author->display_name;
                echo '<tr' . ($count % 2 ? ' class="alternate"' : '') . '><td><strong>' . $post->post_title . '</strong><a href="' . get_edit_post_link($post->ID, $context = 'display') . '" target="_blank"> ' . __('(Edit)', 'smooth-slider') . '</a> <a href="' . get_permalink($post->ID) . '" target="_blank"> ' . __('(View)', 'smooth-slider') . ' </a></td><td>By ' . $sslider_author_dname . '</td><td>' . date('l, F j. Y', strtotime($post->post_date)) . '</td><td><input type="checkbox" name="slider_posts[' . $post->ID . ']" value="1" /></td></tr>';
            }
        }
        if ($count == 0) {
            echo '<tr><td colspan="4">' . __('No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider') . '</td></tr>';
        }
        echo '</tbody><tfoot><tr><th>' . __('Post/Page Title', 'smooth-slider') . '</th><th>' . __('Author', 'smooth-slider') . '</th><th>' . __('Post Date', 'smooth-slider') . '</th><th>' . __('Remove Post', 'smooth-slider') . '</th></tr></tfoot></table>';
        echo '<div class="submit">';
        if ($count) {
            echo '<input type="submit" value="' . __('Remove Selected', 'smooth-slider') . '" onclick="return confirmRemove()" /><input type="submit" name="remove_all" value="' . __('Remove All at Once', 'smooth-slider') . '" onclick="return confirmRemoveAll()" />';
        }
        if ($slider_id != '1') {
            echo '<input type="submit" value="' . __('Delete Slider', 'smooth-slider') . '" name="remove_all" onclick="return confirmSliderDelete()" />';
        }
        echo '</div>';
        ?>
    
    </tbody></table>
 </form>
 
 
 <form action="" method="post">
    <input type="hidden" name="reorder_posts_slider" value="1" />
    <h3><?php 
        _e('Reorder the Posts/Pages Added To', 'smooth-slider');
        ?>
 <?php 
        echo $slider['slider_name'];
        ?>
(Slider ID = <?php 
        echo $slider['slider_id'];
        ?>
)</h3>
    <p><em><?php 
        _e('Click on and drag the post/page title to a new spot within the list, and the other items will adjust to fit.', 'smooth-slider');
        ?>
 </em></p>
    <ul id="sslider_sortable_<?php 
        echo $slider['slider_id'];
        ?>
" style="color:#326078">    
    <?php 
        /*global $wpdb, $table_prefix;
        	$table_name = $table_prefix.SLIDER_TABLE;*/
        $slider_id = $slider['slider_id'];
        //$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT);
        $slider_posts = get_slider_posts_in_order($slider_id);
        ?>
        
        <input type="hidden" name="current_slider_id" value="<?php 
        echo $slider_id;
        ?>
" />
        
    <?php 
        $count = 0;
        foreach ($slider_posts as $slider_post) {
            $slider_arr[] = $slider_post->post_id;
            $post = get_post($slider_post->post_id);
            if (in_array($post->ID, $slider_arr)) {
                $count++;
                $sslider_author = get_userdata($post->post_author);
                $sslider_author_dname = $sslider_author->display_name;
                echo '<li id="' . $post->ID . '"><input type="hidden" name="order[]" value="' . $post->ID . '" /><strong> &raquo; &nbsp; ' . $post->post_title . '</strong></li>';
            }
        }
        if ($count == 0) {
            echo '<li>' . __('No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider') . '</li>';
        }
        echo '</ul><div class="submit">';
        if ($count) {
            echo '<input type="submit" value="Save the order"  />';
        }
        echo '</div>';
        ?>
    
       </div>       
  </form>
</div> 
 
<?php 
    }
    ?>

<?php 
    if ($smooth_slider['multiple_sliders'] == '1') {
        ?>
    <div id="new_slider">
    <form action="" method="post" onsubmit="return slider_checkform(this);" >
    <h3><?php 
        _e('Enter New Slider Name', 'smooth-slider');
        ?>
</h3>
    <input type="hidden" name="create_new_slider" value="1" />
    
    <input name="new_slider_name" class="regular-text code" value="" style="clear:both;" />
    
    <div class="submit"><input type="submit" value="<?php 
        _e('Create New', 'smooth-slider');
        ?>
" name="create_new" /></div>
    
    </form>
    </div>
<?php 
    }
    ?>
 
</div>

<div style="margin:10px auto;clear:left;">
                        <a href="http://slidervilla.com/" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/slidervilla-728.jpg');
    ?>
" alt="Premium WordPress Slider Plugins" /></a>
</div>

<div id="poststuff" class="metabox-holder has-right-sidebar"> 
   <div id="side-info-column" class="inner-sidebar" style="float:left;"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span><?php 
    _e('About this Plugin:', 'smooth-slider');
    ?>
</span></h3> 
			  <div class="inside">
                <ul>
                <li><a href="http://www.clickonf5.org/smooth-slider" title="Smooth Slider Homepage" ><?php 
    _e('Plugin Homepage', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://www.clickonf5.org" title="Visit Internet Techies" ><?php 
    _e('Plugin Parent Site', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://www.clickonf5.org/phpbb/smooth-slider-f12/" title="Support Forum for Smooth Slider" ><?php 
    _e('Support Forum', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://www.clickonf5.org/about/tejaswini" title="Smooth Slider Author Page" ><?php 
    _e('About the Author', 'smooth-slider');
    ?>
</a></li>
                <li><a href="http://www.clickonf5.org/go/smooth-slider/" title="<?php 
    _e('Donate if you liked the plugin and support in enhancing Smooth Slider and creating new plugins', 'smooth-slider');
    ?>
" ><?php 
    _e('Donate with Paypal', 'smooth-slider');
    ?>
</a></li>
                </ul> 
              </div> 
			</div> 
     </div>
     
        <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span></span><?php 
    _e('Our Facebook Fan Page', 'smooth-slider');
    ?>
</h3> 
			  <div class="inside">
                <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB"></script><script type="text/javascript">FB.init("2aeebe9fb014836a6810ec4426d26f7e");</script><fb:fan profile_id="127760528543" stream="" connections="8" width="270" height="250"></fb:fan>
              </div> 
			</div> 
     </div>

     <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span><?php 
    _e('Credits:', 'smooth-slider');
    ?>
</span></h3> 
			  <div class="inside">
                <ul>
                <li><a href="http://sorgalla.com/jcarousel/" title="jCarousel jQuey plugin" >Riding carousels with jQuery</a></li>
                <li><a href="http://acko.net/dev/farbtastic" title="Farbtastic Color Picker by Steven Wittens" >Farbtastic Color Picker</a></li>
                <li><a href="http://jquery.com/" title="jQuery JavaScript Library - John Resig" >jQuery JavaScript Library</a></li>
                </ul> 
              </div> 
			</div> 
     </div>
     
          <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span><?php 
    _e('Top Supporters', 'smooth-slider');
    ?>
</span></h3> 
			  <div class="inside">
                <div id="smooth_sldr_donations">
					 <ul>
                        <li><a href="http://www.jacobwiechman.com/wordpress//" title="Visit Jacob Wiechman - $50" >Jacob Wiechman - $50</a></li>
                        <li><a href="http://malamedconsulting.com/" title="Visit Connie Malamed - $25" >Connie Malamed - $25</a></li>
                        <li><a href="http://uwaterloo.ca/" title="Visit Trevor Bain - $25" >Trevor Bain - $25</a></li>
                        <li><a href="http://www.whatsthebigidea.com/" title="Visit WhatsTheBigIdea.com,Inc. - $20" >WhatsTheBigIdea.com,Inc. - $20</a></li>
                     </ul>  
                </div>
              </div> 
			</div> 
          </div>  
          <div style="clear:left;"></div>

     <div id="side-info-column" style="float:left;width:325px;"> 
        <div class="postbox"> 
			  <h3 class="hndle"><span></span><?php 
    _e('Recommended WordPress Hosting', 'smooth-slider');
    ?>
</h3> 
			  <div class="inside">
                  <div style="margin:10px 5px">
            <a href="http://slidervilla.com/go/hostgator/" title="Recommended Web Hosting" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/hostgator.gif');
    ?>
" alt="Recommended Web Hosting" /></a>
            <p><a href="http://slidervilla.com/go/hostgator/" title="Recommended Web Hosting" target="_blank">HostGator</a> is one of the world's top 10 largest web hosting companies with more than 5,000,000 hosted domains. You can host your own WordPress installation with custom themes, plugins, and your own domain name with HostGator from only $3.96 a month.</p>
            <p><strong>Features: </strong>UNLIMITED Disk Space and Bandwidth, FREE Site Building Tools and Templates, 24/7/365 Award Winning Technical Support</p>
            <p>For more info visit <a href="http://slidervilla.com/go/hostgator/" title="Recommended Web Hosting" target="_blank">HostGator.com</a></p>
                  </div>
          </div></div></div>
     
     		<div id="side-info-column" style="float:left;margin-left:1em;width:325px;"> 
            <div class="postbox"> 
			  <h3 class="hndle"><span></span><?php 
    _e('Recommended Themes', 'smooth-slider');
    ?>
</h3> 
			  <div class="inside">
                     <div style="margin:10px 5px">
                        <a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank"><img src="<?php 
    echo smooth_slider_plugin_url('images/elegantthemes.gif');
    ?>
" alt="Recommended WordPress Themes" /></a>
                        <p><a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank">Elegant Themes</a> are attractive, compatible, affordable, SEO optimized WordPress Themes and have best support in community.</p>
                        <p><strong>Beautiful themes, Great support!</strong></p>
                        <p><a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank">For more info visit ElegantThemes</a></p>
                     </div>
               </div></div></div>
     
     
     <div style="clear:left;"></div>
 </div> <!--end of poststuff --> 


</div> <!--end of float wrap -->
<?php 
}
Example #12
0
function smooth_slider_create_multiple_sliders() {
global $smooth_slider;
?>

<div class="wrap" style="clear:both;">
                     <div style="margin:10px auto;clear:left;">
                        <a href="http://slidervilla.com/" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php echo smooth_slider_plugin_url('images/slidervilla-728.jpg');?>" alt="Premium WordPress Slider Plugins" /></a>
                     </div>
<h2 style="float:left;"><?php _e('Sliders Created','smooth-slider'); ?></h2>
<form  style="float:left;" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="8046056">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

<?php 
if ($_POST['remove_posts_slider']) {
   if ( $_POST['slider_posts'] ) {
       global $wpdb, $table_prefix;
       $table_name = $table_prefix.SLIDER_TABLE;
	   $current_slider = $_POST['current_slider_id'];
	   foreach ( $_POST['slider_posts'] as $post_id=>$val ) {
		   $sql = "DELETE FROM $table_name WHERE post_id = '$post_id' AND slider_id = '$current_slider' LIMIT 1";
		   $wpdb->query($sql);
	   }
   }
   if ($_POST['remove_all'] == __('Remove All at Once','smooth-slider')) {
       global $wpdb, $table_prefix;
       $table_name = $table_prefix.SLIDER_TABLE;
	   $current_slider = $_POST['current_slider_id'];
	   if(is_slider_on_slider_table($current_slider)) {
		   $sql = "DELETE FROM $table_name WHERE slider_id = '$current_slider';";
		   $wpdb->query($sql);
	   }
   }
   if ($_POST['remove_all'] == __('Delete Slider','smooth-slider')) {
       $slider_id = $_POST['current_slider_id'];
       global $wpdb, $table_prefix;
       $slider_table = $table_prefix.SLIDER_TABLE;
       $slider_meta = $table_prefix.SLIDER_META;
	   $slider_postmeta = $table_prefix.SLIDER_POST_META;
	   if(is_slider_on_slider_table($slider_id)) {
		   $sql = "DELETE FROM $slider_table WHERE slider_id = '$slider_id';";
		   $wpdb->query($sql);
	   }
	   if(is_slider_on_meta_table($slider_id)) {
		   $sql = "DELETE FROM $slider_meta WHERE slider_id = '$slider_id';";
		   $wpdb->query($sql);
	   }
	   if(is_slider_on_postmeta_table($slider_id)) {
		   $sql = "DELETE FROM $slider_postmeta WHERE slider_id = '$slider_id';";
		   $wpdb->query($sql);
	   }
   }
}
if ($_POST['create_new_slider']) {
   $slider_name = $_POST['new_slider_name'];
   global $wpdb,$table_prefix;
   $slider_meta = $table_prefix.SLIDER_META;
   $sql = "INSERT INTO $slider_meta (slider_name) VALUES('$slider_name');";
   $result = $wpdb->query($sql);
}
if ($_POST['reorder_posts_slider']) {
   $i=1;
   global $wpdb, $table_prefix;
   $table_name = $table_prefix.SLIDER_TABLE;
   foreach ($_POST['order'] as $slide_order) {
    $slide_order = intval($slide_order);
    $sql = 'UPDATE '.$table_name.' SET slide_order='.$i.' WHERE post_id='.$slide_order.'';
    $wpdb->query($sql);
    $i++;
  }
}
?>
<div style="clear:both"></div>
<?php $url = sslider_admin_url( array( 'page' => 'smooth-slider-settings' ) );?>
<a href="<?php echo $url; ?>" title="<?php _e('Settings Page for Smooth Slider where you can change the color, font etc. for the sliders','smooth-slider'); ?>"><?php _e('Go to Smooth Slider Settings page','smooth-slider'); ?></a>
<?php $sliders = ss_get_sliders(); ?>

<div id="slider_tabs">
        <ul class="ui-tabs">
        <?php foreach($sliders as $slider){?>
            <li><a href="#tabs-<?php echo $slider['slider_id'];?>"><?php echo $slider['slider_name'];?></a></li>
        <?php } ?>
        <?php if($smooth_slider['multiple_sliders'] == '1') {?>
            <li><a href="#new_slider"><?php _e('Create New Slider','smooth-slider'); ?></a></li>
        <?php } ?>
        </ul>

<?php foreach($sliders as $slider){?>
<div id="tabs-<?php echo $slider['slider_id'];?>">
<form action="" method="post">
<?php settings_fields('smooth-slider-group'); ?>

<input type="hidden" name="remove_posts_slider" value="1" />
<div id="tabs-<?php echo $slider['slider_id'];?>">
<h3><?php _e('Posts/Pages Added To','smooth-slider'); ?> <?php echo $slider['slider_name'];?><?php _e('(Slider ID','smooth-slider'); ?> = <?php echo $slider['slider_id'];?>)</h3>
<p><em><?php _e('Check the Post/Page and Press "Remove Selected" to remove them From','smooth-slider'); ?> <?php echo $slider['slider_name'];?>. <?php _e('Press "Remove All at Once" to remove all the posts from the','smooth-slider'); ?> <?php echo $slider['slider_name'];?>.</em></p>

    <table class="widefat">
    <thead><tr><th><?php _e('Post/Page Title','smooth-slider'); ?></th><th><?php _e('Author','smooth-slider'); ?></th><th><?php _e('Post Date','smooth-slider'); ?></th><th><?php _e('Remove Post','smooth-slider'); ?></th></tr></thead><tbody>

<?php  
	/*global $wpdb, $table_prefix;
	$table_name = $table_prefix.SLIDER_TABLE;*/
	$slider_id = $slider['slider_id'];
	//$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT); 
    $slider_posts=get_slider_posts_in_order($slider_id); ?>
	
    <input type="hidden" name="current_slider_id" value="<?php echo $slider_id;?>" />
    
<?php    $count = 0;	
	foreach($slider_posts as $slider_post) {
	  $slider_arr[] = $slider_post->post_id;
	  $post = get_post($slider_post->post_id);	  
	  if ( in_array($post->ID, $slider_arr) ) {
		  $count++;
		  $sslider_author = get_userdata($post->post_author);
          $sslider_author_dname = $sslider_author->display_name;
		  echo '<tr' . ($count % 2 ? ' class="alternate"' : '') . '><td><strong>' . $post->post_title . '</strong><a href="'.get_edit_post_link( $post->ID, $context = 'display' ).'" target="_blank"> '.__( '(Edit)', 'smooth-slider' ).'</a> <a href="'.get_permalink( $post->ID ).'" target="_blank"> '.__( '(View)', 'smooth-slider' ).' </a></td><td>By ' . $sslider_author_dname . '</td><td>' . date('l, F j. Y',strtotime($post->post_date)) . '</td><td><input type="checkbox" name="slider_posts[' . $post->ID . ']" value="1" /></td></tr>'; 
	  }
	}
		
	if ($count == 0) {
		echo '<tr><td colspan="4">'.__( 'No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider' ).'</td></tr>';
	}
	echo '</tbody><tfoot><tr><th>'.__( 'Post/Page Title', 'smooth-slider' ).'</th><th>'.__( 'Author', 'smooth-slider' ).'</th><th>'.__( 'Post Date', 'smooth-slider' ).'</th><th>'.__( 'Remove Post', 'smooth-slider' ).'</th></tr></tfoot></table>'; 
    
	echo '<div class="submit">';
	
	if ($count) {echo '<input type="submit" value="'.__( 'Remove Selected', 'smooth-slider' ).'" onclick="return confirmRemove()" /><input type="submit" name="remove_all" value="'.__( 'Remove All at Once', 'smooth-slider' ).'" onclick="return confirmRemoveAll()" />';}
	
	if($slider_id != '1') {
	   echo '<input type="submit" value="'.__( 'Delete Slider', 'smooth-slider' ).'" name="remove_all" onclick="return confirmSliderDelete()" />';
	}
	
	echo '</div>';
?>    
    </tbody></table>
 </form>
 
 
 <form action="" method="post">
    <input type="hidden" name="reorder_posts_slider" value="1" />
    <h3><?php _e('Reorder the Posts/Pages Added To','smooth-slider'); ?> <?php echo $slider['slider_name'];?>(Slider ID = <?php echo $slider['slider_id'];?>)</h3>
    <p><em><?php _e('Click on and drag the post/page title to a new spot within the list, and the other items will adjust to fit.','smooth-slider'); ?> </em></p>
    <ul id="sslider_sortable_<?php echo $slider['slider_id'];?>" style="color:#326078">    
    <?php  
    /*global $wpdb, $table_prefix;
	$table_name = $table_prefix.SLIDER_TABLE;*/
	$slider_id = $slider['slider_id'];
	//$slider_posts = $wpdb->get_results("SELECT post_id FROM $table_name WHERE slider_id = '$slider_id'", OBJECT); 
    $slider_posts=get_slider_posts_in_order($slider_id);?>
        
        <input type="hidden" name="current_slider_id" value="<?php echo $slider_id;?>" />
        
    <?php    $count = 0;	
        foreach($slider_posts as $slider_post) {
          $slider_arr[] = $slider_post->post_id;
          $post = get_post($slider_post->post_id);	  
          if ( in_array($post->ID, $slider_arr) ) {
              $count++;
              $sslider_author = get_userdata($post->post_author);
              $sslider_author_dname = $sslider_author->display_name;
              echo '<li id="'.$post->ID.'"><input type="hidden" name="order[]" value="'.$post->ID.'" /><strong> &raquo; &nbsp; ' . $post->post_title . '</strong></li>'; 
          }
        }
            
        if ($count == 0) {
            echo '<li>'.__( 'No posts/pages have been added to the Slider - You can add respective post/page to slider on the Edit screen for that Post/Page', 'smooth-slider' ).'</li>';
        }
		        
        echo '</ul><div class="submit">';
        
        if ($count) {echo '<input type="submit" value="Save the order"  />';}
                
        echo '</div>';
    ?>    
       </div>       
  </form>
</div> 
 
<?php } ?>

<?php if($smooth_slider['multiple_sliders'] == '1') {?>
    <div id="new_slider">
    <form action="" method="post" onsubmit="return slider_checkform(this);" >
    <h3><?php _e('Enter New Slider Name','smooth-slider'); ?></h3>
    <input type="hidden" name="create_new_slider" value="1" />
    
    <input name="new_slider_name" class="regular-text code" value="" style="clear:both;" />
    
    <div class="submit"><input type="submit" value="<?php _e('Create New','smooth-slider'); ?>" name="create_new" /></div>
    
    </form>
    </div>
<?php }?> 
</div>

<div style="margin:10px auto;clear:left;">
                        <a href="http://slidervilla.com/" title="Premium WordPress Slider Plugins" target="_blank"><img src="<?php echo smooth_slider_plugin_url('images/slidervilla-728.jpg');?>" alt="Premium WordPress Slider Plugins" /></a>
</div>

<div id="poststuff" class="metabox-holder has-right-sidebar"> 
		<div id="side-info-column" class="inner-sidebar" style="float:left;"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span><?php _e('About this Plugin:','smooth-slider'); ?></span></h3> 
			  <div class="inside">
                <ul>
                <li><a href="http://slidervilla.com/smooth-slider" title="<?php _e('Smooth Slider Homepage','smooth-slider'); ?>" ><?php _e('Plugin Homepage','smooth-slider'); ?></a></li>
                <li><a href="http://clickonf5.com/" title="<?php _e('Support Forum for Smooth Slider','smooth-slider'); ?>
" ><?php _e('Support Forum','smooth-slider'); ?></a></li>
                <li><a href="http://keencodes.com/" title="<?php _e('Smooth Slider Author Page','smooth-slider'); ?>" ><?php _e('About the Author','smooth-slider'); ?></a></li>
				<li><a href="http://www.clickonf5.org" title="<?php _e('Visit Internet Techies','smooth-slider'); ?>
" ><?php _e('Plugin Parent Site','smooth-slider'); ?></a></li>
                <li><a href="http://www.clickonf5.org/go/smooth-slider/" title="<?php _e('Donate if you liked the plugin and support in enhancing Smooth Slider and creating new plugins','smooth-slider'); ?>" ><?php _e('Donate with Paypal','smooth-slider'); ?></a></li>
                </ul> 
              </div> 
			</div> 
		</div>
     
        <div id="side-info-column" class="inner-sidebar" style="float:left;margin-left:1em"> 
			<div class="postbox"> 
			  <h3 class="hndle"><span></span><?php _e('Our Facebook Fan Page','smooth-slider'); ?></h3> 
			  <div class="inside">
               <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fslidervilla&amp;width=270&amp;height=170&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=false&amp;header=false&amp;appId=140253496056337" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:270px; height:170px;" allowTransparency="true"></iframe>
              </div> 
			</div> 
		</div>
          
		<div id="side-info-column" style="float:left;margin-left:1em;width:325px;"> 
		<div class="postbox"> 
		  <h3 class="hndle"><span></span><?php _e('Recommended Themes','smooth-slider'); ?></h3> 
		  <div class="inside">
				 <div style="margin:10px 5px">
					<a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank"><img src="<?php echo smooth_slider_plugin_url('images/elegantthemes.gif');?>" alt="Recommended WordPress Themes" /></a>
					<p><a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank">Elegant Themes</a> are attractive, compatible, affordable, SEO optimized WordPress Themes and have best support in community.</p>
					<p><strong>Beautiful themes, Great support!</strong></p>
					<p><a href="http://slidervilla.com/go/elegantthemes/" title="Recommended WordPress Themes" target="_blank">For more info visit ElegantThemes</a></p>
				 </div>
		   </div></div></div>
     
     <div style="clear:left;"></div>
 </div> <!--end of poststuff --> 


</div> <!--end of float wrap -->
<?php	
}