lubuntu.me/plugins/revslider/admin/views/templates/slider-main-options.php
2016-11-28 21:52:15 -08:00

4518 lines
287 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/* Provider: - *
* @author ThemePunch <info@themepunch.com>
* @link http://www.themepunch.com/
* @copyright 2015 ThemePunch
*/
if (!defined('ABSPATH')) {
exit();
}
$operations = new RevSliderOperations();
$rs_nav = new RevSliderNavigation();
$arrValues = $operations->getGeneralSettingsValues();
$arr_navigations = $rs_nav->get_all_navigations();
$transitions = $operations->getArrTransition();
$_width = (isset($arrValues['width'])) ? $arrValues['width'] : 1240;
$_width_notebook = (isset($arrValues['width_notebook'])) ? $arrValues['width_notebook'] : 1024;
$_width_tablet = (isset($arrValues['width_tablet'])) ? $arrValues['width_tablet'] : 778;
$_width_mobile = (isset($arrValues['width_mobile'])) ? $arrValues['width_mobile'] : 480;
?>
<div class="wrap settings_wrap">
<div class="clear_both"></div>
<div class="title_line">
<div id="icon-options-general" class="icon32"></div>
<div class="view_title"><?php echo (@$is_edit) ? __("Edit Slider", REVSLIDER_TEXTDOMAIN) : __("New Slider", REVSLIDER_TEXTDOMAIN);?></div>
<a href="<?php echo RevSliderGlobals::LINK_HELP_SLIDER;?>" class="button-secondary float_right mtop_10 mleft_10" target="_blank"><?php _e("Help", REVSLIDER_TEXTDOMAIN);?></a>
</div>
<div class="settings_panel">
<div class="settings_panel_left settings_wrapper">
<form name="form_slider_main" id="form_slider_main" onkeypress="return event.keyCode != 13;">
<input type="hidden" name="hero_active" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hero_active', -1); ?>" />
<!-- CONTENT SOURCE -->
<div class="setting_box">
<h3><span class="setting-step-number">1</span><span><?php _e("Content Source", REVSLIDER_TEXTDOMAIN)?></span></h3>
<div class="inside" style="padding:0px;">
<div class="source-selector-wrapper">
<?php $source_type = RevSliderFunctions::getVal($arrFieldsParams, 'source_type', 'gallery');?>
<span class="rs-source-selector selected">
<span class="rs-source-image rssi-default"></span>
<input type="radio" id="source_type_3" value="gallery" name="source_type" <?php checked($source_type, 'gallery');?> />
<span class="rs-source-label"><?php _e('Default Slider', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-post"></span>
<input type="radio" id="source_type_1" value="posts" name="source_type" <?php checked($source_type, 'posts');?> />
<span class="rs-source-label"><?php _e('Post-Based Slider', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-post"></span>
<input type="radio" id="source_type_2" value="specific_posts" name="source_type" <?php checked($source_type, 'specific_posts');?> />
<span class="rs-source-label"><?php _e('Specific Posts', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-flickr"></span>
<input type="radio" id="source_type_3" value="flickr" name="source_type" <?php checked($source_type, 'flickr');?> />
<span class="rs-source-label"><?php _e('Flickr Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-instagram"></span>
<input type="radio" id="source_type_4" value="instagram" name="source_type" <?php checked($source_type, 'instagram');?> />
<span class="rs-source-label"><?php _e('Instagram Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector rs-coming-soon">
<span class="rs-source-image rssi-woo"></span>
<!--input type="radio" id="source_type_5" value="woocommerce" name="source_type" <?php checked($source_type, 'woocommerce');?> /-->
<span class="rs-source-label"><?php _e('Woo Commerce Slider', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-twitter"></span>
<input type="radio" id="source_type_6" value="twitter" name="source_type" <?php checked($source_type, 'twitter');?> />
<span class="rs-source-label"><?php _e('Twitter Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-facebook"></span>
<input type="radio" id="source_type_7" value="facebook" name="source_type" <?php checked($source_type, 'facebook');?> />
<span class="rs-source-label"><?php _e('Facebook Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-youtube"></span>
<input type="radio" id="source_type_8" value="youtube" name="source_type" <?php checked($source_type, 'youtube');?> />
<span class="rs-source-label"><?php _e('YouTube Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="rs-source-selector">
<span class="rs-source-image rssi-vimeo"></span>
<input type="radio" id="source_type_9" value="vimeo" name="source_type" <?php checked($source_type, 'vimeo');?> />
<span class="rs-source-label"><?php _e('Vimeo Stream', REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="tp-clearfix"></span>
</div>
<script>
jQuery(document).on("ready", function() {
function rsSelectorFun() {
jQuery('.rs-source-selector').removeClass("selected");
jQuery('.source-selector-wrapper input:checked').closest(".rs-source-selector").addClass("selected");
}
jQuery('.source-selector-wrapper input').change(rsSelectorFun);
rsSelectorFun();
jQuery('.rs-coming-soon').click(function(){
alert('<?php _e('Coming Soon!', REVSLIDER_TEXTDOMAIN); ?>');
});
})
</script>
</div>
<div id="rs-instagram-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 33)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'instagram-count', '');?>" name="instagram-count" title="<?php _e('Display this number of photos', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Access Token', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'instagram-access-token', '');?>" name="instagram-access-token" title="<?php _e('Put in your Instagram Access Token', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="description"><?php _e('Get your Instagram Access Token <a target="_blank" href="http://www.pinceladasdaweb.com.br/instagram/access-token/">here</a>', REVSLIDER_TEXTDOMAIN);?></span>
</p>
</div>
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Instagram User ID', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'instagram-user-id', '');?>" name="instagram-user-id" title="<?php _e('Put in the Instagram User ID', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="description"><?php _e('Find the Instagram User ID <a target="_blank" href="http://www.otzberg.net/iguserid/">here</a>', REVSLIDER_TEXTDOMAIN);?></span>
</p>
</div>
</div>
<div id="rs-flickr-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 500)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-count', '');?>" name="flickr-count" title="<?php _e('Display this number of photos', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Flickr API Key', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-api-key', '');?>" name="flickr-api-key" title="<?php _e('Put in your Flickr API Key', REVSLIDER_TEXTDOMAIN);?>">
</p>
<span class="description"><?php _e('Read <a target="_blank" href="http://weblizar.com/get-flickr-api-key/">here</a> how to receive your Flickr API key', REVSLIDER_TEXTDOMAIN);?></span>
</div>
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Source', REVSLIDER_TEXTDOMAIN);?></span>
<select name="flickr-type">
<option value="publicphotos" title="<?php _e('Display a user\'s public photos', REVSLIDER_TEXTDOMAIN);?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'flickr-type', 'publicphotos'), 'publicphotos');?>> <?php _e('User Public Photos', REVSLIDER_TEXTDOMAIN);?></option>
<option value="photosets" title="<?php _e('Display a certain photoset from a user', REVSLIDER_TEXTDOMAIN);?>"<?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'flickr-type', 'publicphotos'), 'photosets');?>> <?php _e('User Photoset', REVSLIDER_TEXTDOMAIN);?></option>
<option value="gallery" title="<?php _e('Display a gallery', REVSLIDER_TEXTDOMAIN);?>"<?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'flickr-type', 'publicphotos'), 'gallery');?>> <?php _e('Gallery', REVSLIDER_TEXTDOMAIN);?></option>
<option value="group" title="<?php _e('Display a group\'s photos', REVSLIDER_TEXTDOMAIN);?>"<?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'flickr-type', 'publicphotos'), 'group');?>> <?php _e('Groups\' Photos', REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div id="flickr-publicphotos-url-wrap">
<p>
<span class="rev-new-label"><?php _e('Flickr User Url', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-user-url');?>" name="flickr-user-url" title="<?php _e('Put in the URL of the flickr User', REVSLIDER_TEXTDOMAIN);?>">
</p>
</div>
<div id="flickr-photosets-wrap">
<p>
<span class="rev-new-label"><?php _e('Select Photoset', REVSLIDER_TEXTDOMAIN);?></span>
<input type="hidden" name="flickr-photoset" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-photoset', '');?>">
<select name="flickr-photoset-select" title="<?php _e('Select the photoset to pull the data from ', REVSLIDER_TEXTDOMAIN);?>">
</select>
</p>
</div>
<div id="flickr-gallery-url-wrap">
<p>
<span class="rev-new-label"><?php _e('Flickr Gallery Url', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-gallery-url');?>" name="flickr-gallery-url" title="<?php _e('Put in the URL of the flickr Gallery', REVSLIDER_TEXTDOMAIN);?>">
</p>
</div>
<div id="flickr-group-url-wrap">
<p>
<span class="rev-new-label"><?php _e('Flickr Group Url', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'flickr-group-url');?>" name="flickr-group-url" title="<?php _e('Put in the URL of the flickr Group', REVSLIDER_TEXTDOMAIN);?>">
</p>
</div>
</div>
</div>
<div id="rs-facebook-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 25)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'facebook-count', '');?>" name="facebook-count" title="<?php _e('Display this number of posts', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Cache (sec)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'facebook-transient', '1200');?>" name="facebook-transient" title="<?php _e('Cache the stream for x seconds', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<?php $facebook_page_url = RevSliderFunctions::getVal($arrFieldsParams, 'facebook-page-url', '');?>
<span class="rev-new-label"><?php _e('Facebook Page', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo $facebook_page_url;?>" name="facebook-page-url" id="facebook-page-url" title="<?php _e('Put in the URL/ID of the Facebook page', REVSLIDER_TEXTDOMAIN);?>">
</p>
</div>
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Source', REVSLIDER_TEXTDOMAIN);?></span>
<select name="facebook-type-source">
<option value="album" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'facebook-type-source', 'album'), 'album');?>><?php _e('Album', REVSLIDER_TEXTDOMAIN);?></option>
<option value="timeline" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'facebook-type-source', 'album'), 'timeline');?>><?php _e('Timeline', REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div id="facebook-album-wrap">
<p>
<?php $facebook_album = RevSliderFunctions::getVal($arrFieldsParams, 'facebook-album', '');?>
<span class="rev-new-label"><?php _e('Select Album', REVSLIDER_TEXTDOMAIN);?></span>
<input type="hidden" name="facebook-album" value="<?php echo $facebook_album;?>">
<select name="facebook-album-select" class="eg-tooltip-wrap" title="<?php _e('Select the album to pull the data from ', REVSLIDER_TEXTDOMAIN);?>">
</select>
</p>
</div>
<p>
<span class="rev-new-label"><?php _e('App ID', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'facebook-app-id', '')?>" name="facebook-app-id" class="eg-tooltip-wrap" title="<?php _e('Put in the Facebook App ID', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="rev-new-label"><?php _e('App Secret', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'facebook-app-secret', '')?>" name="facebook-app-secret" class="eg-tooltip-wrap" title="<?php _e('Put in the Facebook App secret', REVSLIDER_TEXTDOMAIN);?>">
</p>
</div>
</div>
<div id="rs-twitter-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 500)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-count', '');?>" name="twitter-count" title="<?php _e('Display this number of tweets', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Cache (sec)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-transient', '1200');?>" name="twitter-transient" title="<?php _e('Cache the stream for x seconds', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="rev-new-label"><?php _e('Twitter Name @', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-user-id', '');?>" name="twitter-user-id" title="<?php _e('Put in the Twitter Account to stream from', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="rev-new-label"><?php _e('Text Tweets', REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="twitter-image-only" name="twitter-image-only" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'twitter-image-only', 'off'), 'on');?> >
</p>
<p>
<span class="rev-new-label"><?php _e('Retweets', REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="twitter-include-retweets" name="twitter-include-retweets" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'twitter-include-retweets', 'off'), 'on');?> >
</p>
<p>
<span class="rev-new-label"><?php _e('Replies', REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="twitter-exclude-replies" name="twitter-exclude-replies" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'twitter-exclude-replies', 'off'), 'on');?> >
</p>
</div>
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Consumer Key', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-consumer-key', '');?>" name="twitter-consumer-key" title="<?php _e('Put in your Twitter Consumer Key', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Consumer Secret', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-consumer-secret', '');?>" name="twitter-consumer-secret" title="<?php _e('Put in your Twitter Consumer Secret', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="rev-new-label"><?php _e('Access Token', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-access-token', '');?>" name="twitter-access-token" title="<?php _e('Put in your Twitter Access Token', REVSLIDER_TEXTDOMAIN);?>">
</p>
<p>
<span class="rev-new-label"><?php _e('Access Secret', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'twitter-access-secret', '');?>" name="twitter-access-secret" title="<?php _e('Put in your Twitter Access Secret', REVSLIDER_TEXTDOMAIN);?>">
</p>
<span class="description"><?php _e('Please <a target="_blank" href="https://dev.twitter.com/apps">register</a> your application with Twitter to get the values', REVSLIDER_TEXTDOMAIN);?></span>
</div>
</div>
<div id="rs-youtube-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 50)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'youtube-count', '');?>" name="youtube-count" title="<?php _e('Display this number of videos', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Youtube API Key', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'youtube-api', '');?>" name="youtube-api" title="<?php _e('Put in your YouTube API Key', REVSLIDER_TEXTDOMAIN);?>">
</p>
<span class="description"><?php _e('Find information about the YouTube API key <a target="_blank" href="https://developers.google.com/youtube/v3/getting-started#before-you-start">here</a>',REVSLIDER_TEXTDOMAIN);?></span>
</div>
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Channel ID', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'youtube-channel-id', '');?>" name="youtube-channel-id" title="<?php _e('Put in the ID of the YouTube channel', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Source', REVSLIDER_TEXTDOMAIN); ?></span>
<select name="youtube-type-source">
<option value="channel" title="<?php _e('Display the channel´s videos', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'youtube-type-source', 'channel'), 'channel'); ?> > <?php _e('Channel', REVSLIDER_TEXTDOMAIN); ?> </option>
<option value="playlist" title="<?php _e('Display a playlist', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'youtube-type-source', 'channel'), 'playlist'); ?> > <?php _e('Playlist', REVSLIDER_TEXTDOMAIN); ?> </option>
</select>
</p>
<div id="youtube-playlist-wrap">
<p>
<span class="rev-new-label"><?php _e('Select Playlist', REVSLIDER_TEXTDOMAIN); ?></span>
<input type="hidden" name="youtube-playlist" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams,'youtube-playlist', '') ?>">
<select name="youtube-playlist-select">
</select>
</p>
</div>
<span class="description"><?php _e('See how to find the Youtube channel ID <a target="_blank" href="https://support.google.com/youtube/answer/3250431?hl=en">here</a>', REVSLIDER_TEXTDOMAIN);?></span>
</div>
</div>
<div id="rs-vimeo-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<span class="rev-new-label"><?php _e('Slides (max 60)', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-count', '');?>" name="vimeo-count" title="<?php _e('Display this number of videos', REVSLIDER_TEXTDOMAIN);?>">
<p>
<span class="rev-new-label"><?php _e('Source', REVSLIDER_TEXTDOMAIN);?></span>
<select name="vimeo-type-source">
<option name="vimeo-type-source" value="user" title="<?php _e('Display the user\'s videos', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-type-source', 'user'), 'user'); ?> > <?php _e('User', REVSLIDER_TEXTDOMAIN); ?></option>
<option name="vimeo-type-source" value="album" title="<?php _e('Display an album', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-type-source', 'user'), 'album'); ?> > <?php _e('Album', REVSLIDER_TEXTDOMAIN); ?></option>
<option name="vimeo-type-source" value="group" title="<?php _e('Display a group\'s videos', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-type-source', 'user'), 'group'); ?> > <?php _e('Group', REVSLIDER_TEXTDOMAIN); ?> </option>
<option name="vimeo-type-source" value="channel" title="<?php _e('Display a channel\'s videos', REVSLIDER_TEXTDOMAIN); ?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-type-source', 'user'), 'channel'); ?> > <?php _e('Channel', REVSLIDER_TEXTDOMAIN); ?> </option>
</select>
</p>
</div>
<div style="width:50%;display:block;float:left;">
<div id="vimeo-user-wrap" class="source-vimeo">
<span class="rev-new-label"><?php _e('User', REVSLIDER_TEXTDOMAIN); ?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-username', ''); ?>" name="vimeo-username" title="<?php _e('Either the shortcut URL or ID of the user', REVSLIDER_TEXTDOMAIN); ?>">
</div>
<div id="vimeo-group-wrap" class="source-vimeo">
<span class="rev-new-label"><?php _e('Group', REVSLIDER_TEXTDOMAIN); ?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-groupname', ''); ?>" name="vimeo-groupname" title="<?php _e('Either the shortcut URL or ID of the group', REVSLIDER_TEXTDOMAIN); ?>">
</div>
<div id="vimeo-album-wrap" class="source-vimeo">
<span class="rev-new-label"><?php _e('Album ID', REVSLIDER_TEXTDOMAIN); ?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-albumid', ''); ?>" name="vimeo-albumid" title="<?php _e('The ID of the album', REVSLIDER_TEXTDOMAIN); ?>">
</div>
<div id="vimeo-channel-wrap" class="source-vimeo">
<span class="rev-new-label"><?php _e('Channel', REVSLIDER_TEXTDOMAIN); ?></span>
<input type="text" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'vimeo-channelname', ''); ?>" name="vimeo-channelname" title="<?php _e('Either the shortcut URL of the channel', REVSLIDER_TEXTDOMAIN); ?>">
</div>
</div>
</div>
<div id="rs-post-settings-wrapper" class="rs-settings-wrapper">
<div style="width:50%;display:block;float:left;">
<div class="rs-specific-posts-wrap">
<span class="rev-new-label"><?php _e('Specific Posts List:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class='regular-text' placeholder="coma separated | ex: 23,24,25" id="posts_list" name="posts_list" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'posts_list', '');?>" style="width:255px" />
</div>
<div class="rs-post-types-wrapper">
<span class="rev-new-label"><?php _e('Post Types:', REVSLIDER_TEXTDOMAIN);?></span>
<?php
$post_type = RevSliderFunctionsWP::getPostTypesAssoc();
$sel_post_types = RevSliderFunctions::getVal($arrFieldsParams, 'post_types', 'post');
$sel_post_types = explode(',', $sel_post_types);
if (empty($sel_post_types)) {
$sel_post_types = array('post');
}
//default
?>
<select id="post_types" name="post_types" multiple size='7' style="width:181px; vertical-align: top; height:100px">
<?php
if (!empty($post_type)) {
foreach ($post_type as $post_handle => $post_name) {
$sel = (in_array($post_handle, $sel_post_types)) ? ' selected="selected"' : '';
echo '<option value="' . $post_handle . '"' . $sel . '>' . $post_name . '</option>';
}
}
?>
</select>
<?php
$sel_post_cagetory = RevSliderFunctions::getVal($arrFieldsParams, 'post_category', '');
$sel_post_cagetory = explode(',', $sel_post_cagetory);
/* Provider: - if ($sel_post_cagetory) {
if (!empty($postTypesWithCats)) {
foreach ($postTypesWithCats as $post_type => $post_array) {
if (!empty($post_array)) {
foreach ($post_array as $cat_handle => $cat_name) {
if (strpos($cat_handle, 'option_disabled') === false) {
$sel_post_cagetory = array($cat_handle);
break;
}
}
}
if (!empty($sel_post_cagetory)) {
break;
}
}
}
}*/
?>
<span class="tp-clearfix"></span>
<span class="rev-new-label"><?php _e('Post Categories:', REVSLIDER_TEXTDOMAIN);?></span>
<select id="post_category" name="post_category" multiple size='7' style="width:181px; vertical-align: top;">
<?php
if (!empty($postTypesWithCats)) {
foreach ($postTypesWithCats as $post_type => $post_array) {
if (!empty($post_array)) {
foreach ($post_array as $cat_handle => $cat_name) {
$sel = (in_array($cat_handle, $sel_post_cagetory)) ? ' selected="selected"' : '';
$dis = (strpos($cat_handle, 'option_disabled') !== false) ? ' disabled="disabled"' : '';
echo '<option value="' . $cat_handle . '"' . $dis . $sel . '>' . $cat_name . '</option>';
}
}
}
}
?>
</select>
</div>
</div>
<?php
//events integration
if (RevSliderEventsManager::isEventsExists()) {
$arrEventsFilter = RevSliderEventsManager::getArrFilterTypes();
if (!empty($arrEventsFilter)) {
echo '<p>';
$events_filter = RevSliderFunctions::getVal($arrFieldsParams, 'events_filter', '');
echo '<span class="rev-new-label">' . __('Filter Events By:', REVSLIDER_TEXTDOMAIN) . '</span>';
echo '<select id="events_filter" name="events_filter">';
foreach ($arrEventsFilter as $event_handle => $event_name) {
$sel = ($event_handle == $events_filter) ? ' selected="selected"' : '';
echo '<option value="' . $event_handle . '"' . $sel . '>' . $event_name . '</option>';
}
echo '</select>';
echo '</p>';
}
}
?>
<div style="width:50%;display:block;float:left">
<div id="post_sortby_row" valign="top">
<?php $post_sortby = RevSliderFunctions::getVal($arrFieldsParams, 'post_sortby', 'ID');?>
<span class="rev-new-label"><?php _e('Sort Posts By:', REVSLIDER_TEXTDOMAIN);?></span>
<select id="post_sortby" name="post_sortby">
<option value="ID" <?php selected($post_sortby, 'ID');?>><?php _e('Post ID', REVSLIDER_TEXTDOMAIN);?></option>
<option value="date" <?php selected($post_sortby, 'date');?>><?php _e('Date', REVSLIDER_TEXTDOMAIN);?></option>
<option value="title" <?php selected($post_sortby, 'title');?>><?php _e('Title', REVSLIDER_TEXTDOMAIN);?></option>
<option value="name" <?php selected($post_sortby, 'name');?>><?php _e('Slug', REVSLIDER_TEXTDOMAIN);?></option>
<option value="author" <?php selected($post_sortby, 'author');?>><?php _e('Author', REVSLIDER_TEXTDOMAIN);?></option>
<option value="modified" <?php selected($post_sortby, 'modified');?>><?php _e('Last Modified', REVSLIDER_TEXTDOMAIN);?></option>
<option value="comment_count" <?php selected($post_sortby, 'comment_count');?>><?php _e('Number Of Comments', REVSLIDER_TEXTDOMAIN);?></option>
<option value="rand" <?php selected($post_sortby, 'rand');?>><?php _e('Random', REVSLIDER_TEXTDOMAIN);?></option>
<option value="none" <?php selected($post_sortby, 'none');?>><?php _e('Unsorted', REVSLIDER_TEXTDOMAIN);?></option>
<option value="menu_order" <?php selected($post_sortby, 'menu_order');?>><?php _e('Custom Order', REVSLIDER_TEXTDOMAIN);?></option>
<?php
if (RevSliderEventsManager::isEventsExists()) {
$arrEMSortBy = RevSliderEventsManager::getArrSortBy();
if (!empty($arrEMSortBy)) {
foreach ($arrEMSortBy as $event_handle => $event_name) {
$sel = ($event_handle == $post_sortby) ? ' selected="selected"' : '';
echo '<option value="' . $event_handle . '"' . $sel . '>' . $event_name . '</option>';
}
}
}
?>
</select>
<span class="tp-clearfix"></span>
<?php $posts_sort_direction = RevSliderFunctions::getVal($arrFieldsParams, 'posts_sort_direction', 'DESC');?>
<span class="rev-new-label"><?php _e('Sort Direction:', REVSLIDER_TEXTDOMAIN);?></span>
<span>
<input type="radio" id="posts_sort_direction_1" value="DESC" name="posts_sort_direction" <?php checked($posts_sort_direction, 'DESC');?> />
<label for="posts_sort_direction_1" style="cursor:pointer;"><?php _e('Descending', REVSLIDER_TEXTDOMAIN);?></label>
<input type="radio" style="margin-left:20px;" id="posts_sort_direction_2" value="ASC" name="posts_sort_direction" <?php checked($posts_sort_direction, 'ASC');?> />
<label for="posts_sort_direction_2" style="cursor:pointer;"><?php _e('Ascending', REVSLIDER_TEXTDOMAIN);?></label>
</span>
<span class="tp-clearfix"></span>
<span class="rev-new-label"><?php _e('Max Posts Per Slider:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class='small-text' id="max_slider_posts" name="max_slider_posts" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'max_slider_posts', '30');?>" />
<span class="tp-clearfix"></span>
<span class="rev-new-label"><?php _e('Limit The Excerpt To:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class='small-text' id="excerpt_limit" name="excerpt_limit" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'excerpt_limit', '55');?>" />
</div>
</div>
<span class="tp-clearfix"></span>
</div>
</div>
<!-- SLIDER TITLE AND SHORTCODE -->
<div class="setting_box" style="background:#fff">
<h3><span class="setting-step-number">2</span><span><?php _e("Slider Title & ShortCode", REVSLIDER_TEXTDOMAIN)?></span></h3>
<div class="inside">
<div class="slidertitlebox">
<span class="one-third-container">
<input placeholder='<?php _e("Enter your Slider Name here", REVSLIDER_TEXTDOMAIN)?>' type="text" class='regular-text' id="title" name="title" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'title', '');?>"/>
<i class="input-edit-icon"></i>
<span class="description"><?php _e("The title of the slider, example: Slider 1", REVSLIDER_TEXTDOMAIN)?></span>
</span>
<span class="one-third-container">
<input placeholder='<?php _e("Enter your Slider Alias here", REVSLIDER_TEXTDOMAIN)?>' type="text" class='regular-text' id="alias" name="alias" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'alias', '');?>"/>
<i class="input-edit-icon"></i>
<span class="description"><?php _e("The alias for embedding your slider, example: slider1", REVSLIDER_TEXTDOMAIN)?></span>
</span>
<span class="one-third-container">
<input type="text" class='regular-text code' readonly='readonly' id="shortcode" name="shortcode" value="" />
<i class="input-shortcode-icon"></i>
<span class="description"><?php _e("Place the shortcode where you want to show the slider", REVSLIDER_TEXTDOMAIN)?></span>
</span>
</div>
</div>
</div>
<!-- THE SLIDE TYPE CHOOSER -->
<div class="setting_box">
<?php
$slider_type = RevSliderFunctions::getVal($arrFieldsParams, 'slider-type', 'standard');
?>
<h3><span class="setting-step-number">3</span><span><?php _e("Select a Slider Type", REVSLIDER_TEXTDOMAIN);?></span></h3>
<div class="rs-slidetypeselector">
<div data-mode="standardpreset" class="rs-slidertype<?php echo ($slider_type == 'standard') ? ' selected' : '';?>">
<span class="rs-preset-image standardslider"></span>
<span class="rs-preset-label"><?php _e("Standard Slider", REVSLIDER_TEXTDOMAIN);?></span>
<input style="display: none;" type="radio" name="slider-type" value="standard" <?php checked($slider_type, 'standard');?> />
</div>
<div data-mode="heropreset" class="rs-slidertype<?php echo ($slider_type == 'hero') ? ' selected' : '';?>">
<span class="rs-preset-image heroscene"></span>
<span class="rs-preset-label"><?php _e("Hero Scene", REVSLIDER_TEXTDOMAIN);?></span>
<input style="display: none;" type="radio" name="slider-type" value="hero" <?php checked($slider_type, 'hero');?> />
</div>
<div data-mode="carouselpreset" class="rs-slidertype<?php echo ($slider_type == 'carousel') ? ' selected' : '';?>">
<span class="rs-preset-image carouselslider"></span>
<span class="rs-preset-label"><?php _e("Carousel Slider", REVSLIDER_TEXTDOMAIN);?></span>
<input style="display: none;" type="radio" name="slider-type" value="carousel" <?php checked($slider_type, 'carousel');?> />
</div>
</div>
<span class="preset-splitter"><?php _e("Load a Preset from this Slider Type", REVSLIDER_TEXTDOMAIN);?></span>
<div id="preset-selector-wrapper" class="preset-selector-wrapper">
<div id="preselect-horiz-wrapper" class="preselect-horiz-wrapper">
<?php
$presets = RevSliderOperations::get_preset_settings();
//echo '<pre>';
//print_r($presets);
//echo '</pre>';
echo '<span class="rs-preset-selector rs-do-nothing standardpreset heropreset carouselpreset" id="rs-add-new-settings-preset">';
echo '<span class="rs-preset-image" style="background-image: url('.RS_PLUGIN_URL.'/admin/assets/images/mainoptions/add_preset.png);"></span>';
echo ' <span class="rs-preset-label">' . __('Save Current Settings as Preset', REVSLIDER_TEXTDOMAIN) . '</span>';
echo '</span>';
echo '<script type="text/javascript">';
//$pjs = RevSliderFunctions::jsonEncodeForClientSide($pjs);
$pjs = RevSliderFunctions::jsonEncodeForClientSide($presets);
echo 'var revslider_presets = jQuery.parseJSON(' . $pjs . ');';
echo '</script>';
?>
<span class="tp-clearfix"></span>
</div>
</div>
<script type="text/javascript">
jQuery("document").ready(function() {
var preset_template_container = wp.template( "rs-preset-container" );
function rs_reset_preset_html(){
jQuery('.rs-preset-entry').remove();
for(var key in revslider_presets){
if (typeof(revslider_presets[key]['settings']['preset']) === 'undefined') {
revslider_presets[key]['settings']['preset'] = 'standardpreset';
}
var data = {};
data['key'] = key;
data['name'] = revslider_presets[key]['settings']['name'];
data['type'] = revslider_presets[key]['settings']['preset'];
data['img'] = (typeof(revslider_presets[key]['settings']['image']) !== 'undefined') ? revslider_presets[key]['settings']['image'] : '';
data['class'] = (typeof(revslider_presets[key]['settings']['class']) !== 'undefined') ? revslider_presets[key]['settings']['class'] : '';
data['custom'] = (typeof(revslider_presets[key]['settings']['custom']) !== 'undefined' && revslider_presets[key]['settings']['custom'] == true) ? true : false;
var content = preset_template_container(data);
jQuery('#rs-add-new-settings-preset').before(content);
}
jQuery('.rs-slidertype.selected').click(); //show only for current active type
}
rs_reset_preset_html();
function updateSliderPresets() {
var bt = jQuery('.rs-slidertype.selected'),
sw =jQuery('#preselect-horiz-wrapper'),
swp = jQuery('#preset-selector-wrapper'),
mode = bt.data('mode'),
prewi = (swp.width()-2)/4;
if (prewi<200) prewi = ((swp.width()-1)/3);
preitems = jQuery('.rs-preset-selector.'+mode);
jQuery('.rs-preset-selector').removeClass("selected").hide().css({width:prewi+"px"});
preitems.show();
//if (preitems.length<7) {
sw.css({position:"relative",height:"auto",width:"100%"});
swp.css({position:"relative",height:"auto"});
//} else {
// sw.css({position:"absolute",height:"400px",width:(prewi*Math.ceil(preitems.length/2))+"px"});
// swp.css({position:"relative",height:"400px"});
//}
jQuery('.preset-selector-wrapper').perfectScrollbar('update');
switch(mode) {
case "standardpreset":
jQuery('.dontshowonhero').show();
jQuery('.dontshowonstandard').hide();
break;
case "carouselpreset":
jQuery('.dontshowonhero').show();
jQuery('.dontshowonstandard').show();
break;
case "heropreset":
jQuery('.dontshowonhero').hide();
break;
}
}
jQuery('body').on("click",'.rs-slidertype',function() {
var bt = jQuery(this);
jQuery('.rs-slidertype').removeClass("selected");
bt.addClass("selected").find('input[name="slider-type"]').attr('checked', 'checked');
updateSliderPresets();
});
jQuery('.preset-selector-wrapper').perfectScrollbar({});
updateSliderPresets();
jQuery(window).resize(updateSliderPresets);
jQuery('body').on('mouseover', '.rs-preset-selector', function(){
jQuery(this).find('.rev-remove-preset').show();
jQuery(this).find('.rev-update-preset').show();
});
jQuery('body').on('mouseleave', '.rs-preset-selector', function(){
jQuery(this).find('.rev-remove-preset').hide();
jQuery(this).find('.rev-update-preset').hide();
});
var googlef_template_container = wp.template( "rs-preset-googlefont" );
jQuery('body').on('click', '.rs-preset-selector', function(){
if(typeof(jQuery(this).attr('id')) == 'undefined' || jQuery(this).hasClass('rs-do-nothing')) return false;
var preset_id = jQuery(this).attr('id').replace('rs-preset-' , '');
showWaitAMinute({fadeIn:300,text:rev_lang.preset_loaded});
if(typeof(revslider_presets[preset_id]) !== 'undefined'){
for(var key in revslider_presets[preset_id]['values']){
var entry = jQuery('[name="'+key+'"]');
if(key == 'google_font'){
jQuery('#rs-google-fonts').html('');
for(var gfk in revslider_presets[preset_id]['values'][key]){
jQuery('#rs-google-fonts').append(googlef_template_container({'value':revslider_presets[preset_id]['values'][key][gfk]}));
}
}
if(entry.length == 0) continue;
switch(entry.prop('tagName').toLowerCase()){
case 'input':
switch(entry.attr('type')){
case 'radio':
jQuery('[name="'+key+'"][value="'+revslider_presets[preset_id]['values'][key]+'"]').click();
break;
case 'checkbox':
if(revslider_presets[preset_id]['values'][key] == 'on')
entry.attr('checked', true);
else
entry.attr('checked', false);
RevSliderSettings.onoffStatus(entry);
break;
default:
entry.val(revslider_presets[preset_id]['values'][key]);
break;
}
break;
case 'select':
jQuery('[name="'+key+'"] option[value="'+revslider_presets[preset_id]['values'][key]+'"]').attr('selected', true);
break;
default:
switch(key){
case 'custom_css':
if(typeof rev_cm_custom_css !== 'undefined')
rev_cm_custom_css.setValue(UniteAdminRev.stripslashes(revslider_presets[preset_id]['values'][key]));
break;
case 'custom_javascript':
if(typeof rev_cm_custom_js !== 'undefined')
rev_cm_custom_js.setValue(UniteAdminRev.stripslashes(revslider_presets[preset_id]['values'][key]));
break;
default:
jQuery('[name="'+key+'"]').val(revslider_presets[preset_id]['values'][key]);
break;
}
break;
}
entry.change(); //trigger change call for elements to hide/show dependencies
}
if(typeof rev_cm_custom_css !== 'undefined') rev_cm_custom_css.refresh();
if(typeof rev_cm_custom_js !== 'undefined') rev_cm_custom_js.refresh();
}
setTimeout('showWaitAMinute({fadeOut:300})',400);
});
function get_preset_params(){
var params = RevSliderSettings.getSettingsObject('form_slider_params');
delete params.action;
delete params['0'];
var ecsn = (jQuery('input[name="enable_custom_size_notebook"]').is(':checked')) ? 'on' : 'off';
var ecst = (jQuery('input[name="enable_custom_size_tablet"]').is(':checked')) ? 'on' : 'off';
var ecsi = (jQuery('input[name="enable_custom_size_iphone"]').is(':checked')) ? 'on' : 'off';
var mof = (jQuery('input[name="main_overflow_hidden"]').is(':checked')) ? 'on' : 'off';
var ah = (jQuery('input[name="auto_height"]').is(':checked')) ? 'on' : 'off';
var params2 = {
slider_type: jQuery('input[name="slider_type"]:checked').val(),
width: jQuery('input[name="width"]').val(),
width_notebook: jQuery('input[name="width_notebook"]').val(),
width_tablet: jQuery('input[name="width_tablet"]').val(),
width_mobile: jQuery('input[name="width_mobile"]').val(),
height: jQuery('input[name="height"]').val(),
height_notebook: jQuery('input[name="height_notebook"]').val(),
height_tablet: jQuery('input[name="height_tablet"]').val(),
height_mobile: jQuery('input[name="height_mobile"]').val(),
enable_custom_size_notebook: ecsn,
enable_custom_size_tablet: ecst,
enable_custom_size_iphone: ecsi,
main_overflow_hidden: mof,
auto_height: ah,
min_height: jQuery('input[name="min_height"]').val(),
};
if(typeof rev_cm_custom_js !== 'undefined')
params2.custom_javascript = rev_cm_custom_js.getValue();
if(typeof rev_cm_custom_css !== 'undefined')
params2.custom_css = rev_cm_custom_css.getValue();
jQuery.extend(params, params2);
return params;
}
jQuery('body').on('click', '.rev-update-preset', function(){
if(confirm(rev_lang.update_preset)){
var pr_id = jQuery(this).closest('.rs-preset-entry').attr('id').replace('rs-preset-', '');
if(typeof(revslider_presets[pr_id]) == 'undefined') alert(rev_lang.preset_not_found);
var params = get_preset_params();
var update_preset = {name: revslider_presets[pr_id]['settings']['name'], values: params};
console.log(update_preset);
UniteAdminRev.ajaxRequest('update_preset', update_preset, function(response){
if(response.success == true){
//refresh presets
revslider_presets = response.data;
rs_reset_preset_html();
}
});
}
return false;
});
jQuery('#rs-add-new-settings-preset').click(function(){
jQuery('input[name="rs-preset-name"]').val('');
jQuery('input[name="rs-preset-image-id"]').val('');
jQuery('#rs-preset-img-wrapper').css('background-image', '');
jQuery('#dialog-rs-add-new-setting-presets').dialog({
modal:true,
resizable:false,
minWidth:400,
minHeight:300,
closeOnEscape:true,
buttons:{
'Save Settings':function(){
var preset_name = UniteAdminRev.sanitize_input(jQuery('input[name="rs-preset-name"]').val());
var preset_img = jQuery('input[name="rs-preset-image-id"]').val();
jQuery('input[name="rs-preset-name"]').val(preset_name);
if(preset_name == '') return false;
for(var key in revslider_presets){
if(revslider_presets[key]['settings']['name'] == preset_name){
alert(rev_lang.preset_name_already_exists);
return false;
}
}
var c_type = jQuery('.rs-slidertype.selected').data('mode');
var params = get_preset_params();
var new_preset = {
settings: {'class':'', image:preset_img, name:preset_name, preset:c_type},
values: params
};
//add new preset to the list
UniteAdminRev.ajaxRequest('add_new_preset', new_preset, function(response){
if(response.success == true){
//refresh presets
revslider_presets = response.data;
rs_reset_preset_html();
}
jQuery('#dialog-rs-add-new-setting-presets').dialog('close');
});
}
}
});
});
jQuery('input[name="rs-button-select-img"]').click(function(){
jQuery('#rs-preset-img-wrapper').css('background-image', '');
jQuery('input[name="rs-preset-image-id"]').val('');
UniteAdminRev.openAddImageDialog(rev_lang.select_image,function(urlImage,imageID,width,height){
var data = {url_image:urlImage,image_id:imageID,img_width:width,img_height:height};
jQuery('input[name="rs-preset-image-id"]').val(data.image_id);
jQuery('#rs-preset-img-wrapper').css('background-image', ' url('+data.url_image+')');
var mw = 200;
var mh = height / width * 200;
jQuery('#rs-preset-img-wrapper').css('width', mw+'px');
jQuery('#rs-preset-img-wrapper').css('height', mh+'px');
jQuery('#rs-preset-img-wrapper').css('background-size', 'cover');
});
});
jQuery('body').on('click', '.rev-remove-preset', function(){
if(confirm(rev_lang.delete_preset)){
var pr_id = jQuery(this).closest('.rs-preset-entry').attr('id').replace('rs-preset-', '');
if(typeof(revslider_presets[pr_id]) == 'undefined') alert(rev_lang.preset_not_found);
UniteAdminRev.ajaxRequest('remove_preset', {name: revslider_presets[pr_id]['settings']['name']}, function(response){
revslider_presets = response.data;
rs_reset_preset_html();
});
}
return false;
});
});
</script>
</div>
<!-- SLIDE LAYOUT -->
<?php
$width_notebook = RevSliderFunctions::getVal($arrFieldsParams, "width_notebook", $_width_notebook);
$height_notebook = RevSliderFunctions::getVal($arrFieldsParams, "height_notebook");
if (intval($height_notebook) == 0) {
$height_notebook = 768;
}
$width = RevSliderFunctions::getVal($arrFieldsParams, "width", $_width);
$height = RevSliderFunctions::getVal($arrFieldsParams, "height", 868);
$width_tablet = RevSliderFunctions::getVal($arrFieldsParams, "width_tablet", $_width_tablet);
if (intval($width_tablet) == 0) {
$width_tablet = $_width_tablet;
}
$height_tablet = RevSliderFunctions::getVal($arrFieldsParams, "height_tablet");
if (intval($height_tablet) == 0) {
$height_tablet = 960;
}
$width_mobile = RevSliderFunctions::getVal($arrFieldsParams, "width_mobile", $_width_mobile);
if (intval($width_mobile) == 0) {
$width_mobile = $_width_mobile;
}
$height_mobile = RevSliderFunctions::getVal($arrFieldsParams, "height_mobile");
if (intval($height_mobile) == 0) {
$height_mobile = 720;
}
$advanced_sizes = RevSliderFunctions::getVal($arrFieldsParams, "advanced-responsive-sizes", 'false');
$advanced_sizes = RevSliderFunctions::strToBool($advanced_sizes);
$sliderType = RevSliderFunctions::getVal($arrFieldsParams, "slider_type");
?>
<div class="setting_box" id="rs-slider-layout-cont">
<h3><span class="setting-step-number">4</span><span><?php _e("Slide Layout", REVSLIDER_TEXTDOMAIN);?></span></h3>
<div class="inside" style="padding:0px">
<?php $slider_type = RevSliderFunctions::getVal($arrFieldsParams, 'slider_type', 'fullwidth');?>
<div style="background:#eee">
<div class="rs-slidesize-selector" >
<div class="rs-slidersize">
<span class="rs-size-image autosized"></span>
<span class="rs-preset-label"><?php _e('Auto', REVSLIDER_TEXTDOMAIN);?></span>
<input type="radio" id="slider_type_1" value="auto" name="slider_type" <?php checked($slider_type, 'auto');?> />
</div>
<div class="rs-slidersize">
<span class="rs-size-image fullwidthsized"></span>
<span class="rs-preset-label"><?php _e('Full-Width', REVSLIDER_TEXTDOMAIN);?></span>
<input type="radio" id="slider_type_2" value="fullwidth" name="slider_type" <?php checked($slider_type, 'fullwidth');?> />
</div>
<div class="rs-slidersize selected">
<span class="rs-size-image fullscreensized"></span>
<span class="rs-preset-label"><?php _e('Full-Screen', REVSLIDER_TEXTDOMAIN);?></span>
<input type="radio" id="slider_type_3" style="margin-left:20px" value="fullscreen" name="slider_type" <?php checked($slider_type, 'fullscreen');?> />
</div>
<div style="clear:both;float:none"></div>
</div>
</div>
<div id="layout-preshow">
<div class="rsp-desktop-view rsp-view-cell">
<div class="rsp-view-header">
<?php _e('Desktop Large', REVSLIDER_TEXTDOMAIN);?> <span class="rsp-cell-dimension"><?php _e('Max', REVSLIDER_TEXTDOMAIN);?></span>
</div>
<div class="rsp-present-area">
<div class="rsp-device-imac">
<div class="rsp-imac-topbar"></div>
<div class="rsp-bg"></div>
<div class="rsp-browser">
<div class="rsp-slide-bg" data-width="140" data-height="70" data-fullwidth="188" data-faheight="70" data-fixwidth="140" data-fixheight="70" data-gmaxw = "140" data-lscale = "1">
<div class="rsp-grid">
<div class="rsp-dotted-line-hr-left"></div>
<div class="rsp-dotted-line-hr-right"></div>
<div class="rsp-dotted-line-vr-top"></div>
<div class="rsp-dotted-line-vr-bottom"></div>
<div class="rsp-layer"><?php _e('Layer', REVSLIDER_TEXTDOMAIN);?></div>
</div>
</div>
</div>
</div>
<div class="rsp-device-imac-bg"></div>
</div>
<div class="slide-size-wrapper">
<span class="rs-preset-label"><?php _e('Layer Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span class="relpos"><input id="width" name="width" type="text" style="width:120px" class="textbox-small" value="<?php echo $width;?>"><span class="pxfill">px</span></span>
<span class="rs-preset-label label-multiple">x</span>
<span class="relpos"><input id="height" name="height" type="text" style="width:120px" class="textbox-small" value="<?php echo $height;?>"><span class="pxfill">px</span></span>
<span class="tp-clearfix" style="margin-bottom:15px"></span>
<span class="description"><?php _e('Specify a layer grid size above', REVSLIDER_TEXTDOMAIN);?></span>
</div>
</div>
<div class="rsp-macbook-view rsp-view-cell">
<div class="rsp-view-header">
<?php _e('Notebook', REVSLIDER_TEXTDOMAIN);?> <span class="rsp-cell-dimension"><?php echo $_width_notebook;?>px</span>
</div>
<div class="rsp-present-area">
<div class="rsp-device-macbook">
<div class="rsp-macbook-topbar"></div>
<div class="rsp-bg"></div>
<div class="rsp-browser">
<div class="rsp-slide-bg" data-width="140" data-height="60" data-fullwidth="160" data-faheight="60" data-fixwidth="140" data-fixheight="60" data-gmaxw = "140" data-lscale = "0.8">
<div class="rsp-grid">
<div class="rsp-dotted-line-hr-left"></div>
<div class="rsp-dotted-line-hr-right"></div>
<div class="rsp-dotted-line-vr-top"></div>
<div class="rsp-dotted-line-vr-bottom"></div>
<div class="rsp-layer"><?php _e('Layer', REVSLIDER_TEXTDOMAIN);?></div>
</div>
</div>
</div>
</div>
<div class="rsp-device-macbook-bg"></div>
</div>
<div class="slide-size-wrapper">
<span class="rs-preset-label"><?php _e('Layer Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span class="relpos"><input name="width_notebook" type="text" style="width:120px" class="textbox-small" value="<?php echo $width_notebook;?>"><span class="pxfill">px</span></span>
<span class="rs-preset-label label-multiple">x</span>
<span class="relpos"><input name="height_notebook" type="text" style="width:120px" class="textbox-small" value="<?php echo $height_notebook;?>"><span class="pxfill">px</span></span>
<span class="tp-clearfix" style="margin-bottom:15px"></span>
<span class="rs-preset-label" style="display:inline-block; margin-right:15px;"><?php _e('Custom Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span style="text-align:left">
<input type="checkbox" class="tp-moderncheckbox" id="enable_custom_size_notebook" name="enable_custom_size_notebook" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'enable_custom_size_notebook', 'off'), "on");?>>
</span>
</div>
</div>
<div class="rsp-tablet-view rsp-view-cell">
<div class="rsp-view-header">
<?php _e('Tablet', REVSLIDER_TEXTDOMAIN);?> <span class="rsp-cell-dimension"><?php echo $_width_tablet;?>px</span>
</div>
<div class="rsp-present-area">
<div class="rsp-device-ipad">
<div class="rsp-bg"></div>
<div class="rsp-browser">
<div class="rsp-slide-bg" data-width="126" data-height="60" data-fullwidth="138" data-faheight="130" data-fixwidth="140" data-fixheight="70" data-gmaxw = "126" data-lscale = "0.7">
<div class="rsp-grid">
<div class="rsp-dotted-line-hr-left"></div>
<div class="rsp-dotted-line-hr-right"></div>
<div class="rsp-dotted-line-vr-top"></div>
<div class="rsp-dotted-line-vr-bottom"></div>
<div class="rsp-layer"><?php _e('Layer', REVSLIDER_TEXTDOMAIN);?></div>
</div>
</div>
</div>
</div>
<div class="rsp-device-ipad-bg"></div>
</div>
<div class="slide-size-wrapper">
<span class="rs-preset-label"><?php _e('Layer Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span class="relpos"><input name="width_tablet" type="text" style="width:120px" class="textbox-small" value="<?php echo $width_tablet;?>"><span class="pxfill">px</span></span>
<span class="rs-preset-label label-multiple">x</span>
<span class="relpos"><input name="height_tablet" type="text" style="width:120px" class="textbox-small" value="<?php echo $height_tablet;?>"><span class="pxfill">px</span></span>
<span class="tp-clearfix" style="margin-bottom:15px"></span>
<span class="rs-preset-label" style="display:inline-block; margin-right:15px;"><?php _e('Custom Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span style="text-align:left">
<input type="checkbox" class="tp-moderncheckbox" id="enable_custom_size_tablet" name="enable_custom_size_tablet" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'enable_custom_size_tablet', 'off'), "on");?>>
</span>
</div>
</div>
<div class="rsp-mobile-view rsp-view-cell">
<div class="rsp-view-header">
<?php _e('Mobile', REVSLIDER_TEXTDOMAIN);?> <span class="rsp-cell-dimension"><?php echo $_width_mobile;?>px</span>
</div>
<div class="rsp-present-area">
<div class="rsp-device-iphone">
<div class="rsp-bg"></div>
<div class="rsp-browser">
<div class="rsp-slide-bg" data-width="70" data-height="40" data-fullwidth="80" data-faheight="100" data-fixwidth="140" data-fixheight="70" data-gmaxw = "70" data-lscale = "0.4">
<div class="rsp-grid">
<div class="rsp-dotted-line-hr-left"></div>
<div class="rsp-dotted-line-hr-right"></div>
<div class="rsp-dotted-line-vr-top"></div>
<div class="rsp-dotted-line-vr-bottom"></div>
<div class="rsp-layer"><?php _e('Layer', REVSLIDER_TEXTDOMAIN);?></div>
</div>
</div>
</div>
</div>
<div class="rsp-device-iphone-bg"></div>
</div>
<div class="slide-size-wrapper">
<span class="rs-preset-label"><?php _e('Layer Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span class="relpos"><input name="width_mobile" type="text" style="width:120px" class="textbox-small" value="<?php echo $width_mobile;?>"><span class="pxfill">px</span></span>
<span class="rs-preset-label label-multiple">x</span>
<span class="relpos"><input name="height_mobile" type="text" style="width:120px" class="textbox-small" value="<?php echo $height_mobile;?>"><span class="pxfill">px</span></span>
<span class="tp-clearfix" style="margin-bottom:15px"></span>
<span class="rs-preset-label" style="display:inline-block; margin-right:15px;"><?php _e('Custom Grid Size', REVSLIDER_TEXTDOMAIN);?></span>
<span style="text-align:left">
<input type="checkbox" class="tp-moderncheckbox" id="enable_custom_size_iphone" name="enable_custom_size_iphone" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'enable_custom_size_iphone', 'off'), "on");?>>
</span>
</div>
</div>
<div style="clear:both;float:none"></div>
</div>
<div class="buttonarea" id="removethisbuttonarea">
<a class="button-primary revblue" id="show_advanced_navigation" original-title=""><i class="revicon-cog"></i><?php _e("Show Advanced Size Options", REVSLIDER_TEXTDOMAIN);?></a>
</div>
<!-- VISUAL ADVANCED SIZING -->
<div class="inside" id="visual-sizing" style="display:none; padding:25px 20px;">
<div id="fullscreen-advanced-sizing">
<div style="text-align:center">
<span class="rs-preset-label noopacity " style="display:inline-block;margin-right:20px"><?php _e("FullScreen Align Force", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="full_screen_align_force" name="full_screen_align_force" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'full_screen_align_force', 'off'), "on");?>>
<span class="description"><?php _e("Layers align within the full slider instead of the layer grid.", REVSLIDER_TEXTDOMAIN);?></span>
</div>
<div style="clear:both;float:none; height:25px"></div>
<span class="rs-preset-label noopacity "><?php _e("Increase/Decrease Fullscreen Height", REVSLIDER_TEXTDOMAIN);?></span>
<div style="clear:both;float:none; height:25px"></div>
<div class="slidertitlebox limitedtablebox">
<span class="one-full-container">
<input placeholder="<?php _e("Containers", REVSLIDER_TEXTDOMAIN);?>" type="text" class="text-sidebar" id="fullscreen_offset_container" name="fullscreen_offset_container" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "fullscreen_offset_container", "");?>">
<i class="input-edit-icon"></i>
<span class="description"><?php _e("Example: #header or .header, .footer, #somecontainer | Height of Slider will be decreased with the height of these Containers to fit perfect in the screen.", REVSLIDER_TEXTDOMAIN);?></span>
</span>
</div>
<div style="clear:both;float:none; height:25px"></div>
<div class="slidertitlebox limitedtablebox">
<span class="one-full-container">
<input placeholder="<?php _e("PX or %", REVSLIDER_TEXTDOMAIN);?>" type="text" class="text-sidebar" id="fullscreen_offset_size" name="fullscreen_offset_size" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "fullscreen_offset_size", "");?>">
<i class="input-edit-icon"></i>
<span class="description"><?php _e("Decrease/Increase height of Slider. Can be used with px and %. Positive/Negative values allowed. Example: 40px or 10%", REVSLIDER_TEXTDOMAIN);?></span>
</span>
</div>
<div style="clear:both;float:none; height:25px"></div>
<div class="slidertitlebox limitedtablebox">
<span class="one-half-container">
<input placeholder="<?php _e("Min. Height", REVSLIDER_TEXTDOMAIN);?>" type="text" class="text-sidebar" id="fullscreen_min_height" name="fullscreen_min_height" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "fullscreen_min_height", "");?>">
<i class="input-edit-icon"></i>
<span class="description"><?php _e("The minimum height of the Slider in FullScreen mode.", REVSLIDER_TEXTDOMAIN);?></span>
</span>
</div>
</div>
<div id="normal-advanced-sizing">
<div class="slidertitlebox limitedtablebox" style="width:100%; max-width:100%">
<span class="one-third-container" style="vertical-align:top">
<span class="rs-preset-label noopacity" style="margin-top:12px;display:inline-block;margin-right:20px" ><?php _e("Overflow Hidden", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox" id="main_overflow_hidden" name="main_overflow_hidden" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'main_overflow_hidden', 'off'), "on");?>>
<div style="clear:both;float:none; height:25px"></div>
<span class="description"><?php _e("Adds overflow:hidden to the slider wrapping container which will hide / cut any overlapping elements. Mostly used in Carousel Sliders.", REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="one-third-container" style="vertical-align:top">
<span class="rs-preset-label noopacity" style="margin-top:12px;display:inline-block;margin-right:20px" ><?php _e("Respect Aspect Ratio", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox" id="auto_height" name="auto_height" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'auto_height', 'off'), "on");?>>
<div style="clear:both;float:none; height:25px"></div>
<span class="description"><?php _e("It will keep aspect ratio and ignore max height of Layer Grid by upscaling. Layer Area will be vertical centered.", REVSLIDER_TEXTDOMAIN);?></span>
</span>
<span class="one-third-container" style="vertical-align:top">
<input placeholder="<?php _e("Min. Height", REVSLIDER_TEXTDOMAIN);?>" type="text" class="text-sidebar" style="padding:11px 45px 11px 15px; line-height:26px" id="min_height" name="min_height" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "min_height", "");?>">
<i class="input-edit-icon"></i>
<span class="description"><?php _e("The minimum height of the Slider in FullWidth or Auto mode.", REVSLIDER_TEXTDOMAIN);?></span>
</span>
</div>
</div>
</div> <!-- / VISUAL ADVANCED SIZING -->
<script>
jQuery("document").ready(function() {
jQuery('#show_advanced_navigation').click(function() {
var a = jQuery('#visual-sizing');
a.slideDown(200);
jQuery('#removethisbuttonarea').remove();
})
jQuery('input[name="slider_type"]').on("change",function() {
var s_fs = jQuery('#slider_type_3').attr("checked")==="checked";
if (s_fs) {
jQuery('#normal-advanced-sizing').hide();
jQuery('#fullscreen-advanced-sizing').show();
} else {
jQuery('#normal-advanced-sizing').show();
jQuery('#fullscreen-advanced-sizing').hide();
}
});
jQuery('#slider_type_3').change();
function get_preview_resp_sizes() {
var s = new Object();
s.n = jQuery('#enable_custom_size_notebook').attr('checked')==="checked";
s.t = jQuery('#enable_custom_size_tablet').attr('checked')==="checked";
s.m = jQuery('#enable_custom_size_iphone').attr('checked')==="checked";
s.w_d = jQuery('input[name="width"]');
s.w_n = jQuery('input[name="width_notebook"]');
s.w_t = jQuery('input[name="width_tablet"]');
s.w_m = jQuery('input[name="width_mobile"]');
s.h_d = jQuery('input[name="height"]');
s.h_n = jQuery('input[name="height_notebook"]');
s.h_t = jQuery('input[name="height_tablet"]');
s.h_m = jQuery('input[name="height_mobile"]');
return s;
}
function draw_responsive_previews(s) {
var d_gw = (s.w_d.val() / 1400) * 150;
//jQuery('.rsp-desktop-view .rsp-grid').css({width})
}
function setLayoutDesign(element,bw,bh,sw,sh,bm,ww,mm,fh,tt) {
var o = new Object();
o.mtp = 1;
if (bw>sw) {
bh = bh * sw/bw;
o.mtp = sw/bw;
bw = sw;
}
if (bh>sh) {
bw = bw * sh/bh;
o.mtp = sh/bh;
bh = sh;
}
o.tt = tt;
o.left = o.right = (2 + ((1 - ( bw / sw))*(sw/10))/2) * bm,
o.height = (bh/10)*bm;
o.mt = (((sh/10) - o.height)/20)*bm;
if (fh===1)
o.gridtop = (((sh*bm/10) - o.height)/2);
else {
o.gridtop = 0;
if (jQuery('#auto_height').attr("checked")==="checked")
o.gridtop = Math.abs((o.height - (o.height * (sw/bw))))/2;
}
punchgs.TweenLite.to(element.find('.rsp-grid'),0.3,{top:o.gridtop,height:o.height,left:mm,ease:punchgs.Power3.easeInOut});
punchgs.TweenLite.to(element.find('.rsp-dotted-line-hr-left'),0.3,{left:o.left,ease:punchgs.Power3.easeInOut});
punchgs.TweenLite.to(element.find('.rsp-dotted-line-hr-right'),0.3,{right:o.right,ease:punchgs.Power3.easeInOut});
if (fh===1) {
o.height = "100%";
o.mt = 0;
o.tt = 0;
}
else
if (jQuery('#auto_height').attr("checked")==="checked")
o.height = o.height * (sw/bw);
punchgs.TweenLite.to(element.find('.rsp-slide-bg'),0.3,{top:o.tt,width:ww,left:0-mm,marginTop:o.mt, height:o.height,ease:punchgs.Power3.easeInOut});
punchgs.TweenLite.to(element.find('.rsp-layer'),0.3,{fontSize:o.mtp*14, paddingTop:o.mtp*3, paddingBottom:o.mtp*3, paddingLeft:o.mtp*5,paddingRight:o.mtp*5, lineHeight:o.mtp*14+"px" ,ease:punchgs.Power3.easeInOut });
}
function readLayoutValues(goon) {
var s = get_preview_resp_sizes(),
o = new Object();
if (goon===1)
jQuery('.slide-size-wrapper .tp-moderncheckbox').change();
if (jQuery('#slider_type_2').attr("checked")==="checked" || jQuery('#slider_type_3').attr("checked")==="checked") {
o.dw = 187; o.dm = 23;
o.nw = 160; o.nm = 10;
o.tw = 140; o.tm = 7;
o.mw = 80; o.mm = 5;
} else {
o.dw = 140; o.dm = 0;
o.nw = 140; o.nm = 0;
o.tw = 126; o.tm = 0;
o.mw = 71; o.mm = 0;
}
if (jQuery('#slider_type_3').attr("checked")==="checked") {
o.dh = 1;
o.nh = 1;
o.th = 1;
o.mh = 1;
} else {
o.dh = 0;
o.nh = 0;
o.th = 0;
o.mh = 0;
}
setLayoutDesign(jQuery('.rsp-device-imac'), s.w_d.val(), s.h_d.val(), 1400,900,1,o.dw,o.dm,o.dh,0);
setLayoutDesign(jQuery('.rsp-device-macbook'), s.w_n.val(), s.h_n.val(), 1200,770,1.166,o.nw,o.nm,o.nh,0);
setLayoutDesign(jQuery('.rsp-device-ipad'), s.w_t.val(), s.h_t.val(), 768,1024,1.78,o.tw,o.tm,o.th,6);
setLayoutDesign(jQuery('.rsp-device-iphone'), s.w_m.val(), s.h_m.val(), 640,1136,1.25,o.mw,o.mm,o.mh,0);
}
jQuery('.slide-size-wrapper .tp-moderncheckbox').on("change",function() {
var bt = jQuery(this),
bp = bt.closest('.slide-size-wrapper'),
s = get_preview_resp_sizes();
if (bt.attr('checked')==="checked") {
if (bt.data('oldstatus')==="unchecked" || bt.data('oldstatus') ===undefined) {
bp.removeClass("disabled").find('input[type="text"]').removeAttr("disabled");
bp.find('input[type="text"]').each(function() {
var inp = jQuery(this);
if (inp.data('oldval')!==undefined) inp.val(inp.data('oldval'));
});
}
bt.data('oldstatus',"checked");
} else {
if (bt.data('oldstatus')==="checked" || bt.data('oldstatus') ===undefined) {
bp.addClass("disabled").find('input[type="text"]').attr("disabled","disabled");
bp.find('input[type="text"]').each(function() {
var inp = jQuery(this);
inp.data('oldval',inp.val());
});
}
bt.data('oldstatus',"unchecked");
}
// CHECK DISABLE VALUES AND INHERIT THEM
/* Provider: - if (!s.n) {
s.w_n.val(s.w_d.val());
s.h_n.val(s.h_d.val());
}
if (!s.t) {
s.w_t.val(s.w_n.val());
s.h_t.val(s.h_n.val());
}
if (!s.m) {
s.w_m.val(s.w_t.val());
s.h_m.val(s.h_t.val());
}*/
readLayoutValues(0);
});
jQuery('.slide-size-wrapper .tp-moderncheckbox').change();
readLayoutValues();
jQuery('input[name="slider_type"], #auto_height, #width, #height, input[name="width_notebook"], input[name="height_notebook"], input[name="width_tablet"], input[name="height_tablet"], input[name="width_mobile"], input[name="height_mobile"]').on("change",function() {
readLayoutValues(1);
});
});
</script>
<!-- FALLBACK SETTINGS -->
<p style="display:none">
<?php $force_full_width = RevSliderFunctions::getVal($arrFieldsParams, 'force_full_width', 'off');?>
<span class="rev-new-label"><?php _e('Force Full Width:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox " id="force_full_width" name="force_full_width" data-unchecked="off" <?php checked($force_full_width, 'on');?>>
</p>
<script>
jQuery(document).on("ready", function() {
function rsSelectorFun(firsttime) {
jQuery('.rs-slidersize').removeClass("selected");
jQuery('.rs-slidesize-selector input:checked').closest(".rs-slidersize").addClass("selected");
// IF AUTO IS SELECTED AND FULLSCREEN IS FORCED (FALL BACK) THAN SELECT FULLWIDTH !
if (firsttime===1) {
if (jQuery('#force_full_width').attr('checked')==="checked" && jQuery('#slider_type_1').attr('checked')==="checked") {
jQuery('#slider_type_1').removeAttr('checked').change();
jQuery('#slider_type_2').attr('checked',"checked").change();
}
if (jQuery('#force_full_width').attr('checked')!=="checked" && jQuery('#slider_type_2').attr('checked')==="checked") {
jQuery('#slider_type_2').removeAttr('checked').change();
jQuery('#slider_type_1').attr('checked',"checked").change();
}
}
// FORCE FULLWIDTH ON FULLWIDTH AND FULLSCREEN
if (jQuery('#slider_type_2').attr('checked')==="checked" || jQuery('#slider_type_3').attr('checked')==="checked")
jQuery('#force_full_width').attr('checked',"checked").change();
else
jQuery('#force_full_width').removeAttr('checked').change();
}
jQuery('.rs-slidesize-selector input').change(rsSelectorFun);
jQuery('#force_full_width').change();
rsSelectorFun(1);
})
</script>
<div style="float:none; clear:both"></div>
</div>
</div>
<div class="setting_box">
<h3><span class="setting-step-number">5</span><span><?php _e("Customize, Build & Implement", REVSLIDER_TEXTDOMAIN);?></span></h3>
<div class="inside" style="padding:35px 20px">
<div class="slidertitlebox breakdownonmobile">
<span class="one-third-container" style="text-align:center">
<img style="width:100%; max-width:325px;" src="<?php echo RS_PLUGIN_URL;?>/admin/assets/images/mainoptions/mini-customizeslide.jpg">
<span class="cbi-title"><?php _e("Advanced Settings", REVSLIDER_TEXTDOMAIN);?></span>
<span class="description" style="text-align:center;min-height:60px;"><?php _e("Go for further customization using the advanced settings on the right of this configuration page.", REVSLIDER_TEXTDOMAIN);?></span>
<div style="float:none; clear:both; height:20px;display:block;"></div>
<a class="button-primary revblue" href="#form_slider_params"><i class="revicon-cog"></i><?php _e("Scroll to Options", REVSLIDER_TEXTDOMAIN);?></a>
</span>
<span class="one-third-container" style="text-align:center">
<img style="width:100%;max-width:325px;" src="<?php echo RS_PLUGIN_URL;?>/admin/assets/images/mainoptions/mini-editslide.jpg">
<span class="cbi-title"><?php _e("Start Building Slides", REVSLIDER_TEXTDOMAIN);?></span>
<span class="description" style="text-align:center;min-height:60px;"><?php _e("Our drag and drop editor will make creating slide content an absolut breeze. This is where the magic happens!", REVSLIDER_TEXTDOMAIN);?></span>
<div style="float:none; clear:both; height:20px;"></div>
<?php
if (isset($linksEditSlides)) {
?>
<a class="button-primary revblue" href="<?php echo $linksEditSlides;?>" id="link_edit_slides"><i class="revicon-pencil-1"></i><?php _e("Edit Slides", REVSLIDER_TEXTDOMAIN);?> </a>
<?php
}
?>
</span>
<span class="one-third-container" style="text-align:center">
<img style="width:100%;max-width:325px;" src="<?php echo RS_PLUGIN_URL;?>/admin/assets/images/mainoptions/mini-implement.jpg"><span class="description"><?php _e("", REVSLIDER_TEXTDOMAIN);?></span>
<span class="cbi-title"><?php _e("Implement your Slider", REVSLIDER_TEXTDOMAIN);?></span>
<span class="description" style="text-align:center;min-height:60px;"><?php _e("There are several ways to add your slider to your wordpress post / page / etc.", REVSLIDER_TEXTDOMAIN);?></span>
<div style="float:none; clear:both; height:20px;"></div>
<span class="button-primary revblue rs-embed-slider"><i class="eg-icon-plus-circled"></i><?php _e("Embed Slider", REVSLIDER_TEXTDOMAIN);?> </span>
</span>
</div>
</div>
<div class="buttonarea" style="background-color:#eee; text-align:center">
<a style="width:125px" class='button-primary revgreen' href='javascript:void(0)' id="button_save_slider" ><i class="rs-rp-accordion-icon rs-icon-save-light" style="display: inline-block;vertical-align: middle;width: 18px;height: 20px;margin-right:5px;background-repeat: no-repeat;"></i><?php _e("Save Settings", REVSLIDER_TEXTDOMAIN);?></a>
<span id="loader_update" class="loader_round" style="display:none;background-color:#27AE60 !important; color:#fff;padding: 4px 5px 5px 25px;margin-right: 5px;"><?php _e("updating...", REVSLIDER_TEXTDOMAIN);?> </span>
<span id="update_slider_success" class="success_message"></span>
<a style="width:125px" class='button-primary revred' id="button_delete_slider" href='javascript:void(0)' ><i class="revicon-trash"></i><?php _e("Delete Slider", REVSLIDER_TEXTDOMAIN);?></a>
<a style="width:125px" class='button-primary revyellow' id="button_close_slider_edit" href='<?php echo self::getViewUrl("sliders")?>' ><i class="revicon-cancel"></i><?php _e("Close", REVSLIDER_TEXTDOMAIN);?></a>
<a style="width:125px" class="button-primary revgray" href="javascript:void(0)" id="button_preview_slider" title="<?php _e("Preview Slider", REVSLIDER_TEXTDOMAIN);?>"><i class="revicon-search-1"></i><?php _e("Preview", REVSLIDER_TEXTDOMAIN);?></a>
</div>
</div>
<!-- END OF THE HTML MARKUP FOR THE MAIN SETTINGS -->
</form>
<script>
jQuery('body').on('click', '.rs-embed-slider', function(){
var use_alias = jQuery('#alias').val();
jQuery('.rs-dialog-embed-slider').find('.rs-example-alias').text(use_alias);
jQuery('.rs-dialog-embed-slider').find('.rs-example-alias-1').text('[rev_slider alias="'+use_alias+'"]');
jQuery('.rs-dialog-embed-slider').dialog({
modal: true,
resizable:false,
minWidth:750,
minHeight:300,
closeOnEscape:true
});
});
</script>
<div class="divide20"></div>
<?php
if ($is_edit) {
$custom_css = '';
$custom_js = '';
if (!empty($sliderID)) {
$custom_css = @stripslashes($arrFieldsParams['custom_css']);
$custom_js = @stripslashes($arrFieldsParams['custom_javascript']);
}
?>
<div class="setting_box" id="css-javascript-customs" style="max-width:100%;position:relative;overflow:hidden">
<h3><span class="setting-step-number">6</span><span><?php _e("Custom CSS / Javascript", REVSLIDER_TEXTDOMAIN);?></span></h3>
<div class="inside" id="codemirror-wrapper">
<span class="cbi-title"><?php _e("Custom CSS", REVSLIDER_TEXTDOMAIN)?></span>
<textarea name="custom_css" id="rs_custom_css"><?php echo $custom_css;?></textarea>
<div class="divide20"></div>
<span class="cbi-title"><?php _e("Custom JavaScript", REVSLIDER_TEXTDOMAIN)?></span>
<textarea name="custom_javascript" id="rs_custom_javascript"><?php echo $custom_js;?></textarea>
<div class="divide20"></div>
</div>
</div>
<script type="text/javascript">
rev_cm_custom_css = null;
rev_cm_custom_js = null;
jQuery(document).ready(function(){
rev_cm_custom_css = CodeMirror.fromTextArea(document.getElementById("rs_custom_css"), {
onChange: function(){ },
lineNumbers: true,
mode: 'css',
lineWrapping:true
});
rev_cm_custom_js = CodeMirror.fromTextArea(document.getElementById("rs_custom_javascript"), {
onChange: function(){ },
lineNumbers: true,
mode: 'text/html',
lineWrapping:true
});
jQuery('.rs-cm-refresh').click(function(){
rev_cm_custom_css.refresh();
rev_cm_custom_js.refresh();
});
var hlLineC = rev_cm_custom_css.setLineClass(0, "activeline"),
hlLineJ = rev_cm_custom_js.setLineClass(0, "activeline");
});
</script>
<?php
}
?>
</div>
<div class="settings_panel_right">
<script type="text/javascript">
function drawToolBarPreview() {
var tslideprev = jQuery('.toolbar-sliderpreview'),
tslider = jQuery('.toolbar-slider'),
tslider_image = jQuery('.toolbar-slider-image'),
tprogress = jQuery('.toolbar-progressbar'),
tdot = jQuery('.toolbar-dottedoverlay'),
tthumbs = jQuery('.toolbar-navigation-thumbs'),
ttabs = jQuery('.toolbar-navigation-tabs'),
tbuls = jQuery('.toolbar-navigation-bullets'),
tla = jQuery('.toolbar-navigation-left'),
tra = jQuery('.toolbar-navigation-right');
// DRAW SHADOWS
jQuery('.shadowTypes').css({display:"none"});
tslideprev.removeClass("tp-shadow1").removeClass("tp-shadow2").removeClass("tp-shadow3").removeClass("tp-shadow4").removeClass("tp-shadow5").removeClass("tp-shadow6");
tslideprev.addClass('tp-shadow'+jQuery('#shadow_type').val());
// DRAW PADDING
tslideprev.css({padding:jQuery('#padding').val()+"px"});
// DRAWING BACKGROUND IMAGE OR COLOR
if (jQuery('#show_background_image').attr("checked")==="checked") // DRAWING BACKGROUND IMAGE
tslider.css({background:"url("+jQuery('#background_image').val()+")",
backgroundSize:jQuery('#bg_fit').val(),
backgroundPosition:jQuery('#bg_repeat').val(),
backgroundRepeat:jQuery('#bg_position').val(),
});
else
tslider.css({background:jQuery('#background_color').val()}); // DRAW BACKGROUND COLOR
// DRAWING PROGRESS BAR
var progope = parseInt(jQuery('#progress_opa').val(),0),
progheight = parseInt(jQuery('#progress_height').val(),0);
progope = jQuery.isNumeric(progope) ? progope/100 : 0.15;
progheight = jQuery.isNumeric(progheight) ? progheight : 5;
switch (jQuery('#show_timerbar').val()) {
case "top":
punchgs.TweenLite.set(tprogress,{backgroundColor:jQuery('#progressbar_color').val(),top:"0px",bottom:"auto", height:progheight+"px", opacity:progope});
break;
case "bottom":
punchgs.TweenLite.set(tprogress,{backgroundColor:jQuery('#progressbar_color').val(),bottom:"0px",top:"auto", height:progheight+"px", opacity:progope});
break;
}
if (jQuery('#enable_progressbar').attr('checked')==="checked")
punchgs.TweenLite.set(tprogress,{display:"block"});
else
punchgs.TweenLite.set(tprogress,{display:"none"});
function removeClasses(obj,cs) {
var classes = cs.split(",");
jQuery.each(classes,function(index,c) {
obj.removeClass("tbn-"+c);
});
}
jQuery('.toolbar-sliderpreview').removeClass("outer-left").removeClass("outer-right").removeClass("outer-top").removeClass("outer-bottom").removeClass("inner");
// SHOW / HIDE ARROWS
if (jQuery('#enable_arrows').attr("checked")!=="checked") {
tla.hide();
tra.hide();
} else {
tla.show();
tra.show();
removeClasses(tla,"left,right,center,top,bottom,middle");
removeClasses(tra,"left,right,center,top,bottom,middle");
// LEFT ARROW
var hor = jQuery('#leftarrow_align_hor option:selected').val(),
ver = jQuery('#leftarrow_align_vert option:selected').val();
ver = ver === "center" ? "middle" : ver;
tla.addClass("tbn-"+hor);
tla.addClass("tbn-"+ver);
var ml = Math.ceil(parseInt(jQuery('#leftarrow_offset_hor').val(),0)/4),
mt = Math.ceil(parseInt(jQuery('#leftarrow_offset_vert').val(),0)/4);
if (hor==="right")
tla.css({marginRight:ml+"px",marginLeft:"0px"});
else
tla.css({marginRight:"0px",marginLeft:ml+"px"});
if (ver==="bottom")
tla.css({marginBottom:mt+"px",marginTop:"0px"});
else
tla.css({marginBottom:"0px",marginTop:mt+"px"});
// RIGHT ARROW
hor = jQuery('#rightarrow_align_hor option:selected').val();
ver = jQuery('#rightarrow_align_vert option:selected').val();
ver = ver === "center" ? "middle" : ver;
tra.addClass("tbn-"+hor);
tra.addClass("tbn-"+ver);
ml = Math.ceil(parseInt(jQuery('#rightarrow_offset_hor').val(),0)/4),
mt = Math.ceil(parseInt(jQuery('#rightarrow_offset_vert').val(),0)/4);
if (hor==="right")
tra.css({marginRight:ml+"px",marginLeft:"0px"});
else
tra.css({marginRight:"0px",marginLeft:ml+"px"});
if (ver==="bottom")
tra.css({marginBottom:mt+"px",marginTop:"0px"});
else
tra.css({marginBottom:"0px",marginTop:mt+"px"});
}
// SHOW HIDE BULLETS
if (jQuery('#enable_bullets').attr("checked")!=="checked") {
tbuls.hide();
} else {
tbuls.show();
removeClasses(tbuls,"left,right,center,top,bottom,middle,vertical,horizontal,inner,outer-left,outer-right,outer-top,outer-bottom");
hor = jQuery('#bullets_align_hor option:selected').val();
ver = jQuery('#bullets_align_vert option:selected').val();
ver = ver === "center" ? "middle" : ver;
tbuls.addClass("tbn-"+hor);
tbuls.addClass("tbn-"+ver);
ml = Math.ceil(parseInt(jQuery('#bullets_offset_hor').val(),0)/4),
mt = Math.ceil(parseInt(jQuery('#bullets_offset_vert').val(),0)/4);
if (hor==="right")
tbuls.css({marginRight:ml+"px",marginLeft:"0px"});
else
tbuls.css({marginRight:"0px",marginLeft:ml+"px"});
if (ver==="bottom")
tbuls.css({marginBottom:mt+"px",marginTop:"0px"});
else
tbuls.css({marginBottom:"0px",marginTop:mt+"px"});
tbuls.addClass("tbn-"+jQuery('#bullets_direction option:selected').val());
}
// SHOW HIDE THUMBNAILS
if (jQuery('#enable_thumbnails').attr("checked")!=="checked") {
tthumbs.hide();
} else {
tthumbs.show();
removeClasses(tthumbs,"left,right,center,top,bottom,middle,vertical,horizontal,inner,outer,spanned,outer-left,outer-right,outer-top,outer-bottom");
tthumbs.addClass("tbn-"+jQuery('#thumbnails_align_hor option:selected').val());
var v = jQuery('#thumbnails_align_vert option:selected').val() === "center" ? "middle" : jQuery('#thumbnails_align_vert option:selected').val();
tthumbs.addClass("tbn-"+v);
tthumbs.addClass("tbn-"+jQuery('#thumbnail_direction option:selected').val());
if (jQuery('#span_thumbnails_wrapper').attr("checked")==="checked")
tthumbs.addClass("tbn-spanned");
jQuery('.toolbar-navigation-thumbs-bg').css({background:jQuery('#thumbnails_wrapper_color').val(), opacity:jQuery('#thumbnails_wrapper_opacity').val()/100});
jQuery('.toolbar-sliderpreview').addClass(jQuery('#thumbnails_inner_outer option:selected').val())
tthumbs.addClass("tbn-"+jQuery('#thumbnails_inner_outer option:selected').val())
}
// SHOW HIDE TABS
if (jQuery('#enable_tabs').attr("checked")!=="checked") {
ttabs.hide();
} else {
ttabs.show();
removeClasses(ttabs,"left,right,center,top,bottom,middle,vertical,horizontal,inner,outer,spanned,outer-left,outer-right,outer-top,outer-bottom");
ttabs.addClass("tbn-"+jQuery('#tabs_align_hor option:selected').val());
var v = jQuery('#tabs_align_vert option:selected').val() === "center" ? "middle" : jQuery('#tabs_align_vert option:selected').val();
ttabs.addClass("tbn-"+v);
ttabs.addClass("tbn-"+jQuery('#tabs_direction option:selected').val());
if (jQuery('#span_tabs_wrapper').attr("checked")==="checked")
ttabs.addClass("tbn-spanned");
jQuery('.toolbar-navigation-tabs-bg').css({background:jQuery('#tabs_wrapper_color').val(),opacity:jQuery('#tabs_wrapper_opacity').val()/100});
jQuery('.toolbar-sliderpreview').addClass(jQuery('#tabs_inner_outer option:selected').val());
ttabs.addClass("tbn-"+jQuery('#tabs_inner_outer option:selected').val());
}
// DRAWING DOTTED OVERLAY
tdot.removeClass("twoxtwo").removeClass("twoxtwowhite").removeClass("threexthree").removeClass("threexthreewhite");
tdot.addClass(jQuery('#background_dotted_overlay').val());
}
jQuery(document).ready(function(){
RevSliderAdmin.initEditSlideView();
});
</script>
<form name="form_slider_params" id="form_slider_params" onkeypress="return event.keyCode != 13;">
<!-- ALL SETTINGS -->
<div class="settings_wrapper closeallothers">
<!-- GENERAL SETTINGS -->
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-cog-alt"></i>
<div class="setting_box-arrow"></div>
<span><?php _e("General Settings", REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none;">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#general-slideshow" class="selected"><?php _e('Slideshow', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#general-defaults" class=""><?php _e('Defaults', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#general-progressbar" class="dontshowonhero"><?php _e('Progress Bar', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#general-firstslide" class="dontshowonhero"><?php _e('1st Slide', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#general-misc"><?php _e('Misc.', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<!-- GENERAL MISC. -->
<div id="general-misc" style="display:none">
<?php
if (RevSliderWpml::isWpmlExists()) {
?>
<!-- MULTI LANGUANGE -->
<span id="label_use_wpml" class="label" origtitle="<?php _e("Show multi language controls across the slider. Only available when wpml plugin exists.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Use Multi Language (WPML)", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="use_wpml" name="use_wpml" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'use_wpml', 'off'), "on");?>>
<div class="clearfix"></div>
<?php
}
?>
<div class="dontshowonhero">
<!-- NEXT SLIDE ON FOCUS -->
<span id="label_next_slide_on_window_focus" class="label" origtitle="<?php _e("Call next slide when inactive browser tab is focused again. Use this for avoid dissorted layers and broken timeouts after bluring the browser tab.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Next Slide on Focus", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="next_slide_on_window_focus" name="next_slide_on_window_focus" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'next_slide_on_window_focus', 'off'), "on");?>>
<div class="clearfix"></div>
</div>
</div><!-- end of GENERAL MISC -->
<!-- GENERAL DEFAULTS -->
<div id="general-defaults" style="display:none">
<!-- DELAY -->
<span class="label" id="label_delay" origtitle="<?php _e("The time one slide stays on the screen in Milliseconds. This is a Default Global value. Can be adjusted slide to slide also in the slide editor.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Default Slide Duration", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="delay" name="delay" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'delay', '9000');?>">
<span ><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clearfix"></div>
<!-- Initialisation Delay -->
<span id="label_start_js_after_delay" class="label" origtitle="<?php _e("Sets a delay before the Slider gets initialized", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Initialization Delay", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="start_js_after_delay" name="start_js_after_delay" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'start_js_after_delay', '0');?>">
<span ><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<div id="reset-to-default-inputs">
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-transitions" /> <span id="label_def-transitions" origtitle="<?php _e("Default transition by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label"><?php _e('Transitions', REVSLIDER_TEXTDOMAIN);?></span>
<select id="def-transitions" name="def-transitions" style="max-width:105px" class="withlabel">
<?php
$def_trans = RevSliderFunctions::getVal($arrFieldsParams, 'def-transition', 'fade');
foreach ($transitions as $handle => $name) {
$not = (strpos($handle, 'notselectable') !== false) ? ' disabled="disabled"' : '';
$sel = ($def_trans == $handle) ? ' selected="selected"' : '';
echo '<option value="' . $handle . '"' . $not . $sel . '>' . $name . '</option>';
}
?>
</select>
<div class="clear"></div>
<?php $def_trans_dur = RevSliderFunctions::getVal($arrFieldsParams, 'def-transition_duration', '300');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-transition_duration" /> <span id="label_def-transition_duration" origtitle="<?php _e("Default transition duration by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label" origtitle=""><?php _e('Animation Duration', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="def-transition_duration" name="def-transition_duration" value="<?php echo $def_trans_dur;?>">
<span><?php _e('ms', REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<?php
$img_sizes = RevSliderBase::get_all_image_sizes();
$bg_image_size = RevSliderFunctions::getVal($arrFieldsParams, 'def-image_source_type', 'full');
?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-image_source_type" /> <span id="label_def-image_source_type" class="label" origtitle="<?php _e("Default main image source size by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" ><?php _e('Image Source Size', REVSLIDER_TEXTDOMAIN);?></span>
<select name="image_source_type">
<?php
foreach ($img_sizes as $imghandle => $imgSize) {
$sel = ($bg_image_size == $imghandle) ? ' selected="selected"' : '';
echo '<option value="' . $imghandle . '"' . $sel . '>' . $imgSize . '</option>';
}
?>
</select>
<div class="clear"></div>
<?php
$bgFit = RevSliderFunctions::getVal($arrFieldsParams, 'def-background_fit', 'cover');
$bgFitX = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_fit_x', '100');
$bgFitY = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_fit_y', '100');
?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-background_fit" /> <span id="label_background_fit" origtitle="<?php _e("Default background size by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label"><?php _e('Background Fit', REVSLIDER_TEXTDOMAIN);?></span>
<select id="background_fit" name="def-background_fit" style="max-width: 105px;" class="withlabel">
<option value="cover"<?php selected($bgFit, 'cover');?>>cover</option>
<option value="contain"<?php selected($bgFit, 'contain');?>>contain</option>
<option value="percentage"<?php selected($bgFit, 'percentage');?>>(%, %)</option>
<option value="normal"<?php selected($bgFit, 'normal');?>>normal</option>
</select>
<input type="text" name="def-bg_fit_x" style="<?php if ($bgFit != 'percentage') {
echo 'display: none; ';
}
?> width:60px;margin-right:10px" value="<?php echo $bgFitX;?>" />
<input type="text" name="def-bg_fit_y" style="<?php if ($bgFit != 'percentage') {
echo 'display: none; ';
}
?> width:60px;margin-right:10px" value="<?php echo $bgFitY;?>" />
<div class="clear"></div>
<?php
$bgPosition = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_position', 'center center');
$bgPositionX = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_position_x', '0');
$bgPositionY = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_position_y', '0');
?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-bg_position" /> <span id="label_slide_bg_position" origtitle="<?php _e("Default background position by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label"><?php _e('Background Position', REVSLIDER_TEXTDOMAIN);?></span>
<select name="def-bg_position" id="slide_bg_position">
<option value="center top"<?php selected($bgPosition, 'center top');?>>center top</option>
<option value="center right"<?php selected($bgPosition, 'center right');?>>center right</option>
<option value="center bottom"<?php selected($bgPosition, 'center bottom');?>>center bottom</option>
<option value="center center"<?php selected($bgPosition, 'center center');?>>center center</option>
<option value="left top"<?php selected($bgPosition, 'left top');?>>left top</option>
<option value="left center"<?php selected($bgPosition, 'left center');?>>left center</option>
<option value="left bottom"<?php selected($bgPosition, 'left bottom');?>>left bottom</option>
<option value="right top"<?php selected($bgPosition, 'right top');?>>right top</option>
<option value="right center"<?php selected($bgPosition, 'right center');?>>right center</option>
<option value="right bottom"<?php selected($bgPosition, 'right bottom');?>>right bottom</option>
</select>
<input type="text" name="def-bg_position_x" style="<?php if ($bgPosition != 'percentage') {
echo 'display: none;';
}
?>width:60px;margin-right:10px" value="<?php echo $bgPositionX;?>" />
<input type="text" name="def-bg_position_y" style="<?php if ($bgPosition != 'percentage') {
echo 'display: none;';
}
?>width:60px;margin-right:10px" value="<?php echo $bgPositionY;?>" />
<div class="clear"></div>
<?php
$bgRepeat = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_repeat', 'no-repeat');
?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-bg_repeat" />
<span id="slide_bg_repeat" origtitle="<?php _e("Default background repeat by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label"><?php _e('Background Repeat', REVSLIDER_TEXTDOMAIN);?></span>
<select name="def-bg_repeat" id="slide_bg_repeat" style="margin-right:20px">
<option value="no-repeat"<?php selected($bgRepeat, 'no-repeat');?>>no-repeat</option>
<option value="repeat"<?php selected($bgRepeat, 'repeat');?>>repeat</option>
<option value="repeat-x"<?php selected($bgRepeat, 'repeat-x');?>>repeat-x</option>
<option value="repeat-y"<?php selected($bgRepeat, 'repeat-y');?>>repeat-y</option>
</select>
<div class="clear"></div>
<?php $kenburn_effect = RevSliderFunctions::getVal($arrFieldsParams, 'def-kenburn_effect', 'off');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kenburn_effect" />
<span id="def-kenburn_effect" origtitle="<?php _e("Default Ken/Burn setting by creating a new slide.", REVSLIDER_TEXTDOMAIN);?>" class="label"><?php _e('Ken Burns / Pan Zoom:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="def-kenburn_effect" name="def-kenburn_effect" data-unchecked="off" <?php checked($kenburn_effect, 'on');?>>
<div class="clear"></div>
<div id="def-kenburns-wrapper" <?php if ($kenburn_effect == 'off') {
echo 'style="display: none;"';
}
?>>
<?php $kb_start_fit = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_start_fit', '100');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_start_fit" />
<span id="label_kb_start_fit" class="label"><?php _e('Start Fit: (in %):', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_start_fit" value="<?php echo intval($kb_start_fit);?>" />
<div class="clear"></div>
<?php $kb_easing = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_easing', 'Linear.easeNone');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_easing" /> <span id="label_kb_easing" class="label"><?php _e('Easing:', REVSLIDER_TEXTDOMAIN);?></span>
<select name="def-kb_easing">
<option <?php selected($kb_easing, 'Linear.easeNone');?> value="Linear.easeNone">Linear.easeNone</option>
<option <?php selected($kb_easing, 'Power0.easeIn');?> value="Power0.easeIn">Power0.easeIn (linear)</option>
<option <?php selected($kb_easing, 'Power0.easeInOut');?> value="Power0.easeInOut">Power0.easeInOut (linear)</option>
<option <?php selected($kb_easing, 'Power0.easeOut');?> value="Power0.easeOut">Power0.easeOut (linear)</option>
<option <?php selected($kb_easing, 'Power1.easeIn');?> value="Power1.easeIn">Power1.easeIn</option>
<option <?php selected($kb_easing, 'Power1.easeInOut');?> value="Power1.easeInOut">Power1.easeInOut</option>
<option <?php selected($kb_easing, 'Power1.easeOut');?> value="Power1.easeOut">Power1.easeOut</option>
<option <?php selected($kb_easing, 'Power2.easeIn');?> value="Power2.easeIn">Power2.easeIn</option>
<option <?php selected($kb_easing, 'Power2.easeInOut');?> value="Power2.easeInOut">Power2.easeInOut</option>
<option <?php selected($kb_easing, 'Power2.easeOut');?> value="Power2.easeOut">Power2.easeOut</option>
<option <?php selected($kb_easing, 'Power3.easeIn');?> value="Power3.easeIn">Power3.easeIn</option>
<option <?php selected($kb_easing, 'Power3.easeInOut');?> value="Power3.easeInOut">Power3.easeInOut</option>
<option <?php selected($kb_easing, 'Power3.easeOut');?> value="Power3.easeOut">Power3.easeOut</option>
<option <?php selected($kb_easing, 'Power4.easeIn');?> value="Power4.easeIn">Power4.easeIn</option>
<option <?php selected($kb_easing, 'Power4.easeInOut');?> value="Power4.easeInOut">Power4.easeInOut</option>
<option <?php selected($kb_easing, 'Power4.easeOut');?> value="Power4.easeOut">Power4.easeOut</option>
<option <?php selected($kb_easing, 'Back.easeIn');?> value="Back.easeIn">Back.easeIn</option>
<option <?php selected($kb_easing, 'Back.easeInOut');?> value="Back.easeInOut">Back.easeInOut</option>
<option <?php selected($kb_easing, 'Back.easeOut');?> value="Back.easeOut">Back.easeOut</option>
<option <?php selected($kb_easing, 'Bounce.easeIn');?> value="Bounce.easeIn">Bounce.easeIn</option>
<option <?php selected($kb_easing, 'Bounce.easeInOut');?> value="Bounce.easeInOut">Bounce.easeInOut</option>
<option <?php selected($kb_easing, 'Bounce.easeOut');?> value="Bounce.easeOut">Bounce.easeOut</option>
<option <?php selected($kb_easing, 'Circ.easeIn');?> value="Circ.easeIn">Circ.easeIn</option>
<option <?php selected($kb_easing, 'Circ.easeInOut');?> value="Circ.easeInOut">Circ.easeInOut</option>
<option <?php selected($kb_easing, 'Circ.easeOut');?> value="Circ.easeOut">Circ.easeOut</option>
<option <?php selected($kb_easing, 'Elastic.easeIn');?> value="Elastic.easeIn">Elastic.easeIn</option>
<option <?php selected($kb_easing, 'Elastic.easeInOut');?> value="Elastic.easeInOut">Elastic.easeInOut</option>
<option <?php selected($kb_easing, 'Elastic.easeOut');?> value="Elastic.easeOut">Elastic.easeOut</option>
<option <?php selected($kb_easing, 'Expo.easeIn');?> value="Expo.easeIn">Expo.easeIn</option>
<option <?php selected($kb_easing, 'Expo.easeInOut');?> value="Expo.easeInOut">Expo.easeInOut</option>
<option <?php selected($kb_easing, 'Expo.easeOut');?> value="Expo.easeOut">Expo.easeOut</option>
<option <?php selected($kb_easing, 'Sine.easeIn');?> value="Sine.easeIn">Sine.easeIn</option>
<option <?php selected($kb_easing, 'Sine.easeInOut');?> value="Sine.easeInOut">Sine.easeInOut</option>
<option <?php selected($kb_easing, 'Sine.easeOut');?> value="Sine.easeOut">Sine.easeOut</option>
<option <?php selected($kb_easing, 'SlowMo.ease');?> value="SlowMo.ease">SlowMo.ease</option>
</select>
<div class="clear"></div>
<?php /* Provider: - $bgEndPosition = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_end_position', 'center top');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-bg_end_position" /> <span id="label_bg_end_position" class="label"><?php _e('End Position:', REVSLIDER_TEXTDOMAIN);?></span>
<select name="def-bg_end_position" id="slide_bg_end_position">
<option <?php selected($bgEndPosition, 'center top');?> value="center top">center top</option>
<option <?php selected($bgEndPosition, 'center right');?> value="center right">center right</option>
<option <?php selected($bgEndPosition, 'center bottom');?> value="center bottom">center bottom</option>
<option <?php selected($bgEndPosition, 'center center');?> value="center center">center center</option>
<option <?php selected($bgEndPosition, 'left top');?> value="left top">left top</option>
<option <?php selected($bgEndPosition, 'left center');?> value="left center">left center</option>
<option <?php selected($bgEndPosition, 'left bottom');?> value="left bottom">left bottom</option>
<option <?php selected($bgEndPosition, 'right top');?> value="right top">right top</option>
<option <?php selected($bgEndPosition, 'right center');?> value="right center">right center</option>
<option <?php selected($bgEndPosition, 'right bottom');?> value="right bottom">right bottom</option>
</select>
<?php
$bgEndPositionX = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_end_position_x', '0');
$bgEndPositionY = RevSliderFunctions::getVal($arrFieldsParams, 'def-bg_end_position_y', '0');
?>
<input type="text" name="def-bg_end_position_x" style="<?php if ($bgEndPosition != 'percentage') {
echo ' display: none;';
}
?>width:60px;margin-right:10px" value="<?php echo $bgEndPositionX;?>" />
<input type="text" name="def-bg_end_position_y" style="<?php if ($bgEndPosition != 'percentage') {
echo ' display: none;';
}
?>width:60px;margin-right:10px" value="<?php echo $bgEndPositionY;?>" />
<div class="clear"></div>
*/
?>
<?php $kb_end_fit = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_end_fit', '100');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_end_fit" /> <span id="label_kb_end_fit" class="label"><?php _e('End Fit: (in %):', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_end_fit" value="<?php echo intval($kb_end_fit);?>" />
<div class="clear"></div>
<?php $kb_start_offset_x = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_start_offset_x', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_start_offset_x" /> <span id="label_kb_end_fit" class="label"><?php _e('Start Offset X:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_start_offset_x" value="<?php echo intval($kb_start_offset_x);?>" />
<div class="clear"></div>
<?php $kb_start_offset_y = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_start_offset_y', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_start_offset_y" /> <span id="label_kb_end_fit" class="label"><?php _e('Start Offset Y:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_start_offset_y" value="<?php echo intval($kb_start_offset_y);?>" />
<div class="clear"></div>
<?php $kb_start_rotate = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_start_rotate', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_start_rotate" /> <span id="label_kb_end_fit" class="label"><?php _e('End Offset Y:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_start_rotate" value="<?php echo intval($kb_start_rotate);?>" />
<div class="clear"></div>
<?php $kb_end_offset_x = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_end_offset_x', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_end_offset_x" /> <span id="label_kb_end_fit" class="label"><?php _e('End Offset X:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_end_offset_x" value="<?php echo intval($kb_end_offset_x);?>" />
<div class="clear"></div>
<?php $kb_end_offset_y = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_end_offset_y', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_end_offset_y" /> <span id="label_kb_end_fit" class="label"><?php _e('End Offset Y:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_end_offset_y" value="<?php echo intval($kb_end_offset_y);?>" />
<div class="clear"></div>
<?php $kb_end_rotate = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_end_rotate', '0');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_end_rotate" /> <span id="label_kb_end_fit" class="label"><?php _e('End Offset Y:', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_end_rotate" value="<?php echo intval($kb_end_rotate);?>" />
<div class="clear"></div>
<?php $kb_duration = RevSliderFunctions::getVal($arrFieldsParams, 'def-kb_duration', '10000');?>
<input type="checkbox" class="rs-ingore-save rs-reset-slide-setting" name="reset-kb_duration" /> <span id="label_kb_duration" class="label"><?php _e('Duration (in ms):', REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" name="def-kb_duration" value="<?php echo intval($kb_duration);?>" />
<div class="clear"></div>
</div>
<span class="overwrite-arrow"></span>
<input type="button" id="reset_slide_button" value="<?php _e('Overwrite Selected Settings on all Slides', REVSLIDER_TEXTDOMAIN);?>" class="button-primary revblue" origtitle="">
<div class="clear"></div>
</div>
</div> <!-- END OF GENERAL DEFAULTS -->
<!-- GENERAL FIRST SLIDE -->
<div id="general-firstslide" style="display:none">
<span id="label_start_with_slide" class="label" origtitle="<?php _e("Start from a different slide instead of the first slide. I.e. good for preview / edit mode.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Alternative 1st Slide", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="start_with_slide" name="start_with_slide" value="1">
<div class="clear"></div>
<span id="label_first_transition_active" class="label" origtitle="<?php _e("If active, it will overwrite the first slide transition. Use it to get special transition for the first slide.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("First Transition Active", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="first_transition_active" name="first_transition_active" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "first_transition_active", "off"), "on");?>>
<div class="clear"></div>
<div id="first_transition_row" class="withsublabels">
<span id="label_first_transition_type" class="label" origtitle="<?php _e("First slide transition type", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Transition Type", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="first_transition_type" name="first_transition_type" style="max-width:100px" class="withlabel">
<?php
$transitions = $operations->getArrTransition();
$ftt = RevSliderFunctions::getVal($arrFieldsParams, 'first_transition_type', 'fade');
foreach ($transitions as $handle => $name) {
$not = (strpos($handle, 'notselectable') !== false) ? ' disabled="disabled"' : '';
$sel = ($handle == $ftt) ? ' selected="selected"' : '';
echo '<option value="' . $handle . '"' . $not . $sel . '>' . $name . '</option>';
}
?>
</select>
<div class="clear"></div>
<span id="label_first_transition_duration" class="label" origtitle="<?php _e("First slide transition duration.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Transition Duration", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="first_transition_duration" name="first_transition_duration" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "first_transition_duration", "300");?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_first_transition_slot_amount" class="label" origtitle="<?php _e("The number of slots or boxes the slide is divided into.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Transition Slot Amount", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="first_transition_slot_amount" name="first_transition_slot_amount" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "first_transition_slot_amount", "7");?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div><!-- END OF GENERAL FIRST SLIDE -->
<!-- GENERAL SLIDE SHOW -->
<div id="general-slideshow" style="display:block;">
<div class="dontshowonhero">
<!-- Stop Slider on Hover -->
<span id="label_stop_on_hover" class="label" origtitle="<?php _e("Stops the Timer when mouse is hovering the slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Stop Slide On Hover", REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="stop_on_hover" name="stop_on_hover" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'stop_on_hover', 'off'), "on");?>>
<div class="clear"></div>
<!-- Stop Slider -->
<span class="label label-with-subsection" id="label_stop_slider" origtitle="<?php _e("Stops the slideshow after the predefined loop amount at the predefined slide.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Stop Slider After ...", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="stop_slider" name="stop_slider" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'stop_slider', 'off'), 'on');?>>
<div class="clear"></div>
<div id="stopoptionsofslider" class="withsublabels">
<!-- Stop After loops -->
<span class="label " id="label_stop_after_loops" origtitle="<?php _e("Stops the slider after certain amount of loops. 0 related to the first loop.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Amount of Loops", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="stop_after_loops" name="stop_after_loops" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'stop_after_loops', '0');?>">
<div class="clear"></div>
<!-- Stop At Slide -->
<span class="label" id="label_stop_at_slide" origtitle="<?php _e("Stops the slider at the given slide", REVSLIDER_TEXTDOMAIN);?>"><?php _e("At Slide", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="stop_at_slide" name="stop_at_slide" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'stop_at_slide', '2');?>">
<div class="clear"></div>
</div>
<!-- SHUFFLE -->
<span id="label_shuffle" class="label" origtitle="<?php _e("Randomize the order of the slides at every Page reload.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Shuffle / Random Mode", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="shuffle" name="shuffle" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'shuffle', 'off'), "on");?>>
<div class="clearfix"></div>
<!-- Loop Single Slide -->
<span class="label" id="label_loop_slide" origtitle="<?php _e("If only one Slide is in the Slider, you can choose wether the Slide should loop or if it should stop. If only one Slide exist, slide will be duplicated !", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Loop Single Slide", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="loop_slide" name="loop_slide" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'loop_slide', 'off'), "on");?>>
<div class="clear"></div>
</div>
<!-- ViewPort Slider -->
<span class="label label-with-subsection" origtitle="<?php _e("Allow to stop the Slider out of viewport.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Stop Slider Out of ViewPort", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="label_viewport" name="label_viewport" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'label_viewport', 'off'), 'on');?>>
<div class="clear"></div>
<div id="viewportoptionsofslider" class="withsublabels" <?php if(RevSliderFunctions::getVal($arrFieldsParams, 'label_viewport', 'off') == 'off') echo 'style="display: none;"'; ?>>
<span class="label"><?php _e('Out Of ViewPort:', REVSLIDER_TEXTDOMAIN);?></span>
<select name="viewport_start">
<option value="wait" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'viewport_start', 'wait'), "wait");?>><?php _e("Wait", REVSLIDER_TEXTDOMAIN);?></option>
<option value="pause" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'viewport_start', 'wait'), "pause");?>><?php _e("Pause", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" origmedia="show" origtitle="<?php _e("Min. Size of Slider must be in Viewport before slide starts again.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Area out of ViewPort:", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="viewport_area" name="viewport_area" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'viewport_area', '80');?>">
<span><?php _e("%", REVSLIDER_TEXTDOMAIN);?></span>
</div>
</div><!-- END OF GENERAL SLIDE SHOW -->
<!-- GENERAL PROGRESSBAR -->
<div id="general-progressbar" style="display:none">
<span class="label" id="label_enable_progressbar" origmedia='show' origtitle="<?php _e("Enable / disable progress var", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Progress Bar Active", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="enable_progressbar" name="enable_progressbar" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "enable_progressbar", "off"), "on");?>>
<div id="progressbar_settings">
<!-- Show Progressbar -->
<span class="label" id="label_show_timerbar" origmedia="show" origtitle="<?php _e("Position of the progress bar.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Progress Bar Position", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="show_timerbar" name="show_timerbar" class="withlabel" >
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'show_timerbar', 'top'), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'show_timerbar', 'top'), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<!-- Progress Bar Height -->
<span class="label" id="label_progress_height" origmedia="show" origtitle="<?php _e("The height of the progress bar", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Progress Bar Heigth", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="progress_height" name="progress_height" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'progress_height', '5');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<!-- Progress Bar Opacity -->
<span class="label" id="label_progress_opa" origmedia="show" origtitle="<?php _e("The opacity of the progress bar <br>(0 == Transparent, 100 = Solid color, 50 = 50% opacity etc...)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Progress Bar Opacity", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="progress_opa" name="progress_opa" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'progress_opa', '15');?>">
<span><?php _e("%", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<!-- Progress Bar Color -->
<span class="label" id="label_progressbar_color" origmedia="show" origtitle="<?php _e("Color of the progress bar.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Progress Bar Color", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="my-color-field rs-layer-input-field tipsy_enabled_top withlabel" title="<?php _e("Font Color", REVSLIDER_TEXTDOMAIN);?>" id="progressbar_color" name="progressbar_color" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'progressbar_color', '#000000');?>" />
<div class="clear"></div>
</div>
</div><!-- END OF GENERAL PROGRESSBAR -->
</div>
<script>
jQuery('#stop_slider').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#stopoptionsofslider').show();
} else {
jQuery('#stopoptionsofslider').hide();
}
drawToolBarPreview();
});
jQuery('#label_viewport').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#viewportoptionsofslider').show();
} else {
jQuery('#viewportoptionsofslider').hide();
}
drawToolBarPreview();
});
jQuery('#enable_progressbar').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr('checked')!=="checked")
jQuery('#progressbar_settings').hide();
else
jQuery('#progressbar_settings').show();
drawToolBarPreview();
});
jQuery('#progress_height').on("keyup",drawToolBarPreview);
jQuery('#progress_opa').on("keyup",drawToolBarPreview);
jQuery('#enable_progressbar').change();
jQuery('#stop_slider').change();
jQuery('#show_timerbar').change();
// ALTERNATIVE FIRST SLIDE
jQuery('#first_transition_active').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#first_transition_row').show();
} else {
jQuery('#first_transition_row').hide();
}
});
jQuery('#first_transition_active').change();
</script>
</div><!-- END OF GENERAL SETTINGS -->
<!-- LAYOUT VISAL SETTINGS -->
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-droplet"></i>
<div class="setting_box-arrow"></div>
<span><?php _e("Layout & Visual", REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#visual-appearance" class="selected"><?php _e('Appearance', REVSLIDER_TEXTDOMAIN);?></li>
<!--<li data-content="#visual-sizing"><?php _e('Sizing', REVSLIDER_TEXTDOMAIN);?></li> -->
<li data-content="#visual-spinner"><?php _e('Spinner', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#visual-mobile"><?php _e('Mobile', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#visual-position"><?php _e('Position', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<!-- VISUAL Mobile -->
<div id="visual-mobile" style="display:none">
<span class="label" id="label_disable_on_mobile" origtitle="<?php _e("If this is enabled, the slider will not be loaded on mobile devices.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Disable Slider on Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="disable_on_mobile" name="disable_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "disable_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<span class="label" id="label_disable_kenburns_on_mobile" origtitle="<?php _e("This will disable KenBurns on mobile devices to save performance", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Disable KenBurn On Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="disable_kenburns_on_mobile" name="disable_kenburns_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "disable_kenburns_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<h4><?php _e("Hide Element Under Width:", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_hide_slider_under" origtitle="<?php _e("Hide the slider under the defined slider width. Value 0 will disable the function.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Slider", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_slider_under" name="hide_slider_under" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "hide_slider_under", "0");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_defined_layers_under" style="font-size:12px" origtitle="<?php _e("Hide the selected layers (set layers hide under in slide editor) under the defined slider width. Value 0 will disable the function.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Predefined Layers", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_defined_layers_under" name="hide_defined_layers_under" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "hide_defined_layers_under", "0");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_all_layers_under" origtitle="<?php _e("Hide all layers under the defined slider width. Value 0 will disable the function.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("All Layers", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_all_layers_under" name="hide_all_layers_under" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "hide_all_layers_under", "0");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div><!-- VISUAL MOBILE -->
<!-- VISUAL APPEARANCE -->
<div id="visual-appearance" style="display:block">
<span class="label" id="label_shadow_type" origmedia='show' origtitle="<?php _e("The Shadow display underneath the banner.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Shadow Type", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="shadow_type" class="withlabel" name="shadow_type">
<option value="0" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "0");?>><?php _e("No Shadow", REVSLIDER_TEXTDOMAIN);?></option>
<option value="1" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "1");?>>1</option>
<option value="2" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "2");?>>2</option>
<option value="3" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "3");?>>3</option>
<option value="4" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "4");?>>4</option>
<option value="5" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "5");?>>5</option>
<option value="6" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'shadow_type', '0'), "6");?>>6</option>
</select>
<div class="clear"></div>
<span class="label" id="label_background_dotted_overlay" origmedia="show" origtitle="<?php _e("Show a dotted overlay over the slides.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Dotted Overlay Size", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="background_dotted_overlay" name="background_dotted_overlay" class="withlabel">
<option value="none" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'background_dotted_overlay', 'none'), "none");?>><?php _e("none", REVSLIDER_TEXTDOMAIN);?></option>
<option value="twoxtwo" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'background_dotted_overlay', 'none'), "twoxtwo");?>><?php _e("2 x 2 Black", REVSLIDER_TEXTDOMAIN);?></option>
<option value="twoxtwowhite" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'background_dotted_overlay', 'none'), "twoxtwowhite");?>><?php _e("2 x 2 White", REVSLIDER_TEXTDOMAIN);?></option>
<option value="threexthree" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'background_dotted_overlay', 'none'), "threexthree");?>><?php _e("3 x 3 Black", REVSLIDER_TEXTDOMAIN);?></option>
<option value="threexthreewhite" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'background_dotted_overlay', 'none'), "threexthreewhite");?>><?php _e("3 x 3 White", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<h4><?php _e("Slider Background", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_background_color" origmedia="showbg" origtitle="<?php _e("General background color for slider. Clear value to get transparent slider container.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Background color", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="my-color-field rs-layer-input-field tipsy_enabled_top withlabel" title="<?php _e("Font Color", REVSLIDER_TEXTDOMAIN);?>" id="background_color" name="background_color" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'background_color', 'transparent');?>" />
<div class="clear"></div>
<span class="label" id="label_padding" origmedia="showbg" origtitle="<?php _e("Padding around the slider. Together with background color shows as slider border.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Padding as Border", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="padding" name="padding" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'padding', '0');?>">
<div class="clear"></div>
<span class="label" id="label_show_background_image" origmedia="showbg" origtitle="<?php _e("Use a general background image instead of general background color.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Show Background Image", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="show_background_image" name="show_background_image" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'show_background_image', 'off'), "on");?>>
<div class="clear"></div>
<div id="background_settings" class="withsublabels">
<span class="label" id="label_background_image" origmedia="showbg" origtitle="<?php _e("The source of the general background image.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Background Image Url", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar-long withlabel" style="width: 104px;" id="background_image" name="background_image" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'background_image', '');?>"> <a href="javascript:void(0)" class="button-image-select-bg-img button-primary revblue"><?php _e('Set', REVSLIDER_TEXTDOMAIN); ?></a>
<div class="clear"></div>
<span class="label" id="label_bg_fit" origmedia="showbg" origtitle="<?php _e("General background image size. Cover - always fill the container, cuts overlays. Contain- always fits image into slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Background Fit", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="bg_fit" name="bg_fit" class="withlabel">
<option value="cover" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_fit', 'cover'), "cover");?>><?php _e("cover", REVSLIDER_TEXTDOMAIN);?></option>
<option value="contain" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_fit', 'cover'), "contain");?>><?php _e("contain", REVSLIDER_TEXTDOMAIN);?></option>
<option value="normal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_fit', 'cover'), "normal");?>><?php _e("normal", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_bg_repeat" origmedia="showbg" origtitle="<?php _e("General background image repeat attitude. Used for tiled images.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Background Repeat", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="bg_repeat" name="bg_repeat" class="withlabel">
<option value="no-repeat" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_repeat', 'no-repeat'), "no-repeat");?>><?php _e("no-repeat", REVSLIDER_TEXTDOMAIN);?></option>
<option value="repeat" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_repeat', 'no-repeat'), "repeat");?>><?php _e("repeat", REVSLIDER_TEXTDOMAIN);?></option>
<option value="repeat-x" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_repeat', 'no-repeat'), "repeat-x");?>><?php _e("repeat-x", REVSLIDER_TEXTDOMAIN);?></option>
<option value="repeat-y" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_repeat', 'no-repeat'), "repeat-y");?>><?php _e("repeat-y", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_bg_position" origmedia="showbg" origtitle="<?php _e("General background image position. i.e. center center to always center vertical and horizontal the image in the slider background.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Background Position", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="bg_position" name="bg_position" class="withlabel">
<option value="center top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "center top");?>><?php _e("center top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "center right");?>><?php _e("center right", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "center bottom");?>><?php _e("center bottom", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "center center");?>><?php _e("center center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="left top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "left top");?>><?php _e("left top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="left center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "left center");?>><?php _e("left center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="left bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "left bottom");?>><?php _e("left bottom", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "right top");?>><?php _e("right top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "right center");?>><?php _e("right center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bg_position', 'center center'), "right bottom");?>><?php _e("right bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
</div>
</div> <!-- / VISUAL APPEARANCE -->
<!-- VISUAL POSITION -->
<div id="visual-position" style="display:none;">
<span class="label" id="label_position" origtitle="<?php _e("The position of the slider within the parrent container. (float:left or float:right or with margin:0px auto;). We recomment do use always CENTER, since the slider will auto fill and grow with the wrapping container. Set any border,padding, floating etc. to the wrapping container where the slider embeded instead of using left/right here !", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Position on the page", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="position" class="withlabel" name="position">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'position', 'center'), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'position', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'position', 'center'), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_margin_top" origtitle="<?php _e("The top margin of the slider wrapper div", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Margin Top", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="margin_top" name="margin_top" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'margin_top', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_margin_bottom" origtitle="<?php _e("The bottom margin of the slider wrapper div", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Margin Bottom", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="margin_bottom" name="margin_bottom" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'margin_bottom', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<div id="leftrightmargins">
<span class="label" id="label_margin_left" origtitle="<?php _e("The left margin of the slider wrapper div", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Margin Left", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="margin_left" name="margin_left" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'margin_left', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_margin_right" origtitle="<?php _e("The right margin of the slider wrapper div", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Margin Right", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="margin_right" name="margin_right" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'margin_right', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div> <!-- / VISUAL POSITION -->
<!-- VISUAL SPINNER -->
<div id="visual-spinner" style="display:none;">
<div id="spinner_preview"><div class="tp-loader tp-demo spinner2" style="background-color: rgb(255, 255, 255);"><div class="dot1"></div><div class="dot2"></div><div class="bounce1"></div><div class="bounce2"></div><div class="bounce3"></div></div></div>
<div style="height:15px;width:100%;"></div>
<span class="label" id="label_use_spinner" origtitle="<?php _e("Select a Spinner for your Slider", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Choose Spinner", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="use_spinner" name="use_spinner" class="withlabel">
<option value="-1" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "-1");?>><?php _e("Off", REVSLIDER_TEXTDOMAIN);?></option>
<option value="0" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "0");?>><?php _e("0", REVSLIDER_TEXTDOMAIN);?></option>
<option value="1" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "1");?>><?php _e("1", REVSLIDER_TEXTDOMAIN);?></option>
<option value="2" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "2");?>><?php _e("2", REVSLIDER_TEXTDOMAIN);?></option>
<option value="3" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "3");?>><?php _e("3", REVSLIDER_TEXTDOMAIN);?></option>
<option value="4" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "4");?>><?php _e("4", REVSLIDER_TEXTDOMAIN);?></option>
<option value="5" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "use_spinner", "0"), "5");?>><?php _e("5", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="spinner_color_row">
<span id="label_spinner_color" class="label" origtitle="<?php _e("The Color the Spinner will be shown in", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Spinner Color", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="my-color-field rs-layer-input-field tipsy_enabled_top withlabel" title="<?php _e("Font Color", REVSLIDER_TEXTDOMAIN);?>" id="spinner_color" name="spinner_color" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "spinner_color", "#FFFFFF");?>" />
</div>
<div class="clear"></div>
</div> <!-- / VISUAL SPINNER -->
</div>
<script type="text/javascript">
jQuery(document).on("ready",function() {
/* Provider: - *
* set shadow type
*/
// SHADOW TYPES
jQuery("#shadow_type").change(function() {
var sel = jQuery(this).val();
drawToolBarPreview();
});
// BACKGROUND IMAGE SCRIPT
jQuery('#show_background_image').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#background_settings').show();
} else {
jQuery('#background_settings').hide();
}
});
jQuery('#show_background_image').change();
jQuery('#padding').change(drawToolBarPreview).on("keyup",drawToolBarPreview);
jQuery('#background_dotted_overlay').change(drawToolBarPreview);
// POSITION SCRIPT
jQuery('#position').on("change",function() {
var sbi = jQuery(this);
switch (jQuery(this).val()) {
case "left":
case "right":
jQuery('#leftrightmargins').show();
break;
case "center":
jQuery('#leftrightmargins').hide();
break;
}
drawToolBarPreview();
});
jQuery('#position').change();
// SPINNER SCRIPT
jQuery('#use_spinner').on("change",function() {
switch (jQuery(this).val()) {
case "-1":
case "0":
case "5":
jQuery('#spinner_color_row').hide();
break;
default:
jQuery('#spinner_color_row').show();
break;
}
});
jQuery('#use_spinner').change();
// TAB CHANGES
jQuery('.main-options-small-tabs').find('li').click(function() {
var li = jQuery(this),
ul = li.closest('.main-options-small-tabs');
jQuery(ul.find('.selected').data('content')).hide();
ul.find('.selected').removeClass("selected");
jQuery(li.data('content')).show();
li.addClass("selected");
})
});
</script>
</div> <!-- END OF LAYOUT VISUAL SETTINGS -->
<!-- NAVIGATION SETTINGS -->
<div class="setting_box dontshowonhero" id="navigation-settings-wrapper">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-flickr"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('Navigation', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none;">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#navigation-arrows" class="selected"><?php _e('Arrows', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#navigation-bullets"><?php _e('Bullets', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#navigation-tabs"><?php _e('Tabs', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#navigation-thumbnails"><?php _e('Thumbs', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#navigation-touch"><?php _e('Touch', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#navigation-keyboard"><?php _e('Misc.', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<!-- NAVIGATION ARROWS -->
<div id="navigation-arrows">
<span class="label" id="label_enable_arrows" origtitle="<?php _e("Enable / Disable Arrows", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Enable Arrows", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="enable_arrows" name="enable_arrows" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "enable_arrows", "off"), "on");?>>
<div id="nav_arrows_subs">
<span class="label triggernavstyle" id="label_navigation_arrow_style" origtitle="<?php _e("Look of the navigation Arrows", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Arrows Style", REVSLIDER_TEXTDOMAIN);?></span>
<select id="navigation_arrow_style" name="navigation_arrow_style" class=" withlabel triggernavstyle">
<option value="" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'navigation_arrow_style', 'round'), ''); ?>><?php _e('No Style', REVSLIDER_TEXTDOMAIN); ?></option>
<?php
if (!empty($arr_navigations)) {
foreach ($arr_navigations as $cur_nav) {
if (isset($cur_nav['markup']['arrows'])) {
?>
<option value="<?php echo esc_attr($cur_nav['handle']);?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'navigation_arrow_style', 'round'), esc_attr($cur_nav['handle']));?>><?php echo esc_attr($cur_nav['name']);?></option>
<?php
}
}
}
?>
</select>
<div class="clear"></div>
<h4><?php _e("Visibility", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_arrows_always_on" origtitle="<?php _e("Enable to make arrows always visible. Disable to hide arrows after the defined time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Always Show ", REVSLIDER_TEXTDOMAIN);?></span>
<select id="arrows_always_on" name="arrows_always_on" class=" withlabel showhidewhat_truefalse" data-showhidetarget="hide_after_arrow">
<option value="false" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'arrows_always_on', 'false'), "false");?>><?php _e("Yes", REVSLIDER_TEXTDOMAIN);?></option>
<option value="true" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'arrows_always_on', 'false'), "true");?>><?php _e("No", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="hide_after_arrow">
<span class="label" id="label_hide_arrows" origtitle="<?php _e("Time after the Arrows will be hidden(Default: 200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_arrows" name="hide_arrows" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_arrows', '200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_arrows_mobile" origtitle="<?php _e("Time after the Arrows will be hidden on Mobile(Default: 1200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After on Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_arrows_mobile" name="hide_arrows_mobile" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_arrows_mobile', '1200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_arrows_on_mobile" origtitle="<?php _e("Force Hide Navigation Arrows under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide Under", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_under_arrow" id="hide_arrows_on_mobile" name="hide_arrows_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_arrows_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_under_arrow" class="withsublabels">
<span id="label_arrows_under_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation Arrows are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="arrows_under_hidden" name="arrows_under_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'arrows_under_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_arrows_over" origtitle="<?php _e("Force Hide Navigation over width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide Over", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_over_arrow" id="hide_arrows_over" name="hide_arrows_over" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_arrows_over", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_over_arrow" class="withsublabels">
<span id="label_arrows_over_hidden" class="label" origtitle="<?php _e("If browser size goes over this value, then Navigation Arrows are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="arrows_over_hidden" name="arrows_over_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'arrows_over_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<h4><?php _e("Left Arrow Position", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_leftarrow_align_hor" origtitle="<?php _e("Horizontal position of the left arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="leftarrow_align_hor" name="leftarrow_align_hor" class="withlabel">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_hor", "left"), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_hor", "left"), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_hor", "left"), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_leftarrow_align_vert" origtitle="<?php _e("Vertical position of the left arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Align", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="leftarrow_align_vert" name="leftarrow_align_vert" class="withlabel">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_vert", "center"), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_vert", "center"), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_align_vert", "center"), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span id="label_leftarrow_offset_hor" class="label" origtitle="<?php _e("Offset from current horizontal position of of left arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Offset", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="leftarrow_offset_hor" name="leftarrow_offset_hor" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'leftarrow_offset_hor', '20');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_leftarrow_offset_vert" class="label" origtitle="<?php _e("Offset from current vertical position of of left arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Offset", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="leftarrow_offset_vert" name="leftarrow_offset_vert" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "leftarrow_offset_vert", "0");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<h4><?php _e("Right Arrow Position", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_rightarrow_align_hor" origtitle="<?php _e("Horizontal position of the right arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Align", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="rightarrow_align_hor" name="rightarrow_align_hor" class="withlabel">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_hor", "right"), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_hor", "right"), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_hor", "right"), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span id="label_rightarrow_align_vert" class="label" origtitle="<?php _e("Vertical position of the right arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Align", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="rightarrow_align_vert" name="rightarrow_align_vert" class="withlabel">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_vert", "center"), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_vert", "center"), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_align_vert", "center"), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span id="label_rightarrow_offset_hor" class="label" origtitle="<?php _e("Offset from current horizontal position of of right arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Offset", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="rightarrow_offset_hor" name="rightarrow_offset_hor" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_offset_hor", "20");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_rightarrow_offset_vert" class="label" origtitle="<?php _e("Offset from current vertical position of of right arrow.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="rightarrow_offset_vert" name="rightarrow_offset_vert" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "rightarrow_offset_vert", "0");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div><!-- END OF NAVIGATION ARROWS -->
<!-- NAVIGATION BULLETS -->
<div id="navigation-bullets" style="display:none;">
<span class="label" id="label_enable_bullets" origtitle="<?php _e("Enable / Disable Bullets", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Enable Bullets", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="enable_bullets" name="enable_bullets" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "enable_bullets", "off"), "on");?>>
<div id="nav_bullets_subs">
<span class="label triggernavstyle" id="label_navigation_bullets_style" origtitle="<?php _e("Look of the Bullets", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Bullet Style", REVSLIDER_TEXTDOMAIN);?></span>
<select id="navigation_bullets_style" name="navigation_bullets_style" class="triggernavstyle withlabel">
<option value="" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'navigation_bullets_style', 'round'), ''); ?>><?php _e('No Style', REVSLIDER_TEXTDOMAIN); ?></option>
<?php
if (!empty($arr_navigations)) {
foreach ($arr_navigations as $cur_nav) {
if (isset($cur_nav['markup']['bullets'])) {
?>
<option value="<?php echo esc_attr($cur_nav['handle']);?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'navigation_bullets_style', 'round'), esc_attr($cur_nav['handle']));?>><?php echo esc_attr($cur_nav['name']);?></option>
<?php
}
}
}
?>
</select>
<div class="clear"></div>
<span class="label" id="label_bullets_space" origtitle="<?php _e("Space between the bullets.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Space", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="bullets_space" name="bullets_space" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'bullets_space', '5');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_bullets_direction" origtitle="<?php _e("Direction of the Bullets. Vertical or Horizontal.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Direction", REVSLIDER_TEXTDOMAIN);?></span>
<select id="bullets_direction" name="bullets_direction" class=" withlabel">
<option value="horizontal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_direction', 'horizontal'), "horizontal");?>><?php _e("Horizontal", REVSLIDER_TEXTDOMAIN);?></option>
<option value="vertical" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_direction', 'horizontal'), "vertical");?>><?php _e("Vertical", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<h4><?php _e("Visibility", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_bullets_always_on" origtitle="<?php _e("Enable to make bullets always visible. Disable to hide bullets after the defined time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Always Show", REVSLIDER_TEXTDOMAIN);?></span>
<select id="bullets_always_on" name="bullets_always_on" class=" withlabel showhidewhat_truefalse" data-showhidetarget="hide_after_bullets">
<option value="false" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_always_on', 'false'), "false");?>><?php _e("Yes", REVSLIDER_TEXTDOMAIN);?></option>
<option value="true" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_always_on', 'false'), "true");?>><?php _e("No", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="hide_after_bullets">
<span class="label" id="label_hide_bullets" origtitle="<?php _e("Time after that the bullets will be hidden(Default: 200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_bullets" name="hide_bullets" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_bullets', '200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_bullets_mobile" origtitle="<?php _e("Time after the bullets will be hidden on Mobile (Default: 1200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After on Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_bullets_mobile" name="hide_bullets_mobile" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_bullets_mobile', '1200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_bullets_on_mobile" origtitle="<?php _e("Force Hide Navigation Bullets under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide under Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_under_bullet" id="hide_bullets_on_mobile" name="hide_bullets_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_bullets_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_under_bullet" class="withsublabels">
<span id="label_bullets_under_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation bullets are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="bullets_under_hidden" name="bullets_under_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'bullets_under_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_bullets_over" origtitle="<?php _e("Force Hide Navigation Bullets over width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide over Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_over_bullet" id="hide_bullets_over" name="hide_bullets_over" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_bullets_over", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_over_bullet" class="withsublabels">
<span id="label_bullets_over_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation bullets are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="bullets_over_hidden" name="bullets_over_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'bullets_over_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<h4><?php _e("Position", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_bullets_align_hor" origtitle="<?php _e("Horizontal position of bullets ");?>"><?php _e("Horizontal Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="bullets_align_hor" name="bullets_align_hor" class=" withlabel">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_hor', 'center'), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_hor', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_hor', 'center'), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_bullets_align_vert" origtitle="<?php _e("Vertical positions of bullets ", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="bullets_align_vert" name="bullets_align_vert" class="withlabel">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_vert', 'bottom'), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_vert', 'bottom'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'bullets_align_vert', 'bottom'), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_bullets_offset_hor" origtitle="<?php _e("Offset from current horizontal position.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="bullets_offset_hor" name="bullets_offset_hor" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'bullets_offset_hor', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_bullets_offset_vert" origtitle="<?php _e("Offset from current Vertical position.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="bullets_offset_vert" name="bullets_offset_vert" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'bullets_offset_vert', '20');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div><!-- END OF NAVIGATION BULLETS -->
<!-- NAVIGATION THUMBNAILS -->
<div id="navigation-thumbnails" style="display:none;">
<span class="label" id="label_enable_thumbnails" origtitle="<?php _e("Enable / Disable Thumbnails", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Enable Thumbnails", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="enable_thumbnails" name="enable_thumbnails" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "enable_thumbnails", "off"), "on");?>>
<div id="nav_thumbnails_subs">
<h4><?php _e("Wrapper Container", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_thumbnails_padding" origtitle="<?php _e("The wrapper div padding of thumbnails", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper Padding", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="thumbnails_padding" name="thumbnails_padding" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_padding', '5');?>">
<div class="clear"></div>
<span class="label" id="label_span_thumbnails_wrapper" origtitle="<?php _e("Span wrapper to full width or full height based on the direction selected", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Span Wrapper", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="span_thumbnails_wrapper" name="span_thumbnails_wrapper" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "span_thumbnails_wrapper", "off"), "on");?>>
<span class="label" id="label_thumbnails_wrapper_color" origtitle="<?php _e("Thumbnails wrapper background color. For transparent leave empty.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper color", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="my-color-field rs-layer-input-field tipsy_enabled_top withlabel" title="<?php _e("Wrapper Color", REVSLIDER_TEXTDOMAIN);?>" id="thumbnails_wrapper_color" name="thumbnails_wrapper_color" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_wrapper_color', 'transparent');?>" />
<div class="clear"></div>
<span class="label" id="label_thumbnails_wrapper_opacity" origtitle="<?php _e("Opacity of the Wrapper container. 0 - transparent, 50 - 50% opacity...", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper Opacity", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumbnails_wrapper_opacity" name="thumbnails_wrapper_opacity" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_wrapper_opacity', '100');?>">
<div class="clear"></div>
<h4><?php _e("Thumbnails", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label triggernavstyle" id="label_thumbnails_style" origtitle="<?php _e("Style of the thumbnails.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Thumbnails Style", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbnails_style" name="thumbnails_style" class="triggernavstyle withlabel">
<option value="" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_style', 'round'), ''); ?>><?php _e('No Style', REVSLIDER_TEXTDOMAIN); ?></option>
<?php
if (!empty($arr_navigations)) {
foreach ($arr_navigations as $cur_nav) {
if (isset($cur_nav['markup']['thumbs'])) {
?>
<option value="<?php echo esc_attr($cur_nav['handle']);?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_style', 'round'), esc_attr($cur_nav['handle']));?>><?php echo esc_attr($cur_nav['name']);?></option>
<?php
}
}
}
?>
</select>
<div class="clear"></div>
<span id="label_thumb_amount" class="label" origtitle="<?php _e("The amount of max visible Thumbnails in the same time. ", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Visible Thumbs Amount", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumb_amount" name="thumb_amount" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "thumb_amount", "5");?>">
<div class="clear"></div>
<span class="label" id="label_thumbnails_space" origtitle="<?php _e("Space between the thumbnails.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Space", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumbnails_space" name="thumbnails_space" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_space', '5');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_thumbnail_direction" origtitle="<?php _e("Direction of the Thumbnails. Vertical or Horizontal.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Direction", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbnail_direction" name="thumbnail_direction" class=" withlabel">
<option value="horizontal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnail_direction', 'horizontal'), "horizontal");?>><?php _e("Horizontal", REVSLIDER_TEXTDOMAIN);?></option>
<option value="vertical" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnail_direction', 'horizontal'), "vertical");?>><?php _e("Vertical", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<h4><?php _e("Thumbnail Size", REVSLIDER_TEXTDOMAIN);?></h4>
<span id="label_thumb_width" class="label" origtitle="<?php _e("The basic Width of one Thumbnail.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Thumb Width", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumb_width" name="thumb_width" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "thumb_width", "100");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_thumb_height" class="label" origtitle="<?php _e("The basic Height of one Thumbnail.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Thumb Height", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumb_height" name="thumb_height" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "thumb_height", "50");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_thumb_width_min" class="label" origtitle="<?php _e("The minimum width of the auto resized thumbs. Between Max and Min width the sizes are auto calculated).", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Min Thumb Width", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumb_width_min" name="thumb_width_min" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "thumb_width_min", "100");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<h4><?php _e("Visibility", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_thumbs_always_on" origtitle="<?php _e("Enable to make thumbnails always visible. Disable to hide thumbnails after the defined time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Always Show ", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbs_always_on" name="thumbs_always_on" class=" withlabel showhidewhat_truefalse" data-showhidetarget="hide_after_thumbs">
<option value="false" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbs_always_on', 'false'), "false");?>><?php _e("Yes", REVSLIDER_TEXTDOMAIN);?></option>
<option value="true" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbs_always_on', 'false'), "true");?>><?php _e("No", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="hide_after_thumbs">
<span class="label" id="label_hide_thumbs" origtitle="<?php _e("Time after that the thumbnails will be hidden(Default: 200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_thumbs" name="hide_thumbs" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_thumbs', '200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_thumbs_mobile" origtitle="<?php _e("Time after that the thumbnails will be hidden on Mobile (Default: 1200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After on Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_thumbs_mobile" name="hide_thumbs_mobile" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_thumbs_mobile', '1200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_thumbs_on_mobile" origtitle="<?php _e("Force Hide Navigation Thumbnails under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide under Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_under_thumb" id="hide_thumbs_on_mobile" name="hide_thumbs_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_thumbs_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_under_thumb" class="withsublabels">
<span id="label_thumbs_under_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation thumbs are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="thumbs_under_hidden" name="thumbs_under_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbs_under_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_thumbs_over" origtitle="<?php _e("Force Hide Navigation Thumbnails under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide over Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_over_thumb" id="hide_thumbs_over" name="hide_thumbs_over" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_thumbs_over", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_over_thumb" class="withsublabels">
<span id="label_thumbs_over_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation thumbs are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="thumbs_over_hidden" name="thumbs_over_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbs_over_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<h4><?php _e("Position", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_thumbnails_inner_outer" origtitle="<?php _e("Put the thumbnails inside or outside of the slider container. Outside added thumbnails will decrease the size of the slider.");?>"><?php _e("Inner / outer", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbnails_inner_outer" name="thumbnails_inner_outer" class=" withlabel">
<option value="inner" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_inner_outer', 'inner'), "inner");?>><?php _e("Inner Slider", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_inner_outer', 'inner'), "outer-left");?>><?php _e("Outer Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_inner_outer', 'inner'), "outer-right");?>><?php _e("Outer Right", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_inner_outer', 'inner'), "outer-top");?>><?php _e("Outer Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_inner_outer', 'inner'), "outer-bottom");?>><?php _e("Outer Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_thumbnails_align_hor" origtitle="<?php _e("Horizontal position of thumbnails");?>"><?php _e("Horizontal Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbnails_align_hor" name="thumbnails_align_hor" class=" withlabel">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_hor', 'center'), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_hor', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_hor', 'center'), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_thumbnails_align_vert" origtitle="<?php _e("Vertical position of thumbnails", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="thumbnails_align_vert" name="thumbnails_align_vert" class="withlabel">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_vert', 'bottom'), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_vert', 'bottom'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_align_vert', 'bottom'), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_thumbnails_offset_hor" origtitle="<?php _e("Offset from current Horizontal position.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumbnails_offset_hor" name="thumbnails_offset_hor" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_offset_hor', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_thumbnails_offset_vert" origtitle="<?php _e("Offset from current Vertical position.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="thumbnails_offset_vert" name="thumbnails_offset_vert" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'thumbnails_offset_vert', '20');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div>
<!-- END OF NAVIGATION THUMBNAILS -->
<!-- NAVIGATION TABS-->
<div id="navigation-tabs" style="display:none;">
<span class="label" id="label_enable_tabs" origtitle="<?php _e("Enable / Disable navigation tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Enable Tabs", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="enable_tabs" name="enable_tabs" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "enable_tabs", "off"), "on");?>>
<div id="nav_tabs_subs">
<h4><?php _e("Wrapper Container", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_tabs_padding" origtitle="<?php _e("The wrapper div padding of tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper Padding", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="tabs_padding" name="tabs_padding" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_padding', '5');?>">
<div class="clear"></div>
<span class="label" id="label_span_tabs_wrapper" origtitle="<?php _e("Span wrapper to full width or full height based on the direction selected.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Span Wrapper", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="span_tabs_wrapper" name="span_tabs_wrapper" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "span_tabs_wrapper", "off"), "on");?>>
<span class="label" id="label_tabs_wrapper_color" origtitle="<?php _e("Tabs wrapper background color. For transparent leave empty.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper Color", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="my-color-field rs-layer-input-field tipsy_enabled_top withlabel" title="<?php _e("Wrapper Color", REVSLIDER_TEXTDOMAIN);?>" id="tabs_wrapper_color" name="tabs_wrapper_color" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_wrapper_color', 'transparent');?>" />
<div class="clear"></div>
<span class="label" id="label_tabs_wrapper_opacity" origtitle="<?php _e("Opacity of the Wrapper container. 0 - transparent, 50 - 50% opacity...", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Wrapper Opacity", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_wrapper_opacity" name="tabs_wrapper_opacity" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_wrapper_opacity', '5');?>">
<div class="clear"></div>
<h4><?php _e("Tabs", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="triggernavstyle label" id="label_tabs_style" origtitle="<?php _e("Style of the tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Tabs Style", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_style" name="tabs_style" class="triggernavstyle withlabel">
<option value="" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_style', 'round'), ''); ?>><?php _e('No Style', REVSLIDER_TEXTDOMAIN); ?></option>
<?php
if (!empty($arr_navigations)) {
foreach ($arr_navigations as $cur_nav) {
if (isset($cur_nav['markup']['tabs'])) {
?>
<option value="<?php echo esc_attr($cur_nav['handle']);?>" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_style', 'round'), esc_attr($cur_nav['handle']));?>><?php echo esc_attr($cur_nav['name']);?></option>
<?php
}
}
}
?>
</select>
<div class="clear"></div>
<span id="label_tabs_amount" class="label" origtitle="<?php _e("The amount of max visible tabs in same time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Visible Tabs Amount", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_amount" name="tabs_amount" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "tabs_amount", "5");?>">
<div class="clear"></div>
<span class="label" id="label_tabs_space" origtitle="<?php _e("Space between the tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Space", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_space" name="tabs_space" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_space', '5');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_tabs_direction" origtitle="<?php _e("Direction of the Tabs. Vertical or Horizontal.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Direction", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_direction" name="tabs_direction" class=" withlabel">
<option value="horizontal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_direction', 'horizontal'), "horizontal");?>><?php _e("Horizontal", REVSLIDER_TEXTDOMAIN);?></option>
<option value="vertical" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_direction', 'horizontal'), "vertical");?>><?php _e("Vertical", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<h4><?php _e("Tab Sizes", REVSLIDER_TEXTDOMAIN);?></h4>
<span id="label_tabs_width" class="label" origtitle="<?php _e("The basic width of one tab.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Tabs Width", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_width" name="tabs_width" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "tabs_width", "100");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_tabs_height" class="label" origtitle="<?php _e("the basic height of one tab.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Tabs Height", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_height" name="tabs_height" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "tabs_height", "50");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span id="label_tabs_width_min" class="label" origtitle="<?php _e("The minimum width of the auto resized Tabs. Between Max and Min width the sizes are auto calculated).", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Min. Tab Width", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_width_min" name="tabs_width_min" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "tabs_width_min", "100");?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<h4><?php _e("Visibility", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_tabs_always_on" origtitle="<?php _e("Enable to make tabs always visible. Disable to hide tabs after the defined time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Always Show ", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_always_on" name="tabs_always_on" class=" withlabel showhidewhat_truefalse" data-showhidetarget="hide_after_tabs">
<option value="false" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_always_on', 'false'), "false");?>><?php _e("Yes", REVSLIDER_TEXTDOMAIN);?></option>
<option value="true" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_always_on', 'false'), "true");?>><?php _e("No", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="hide_after_tabs">
<span class="label" id="label_hide_tabs" origtitle="<?php _e("Time after that the tabs will be hidden(Default: 200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_tabs" name="hide_tabs" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_tabs', '200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_hide_tabs_mobile" origtitle="<?php _e("Time after that the tabs will be hidden on Mobile (Default: 1200 ms)", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide After on Mobile", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="hide_tabs_mobile" name="hide_tabs_mobile" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'hide_tabs_mobile', '1200');?>">
<span><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_tabs_on_mobile" origtitle="<?php _e("Force Hide Navigation tabs under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide under Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_under_tab" id="hide_tabs_on_mobile" name="hide_tabs_on_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_tabs_on_mobile", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_under_tab" class="withsublabels">
<span id="label_tabs_under_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation tabs are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="tabs_under_hidden" name="tabs_under_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_under_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<span class="label" id="label_hide_tabs_over" origtitle="<?php _e("Force Hide Navigation tabs under width", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Hide over Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel showhidewhat_truefalse" data-showhidetarget="hide_over_tab" id="hide_tabs_over" name="hide_tabs_over" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "hide_tabs_over", "off"), "on");?>>
<div class="clear"></div>
<div id="hide_over_tab" class="withsublabels">
<span id="label_tabs_over_hidden" class="label" origtitle="<?php _e("If browser size goes below this value, then Navigation tabs are hidden.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Width", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="tabs_over_hidden" name="tabs_over_hidden" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_over_hidden', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<h4><?php _e("Position", REVSLIDER_TEXTDOMAIN);?></h4>
<span class="label" id="label_tabs_inner_outer" origtitle="<?php _e("Put the tabs inside or outside of the slider container. Outside added tabs will decrease the size of the slider.");?>"><?php _e("Inner / outer", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_inner_outer" name="tabs_inner_outer" class=" withlabel">
<option value="inner" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_inner_outer', 'inner'), "inner");?>><?php _e("Inner Slider", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_inner_outer', 'inner'), "outer-left");?>><?php _e("Outer Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_inner_outer', 'inner'), "outer-right");?>><?php _e("Outer Right", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_inner_outer', 'inner'), "outer-top");?>><?php _e("Outer Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="outer-bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_inner_outer', 'inner'), "outer-bottom");?>><?php _e("Outer Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_tabs_align_hor" origtitle="<?php _e("Horizontal position of tabs.");?>"><?php _e("Horizontal Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_align_hor" name="tabs_align_hor" class=" withlabel">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_hor', 'center'), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_hor', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_hor', 'center'), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_tabs_align_vert" origtitle="<?php _e("Vertical position of tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Align", REVSLIDER_TEXTDOMAIN);?></span>
<select id="tabs_align_vert" name="tabs_align_vert" class="withlabel">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_vert', 'bottom'), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_vert', 'bottom'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'tabs_align_vert', 'bottom'), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_tabs_offset_hor" origtitle="<?php _e("Offset from current horizontal position of tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_offset_hor" name="tabs_offset_hor" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_offset_hor', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<span class="label" id="label_tabs_offset_vert" origtitle="<?php _e("Offset from current vertical position of tabs.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Offset", REVSLIDER_TEXTDOMAIN);?></span>
<input type="text" class="text-sidebar withlabel" id="tabs_offset_vert" name="tabs_offset_vert" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'tabs_offset_vert', '20');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div>
<!-- END OF NAVIGATION TABS-->
<!-- TOUCH NAVIGATION -->
<div id="navigation-touch" style="display:none;">
<span class="label" id="label_touchenabled" origtitle="<?php _e("Enable Swipe Function on touch devices", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Touch Enabled", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="touchenabled" name="touchenabled" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "touchenabled", "off"), "on");?>>
<div class="clear"></div>
<span class="label" id="label_drag_block_vertical" origtitle="<?php _e("Scroll below slider on vertical swipe", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Drag Block Vertical", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="drag_block_vertical" name="drag_block_vertical" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "drag_block_vertical", "off"), "on");?>>
<div class="clear"></div>
<span class="label" id="label_swipe_velocity" origtitle="<?php _e("Defines the sensibility of gestures. Smaller values mean a higher sensibility", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Swipe Treshhold (0 - 200)", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="swipe_velocity" name="swipe_velocity" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "swipe_velocity", "75");?>">
<div class="clear"></div>
<span class="label" id="label_swipe_min_touches" origtitle="<?php _e("Defines how many fingers are needed minimum for swiping", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Swipe Min Finger", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="swipe_min_touches" name="swipe_min_touches" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "swipe_min_touches", "50");?>">
<div class="clear"></div>
<span class="label" id="label_swipe_direction" origtitle="<?php _e("Swipe Direction to swap slides?", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Swipe Direction", REVSLIDER_TEXTDOMAIN);?></span>
<select id="swipe_direction" name="swipe_direction" class="withlabel">
<option value="horizontal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'swipe_direction', 'horizontal'), "horizontal");?>><?php _e("Horizontal", REVSLIDER_TEXTDOMAIN);?></option>
<option value="vertical" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'swipe_direction', 'horizontal'), "vertical");?>><?php _e("Vertical", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
</div> <!-- END TOUCH NAVIGATION -->
<!-- KEYBOARD NAVIGATION -->
<div id="navigation-keyboard" style="display:none;">
<span class="label" id="label_keyboard_navigation" origtitle="<?php _e("Allow/disallow to navigate the slider with keyboard.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Keyboard Navigation", REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="keyboard_navigation" name="keyboard_navigation" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'keyboard_navigation', 'off'), "on");?>>
<div class="clear"></div>
<span class="label" id="label_keyboard_direction" origtitle="<?php _e("Keyboard Direction to swap slides (horizontal - left/right arrow, vertical - up/down arrow)?", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Key Direction", REVSLIDER_TEXTDOMAIN);?></span>
<select id="keyboard_direction" name="keyboard_direction" class="withlabel">
<option value="horizontal" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'keyboard_direction', 'horizontal'), "horizontal");?>><?php _e("Horizontal", REVSLIDER_TEXTDOMAIN);?></option>
<option value="vertical" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'keyboard_direction', 'horizontal'), "vertical");?>><?php _e("Vertical", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_mousescroll_navigation" origtitle="<?php _e("Allow/disallow to navigate the slider with Mouse Scroll.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Mouse Scroll Navigation", REVSLIDER_TEXTDOMAIN);?></span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="mousescroll_navigation" name="mousescroll_navigation" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'mousescroll_navigation', 'off'), "on");?>>
<div class="clear"></div>
</div><!-- END KEYBOARD NAVIGATION -->
</div>
<script>
jQuery('#navigation-settings-wrapper input, #navigation-settings-wrapper select').on("change",drawToolBarPreview);
// NOT NICE, BUT SURELY UNBREAKABLE LATER :)
jQuery('#enable_arrows').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#nav_arrows_subs').show();
} else {
jQuery('#nav_arrows_subs').hide();
}
drawToolBarPreview();
});
jQuery('#enable_bullets').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#nav_bullets_subs').show();
} else {
jQuery('#nav_bullets_subs').hide();
}
drawToolBarPreview();
});
jQuery('#enable_thumbnails').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#nav_thumbnails_subs').show();
} else {
jQuery('#nav_thumbnails_subs').hide();
}
drawToolBarPreview();
});
jQuery('#enable_tabs').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#nav_tabs_subs').show();
} else {
jQuery('#nav_tabs_subs').hide();
}
drawToolBarPreview();
});
jQuery('.showhidewhat_truefalse').on("change",function() {
var sbi = jQuery(this);
if (sbi.val() === true || sbi.val() === "true" || sbi.attr("checked")) {
jQuery("#"+sbi.data("showhidetarget")).show();
} else {
jQuery("#"+sbi.data("showhidetarget")).hide();
}
});
jQuery('#thumbnails_inner_outer').on('change',function() {
var sbi = jQuery(this),
v = sbi.find('option:selected').val();
if (v==="outer-top" || v==="outer-bottom") {
if (v==="outer-top") jQuery('#thumbnails_align_vert').val("top");
if (v==="outer-bottom") jQuery('#thumbnails_align_vert').val("bottom");
jQuery('#thumbnails_align_vert').attr("disabled","disabled");
jQuery('#thumbnail_direction').val("horizontal");
jQuery('#thumbnail_direction').change();
}
else
jQuery('#thumbnails_align_vert').removeAttr("disabled");
if (v==="outer-left" || v==="outer-right") {
if (v==="outer-left") jQuery('#thumbnails_align_hor').val("left");
if (v==="outer-right") jQuery('#thumbnails_align_hor').val("right");
jQuery('#thumbnails_align_hor').attr("disabled","disabled");
jQuery('#thumbnail_direction').val("vertical");
jQuery('#thumbnail_direction').change();
}
else
jQuery('#thumbnails_align_hor').removeAttr("disabled");
if (v==="outer-left" || v==="outer-right" || v==="outer-top" || v==="outer-bottom")
jQuery('#thumbnail_direction').attr("disabled","disabled");
else
jQuery('#thumbnail_direction').removeAttr("disabled");
});
jQuery('#tabs_inner_outer').on('change',function() {
var sbi = jQuery(this),
v = sbi.find('option:selected').val();
if (v==="outer-top" || v==="outer-bottom") {
if (v==="outer-top") jQuery('#tabs_align_vert').val("top");
if (v==="outer-bottom") jQuery('#tabs_align_vert').val("bottom");
jQuery('#tabs_align_vert').attr("disabled","disabled");
jQuery('#tabs_direction').val("horizontal");
jQuery('#tabs_direction').change();
jQuery('#tabs_direction').attr("disabled","disabled");
}
else
jQuery('#tabs_align_vert').removeAttr("disabled");
if (v==="outer-left" || v==="outer-right") {
if (v==="outer-left") jQuery('#tabs_align_hor').val("left");
if (v==="outer-right") jQuery('#tabs_align_hor').val("right");
jQuery('#tabs_align_hor').attr("disabled","disabled");
jQuery('#tabs_direction').val("vertical");
jQuery('#tabs_direction').change();
jQuery('#tabs_direction').attr("disabled","disabled");
}
else
jQuery('#tabs_align_hor').removeAttr("disabled");
if (v==="outer-left" || v==="outer-right" || v==="outer-top" || v==="outer-bottom")
jQuery('#tabs_direction').removeAttr("disabled","disabled");
});
jQuery('.showhidewhat_truefalse').change();
jQuery('#thumbnails_inner_outer').change();
jQuery('#tabs_inner_outer').change();
jQuery('#enable_arrows').change();
jQuery('#enable_thumbnails').change();
jQuery('#enable_bullets').change();
jQuery('#enable_tabs').change();
</script>
</div><!-- END OF NAVIGATION SETTINGS -->
<!-- CAROUSEL SETTINGS -->
<div class="setting_box dontshowonhero dontshowonstandard">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-ccw"></i>
<div class="setting_box-arrow"></div>
<span><?php _e("Carousel Settings", REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display: none;">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#carousel-basics" class="selected"><?php _e('Basics', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#carousel-trans"><?php _e('Transformations', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#carousel-aligns"><?php _e('Aligns', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<div id="carousel-basics">
<!-- Infinity -->
<span class="label" id="label_carousel_infinity" origtitle="<?php _e("Infinity Carousel Scroll. No Endpoints exists at first and last slide if valuse is set to ON.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Infinity Scroll", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_infinity" name="carousel_infinity" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_infinity', 'off'), 'on');?>>
<div class="clearfix"></div>
<!-- Carousel Spaces -->
<span class="label" id="label_carousel_space" origtitle="<?php _e("The horizontal gap/space between the slides", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Space between slides", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="carousel_space" name="carousel_space" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_space', '0');?>">
<span><?php _e("px", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
<!-- Border Radius -->
<span class="label" id="label_carousel_borderr" origtitle="<?php _e("The border radius of slides", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Border Radius", REVSLIDER_TEXTDOMAIN);?> </span>
<input style="width:60px;min-width:60px;max-width:60px;" type="text" class="text-sidebar withlabel" id="carousel_borderr" name="carousel_borderr" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_borderr', '0');?>">
<!-- Border Radius Unit -->
<select style="width:45px;min-width:45px;max-width:45px;" id="carousel_borderr_unit" name="carousel_borderr_unit">
<option value="px" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_borderr_unit', 'px'), "px");?>><?php _e("px", REVSLIDER_TEXTDOMAIN);?></option>
<option value="%" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_borderr_unit', 'px'), "%");?>><?php _e("%", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<!-- Padding -->
<span class="label" id="label_carousel_padding_top" origtitle="<?php _e("The padding top of slides", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Padding Top", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="carousel_padding_top" name="carousel_padding_top" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_padding_top', '0');?>"> <?php _e('px', REVSLIDER_TEXTDOMAIN); ?>
<span class="label" id="label_carousel_padding_bottom" origtitle="<?php _e("The padding bottom of slides", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Padding Bottom", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="carousel_padding_bottom" name="carousel_padding_bottom" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_padding_bottom', '0');?>"> <?php _e('px', REVSLIDER_TEXTDOMAIN); ?>
<!-- Carousel Max Visible Items -->
<span class="label" id="label_carousel_maxitems" origtitle="<?php _e("The maximum visible items in same time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Max. Visible Items", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="carousel_maxitems" class="withlabel" name="carousel_maxitems">
<option value="1" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "1");?>><?php _e("1", REVSLIDER_TEXTDOMAIN);?></option>
<option value="3" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "3");?>><?php _e("3", REVSLIDER_TEXTDOMAIN);?></option>
<option value="5" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "5");?>><?php _e("5", REVSLIDER_TEXTDOMAIN);?></option>
<option value="7" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "7");?>><?php _e("7", REVSLIDER_TEXTDOMAIN);?></option>
<option value="9" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "9");?>><?php _e("9", REVSLIDER_TEXTDOMAIN);?></option>
<option value="11" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "11");?>><?php _e("11", REVSLIDER_TEXTDOMAIN);?></option>
<option value="13" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "13");?>><?php _e("13", REVSLIDER_TEXTDOMAIN);?></option>
<option value="15" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "15");?>><?php _e("15", REVSLIDER_TEXTDOMAIN);?></option>
<option value="17" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "17");?>><?php _e("17", REVSLIDER_TEXTDOMAIN);?></option>
<option value="19" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxitems', '3'), "19");?>><?php _e("19", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<!-- Carousel Stretch Out -->
<span class="label" id="label_carousel_stretch" origtitle="<?php _e("Stretch carousel element width to the wrapping container width. Using this you can see only 1 item in same time.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Stretch Element", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_stretch" name="carousel_stretch" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_stretch', 'off'), 'on');?>>
<div class="clearfix"></div>
<div class="clear"></div>
</div>
<div id="carousel-trans" style="display:none">
<!-- Carousel Fade Out -->
<span class="label" id="label_carousel_fadeout" origtitle="<?php _e("All elements out of focus will get some Opacity value based on the Distance to the current focused element, or only the coming/leaving elements.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Fade All Elements", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_fadeout" name="carousel_fadeout" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_fadeout', 'on'), "on");?>>
<div class="clearfix"></div>
<div id="carousel-fade-row" class="withsublabels">
<!-- Carousel Rotation Varying Out -->
<span class="label" id="label_carousel_varyfade" origtitle="<?php _e("Fade is varying based on the distance to the focused element.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Varying Fade", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_varyfade" name="carousel_varyfade" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_varyfade', 'off'), "on");?>>
<div class="clearfix"></div>
</div>
<!-- Carousel Rotation -->
<span class="label label-with-subsection" id="label_carousel_rotation" origtitle="<?php _e("Rotation enabled/disabled for not focused elements.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Rotation", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_rotation" name="carousel_rotation" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_rotation', 'off'), "on");?>>
<div class="clearfix"></div>
<div id="carousel-rotation-row" class="withsublabels">
<!-- Carousel Rotation Varying Out -->
<span class="label" id="label_carousel_varyrotate" origtitle="<?php _e("Rotation is varying based on the distance to the focused element.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Varying Rotation", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_varyrotate" name="carousel_varyrotate" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_varyrotate', 'off'), "on");?>>
<div class="clearfix"></div>
<!-- Carousel Max Rotation -->
<span class="label" id="label_carousel_maxrotation" origtitle="<?php _e("The maximum rotation of the Side elements. Rotation will depend on the element distance to the current focused element. 0 will turn off the Rotation", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Max. Rotation", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="carousel_maxrotation" name="carousel_maxrotation" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_maxrotation', '0');?>">
<span><?php _e("deg", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear" ></div>
</div>
<!-- Carousel Scale -->
<span class="label label-with-subsection" id="label_carousel_scale" origtitle="<?php _e("Scale enabled/disabled for not focused elements.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Scale", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_scale" name="carousel_scale" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_scale', 'off'), "on");?>>
<div class="clearfix"></div>
<div id="carousel-scale-row" class="withsublabels">
<!-- Carousel Scale Varying Out -->
<span class="label" id="label_carousel_varyscale" origtitle="<?php _e("Scale is varying based on the distance to the focused element.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Varying Scale", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="carousel_varyscale" name="carousel_varyscale" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_varyscale', 'off'), "on");?>>
<div class="clearfix"></div>
<!-- Carousel Min Scale Down -->
<span class="label" id="label_carousel_scaledown" origtitle="<?php _e("The maximum scale down of the Side elements. Scale will depend on the element distance to the current focused element. Min value is 0 and max value is 100.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Max. Scaledown", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="carousel_scaledown" name="carousel_scaledown" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, 'carousel_scaledown', '50');?>">
<span><?php _e("%", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
</div>
<div id="carousel-aligns" style="display:none">
<!-- Align of Carousel -->
<span class="label" id="label_carousel_hposition" origtitle="<?php _e("Horizontal Align of the Carousel.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Horizontal Aligns", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="carousel_hposition" class="withlabel" name="carousel_hposition">
<option value="left" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_hposition', 'center'), "left");?>><?php _e("Left", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_hposition', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="right" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_hposition', 'center'), "right");?>><?php _e("Right", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_carousel_vposition" origtitle="<?php _e("Vertical Align of the Carousel.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Vertical Aligns", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="carousel_vposition" class="withlabel" name="carousel_vposition">
<option value="top" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_vposition', 'center'), "top");?>><?php _e("Top", REVSLIDER_TEXTDOMAIN);?></option>
<option value="center" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_vposition', 'center'), "center");?>><?php _e("Center", REVSLIDER_TEXTDOMAIN);?></option>
<option value="bottom" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, 'carousel_vposition', 'center'), "bottom");?>><?php _e("Bottom", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
</div>
<script>
jQuery('#carousel_stretch').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked" && jQuery('#carousel_maxitems option[value="1"]').attr("selected")===undefined) {
jQuery('#carousel_maxitems option:selected').removeAttr('selected');
jQuery('#carousel_maxitems option[value="1"]').attr("selected","selected");
}
});
jQuery('#carousel_maxitems').on("change",function() {
if (jQuery('#carousel_stretch').attr("checked") === "checked" && jQuery('#carousel_maxitems option[value="1"]').attr("selected")===undefined) {
jQuery('#carousel_stretch').removeAttr("checked");
jQuery('#carousel_stretch').change();
}
});
jQuery('#carousel_fadeout').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#carousel-fade-row').show();
} else {
jQuery('#carousel-fade-row').hide();
}
});
jQuery('#carousel_rotation').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#carousel-rotation-row').show();
} else {
jQuery('#carousel-rotation-row').hide();
}
});
jQuery('#carousel_scale').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#carousel-scale-row').show();
} else {
jQuery('#carousel-scale-row').hide();
}
});
jQuery('#carousel_scale').change();
jQuery('#carousel_fadeout').change();
jQuery('#carousel_rotation').change();
jQuery('#first_transition_active').change();
</script>
</div>
</div> <!-- END OF CAROUSEL SETTINGS -->
<!-- Parallax Level -->
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-camera-alt"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('Parallax', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none">
<span class="label" id="label_use_parallax" origtitle="<?php _e("Enabling this, will give you new options in the slides to create a unique parallax effect", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Enable Parallax", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="use_parallax" name="use_parallax" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "use_parallax", "off"), "on");?>>
<div class="clear"></div>
<div id="parallax_settings_row">
<span id="label_disable_parallax_mobile" class="label" origtitle="<?php _e("If set to on, parallax will be disabled on mobile devices to save performance", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Disable on Mobile", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="disable_parallax_mobile" name="disable_parallax_mobile" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "disable_parallax_mobile", "off"), "on");?>>
<div class="clear"></div>
<h4><?php _e("Mouse Sensibility", REVSLIDER_TEXTDOMAIN);?></h4>
<div class="withsublabels">
<span id="label_parallax_type" class="label" origtitle="<?php _e("Defines on what event type the parallax should react to", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Event", REVSLIDER_TEXTDOMAIN);?></span>
<select id="parallax_type" name="parallax_type" class="withlabel">
<option value="mouse" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "parallax_type", "mouse"), "mouse");?>><?php _e("Mouse Move", REVSLIDER_TEXTDOMAIN);?></option>
<option value="scroll" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "parallax_type", "mouse"), "scroll");?>><?php _e("Scroll Position", REVSLIDER_TEXTDOMAIN);?></option>
<option value="mouse+scroll" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "parallax_type", "mouse"), "mouse+scroll");?>><?php _e("Move and Scroll", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span id="label_parallax_origo" class="label" origtitle="<?php _e("Mouse Based parallax calculation Origo", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Parallax Origo", REVSLIDER_TEXTDOMAIN);?></span>
<select id="parallax_origo" name="parallax_origo" class="withlabel">
<option value="enterpoint" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "parallax_origo", "enterpoint"), "enterpoint");?>><?php _e("Mouse Enter Point", REVSLIDER_TEXTDOMAIN);?></option>
<option value="slidercenter" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "parallax_origo", "enterpoint"), "slidercenter");?>><?php _e("Slider Center", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<span class="label" id="label_parallax_speed" origtitle="<?php _e("Parallax Speed for Mouse movents.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Animation Speed", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_speed" name="parallax_speed" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_speed", "400");?>">
<span ><?php _e("ms", REVSLIDER_TEXTDOMAIN);?></span>
<div class="clear"></div>
</div>
<h4><?php _e("Parallax Levels", REVSLIDER_TEXTDOMAIN);?></h4>
<div class="withsublabels">
<span class="label" id="label_parallax_level_1" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 1", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_1" name="parallax_level_1" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_1", "5");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_2" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 2", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_2" name="parallax_level_2" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_2", "10");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_3" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 3", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel " id="parallax_level_3" name="parallax_level_3" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_3", "15");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_4" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 4", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_4" name="parallax_level_4" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_4", "20");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_5" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 5", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_5" name="parallax_level_5" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_5", "25");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_6" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 6", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_6" name="parallax_level_6" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_6", "30");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_7" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 7", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_7" name="parallax_level_7" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_7", "35");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_8" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 8", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_8" name="parallax_level_8" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_8", "40");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_9" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 9", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_9" name="parallax_level_9" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_9", "45");?>">
<div class="clear"></div>
<span class="label" id="label_parallax_level_10" origtitle="<?php _e("Defines a level that can be used in Slide Editor for this Slider. Smaller value gives a smaller offset effect, higher value will increase the effect.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Level Depth 10", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar withlabel" id="parallax_level_10" name="parallax_level_10" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "parallax_level_10", "50");?>">
<div class="clear"></div>
</div>
</div>
</div>
<script>
jQuery('#use_parallax').on("change",function() {
var sbi = jQuery(this);
if (sbi.attr("checked") === "checked") {
jQuery('#parallax_settings_row').show();
} else {
jQuery('#parallax_settings_row').hide();
}
});
jQuery('#use_parallax').change();
</script>
</div>
<?php
if (!empty($sliderID)) {
?>
<!-- SPEED MONITOR -->
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-cog-alt"></i>
<div class="setting_box-arrow"></div>
<span><?php _e("Performance and SEO Optimization", REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none;">
<!-- LAZY LOAD -->
<?php
$llt = RevSliderFunctions::getVal($arrFieldsParams, 'lazy_load_type', false);
if ($llt === false) {
//do fallback checks to removed lazy_load value since version 5.0 and replaced with an enhanced version
$old_ll = RevSliderFunctions::getVal($arrFieldsParams, 'lazy_load', 'off');
$llt = ($old_ll == 'on') ? 'all' : 'none';
}
?>
<span id="label_lazy_load_type" class="label" origtitle="<?php _e("How to load/preload the images. <br><br><strong>All</strong> - Load all image element in a sequence at the initialisation. This will boost up the loading of your page, and will preload all images to have a smooth and breakless run already in the first loop. <br><br><strong>Smart</strong> - It will load the page as quick as possible, and load only the current and neighbour slide elements. If slide is called which not loaded yet, will be loaded on demand with minimal delays. <br><br><strong>Single</strong> - It will load only the the start slide. Any other slides will be loaded on demand.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Lazy Load", REVSLIDER_TEXTDOMAIN);?> </span>
<select id="lazy_load_type" name="lazy_load_type" class="withlabel" >
<option value="all" <?php selected($llt, 'all');?>><?php _e("All", REVSLIDER_TEXTDOMAIN);?></option>
<option value="smart" <?php selected($llt, 'smart');?>><?php _e("Smart", REVSLIDER_TEXTDOMAIN);?></option>
<option value="single" <?php selected($llt, 'single');?>><?php _e("Single", REVSLIDER_TEXTDOMAIN);?></option>
<option value="none" <?php selected($llt, 'none');?>><?php _e("No Lazy Loading", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clearfix"></div>
<?php
$seo_opti = RevSliderFunctions::getVal($arrFieldsParams, 'seo_optimization', 'none');
?>
<span id="label_seo_optimization" class="label" origtitle="<?php _e('Define SEO Optimization for the Images in the Slider, useful if Lazy Load is on.', REVSLIDER_TEXTDOMAIN);?>"><?php _e('SEO Optimization', REVSLIDER_TEXTDOMAIN);?> </span>
<select id="seo_optimization" name="seo_optimization" class="withlabel">
<option value="none" <?php selected($seo_opti, 'none');?>><?php _e("None", REVSLIDER_TEXTDOMAIN);?></option>
<option value="noscript" <?php selected($seo_opti, 'single');?>><?php _e("NoScript", REVSLIDER_TEXTDOMAIN);?></option>
<option value="noframe" <?php selected($seo_opti, 'smart');?>><?php _e("NoFrame", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clearfix"></div>
<!-- MONITORING PART -->
<?php //list all images and speed here ?>
<?php
RevSliderOperations::get_slider_speed($sliderID);
?>
</div><!-- END OF INSIDE-->
</div>
<script>
jQuery(document).on("ready",function() {
jQuery('#lazy_load_type').on("change",function() {
switch (jQuery('#lazy_load_type option:selected').val()) {
case "all":
case "none":
jQuery('.tp-monitor-single-speed').hide();
jQuery('.tp-monitor-smart-speed').hide();
jQuery('.tp-monitor-all-speed').show();
break;
case "smart":
jQuery('.tp-monitor-single-speed').hide();
jQuery('.tp-monitor-smart-speed').show();
jQuery('.tp-monitor-all-speed').hide();
break;
case "single":
jQuery('.tp-monitor-single-speed').show();
jQuery('.tp-monitor-smart-speed').hide();
jQuery('.tp-monitor-all-speed').hide();
break;
}
});
jQuery('#lazy_load_type').change();
})
</script>
<?php
}
?>
<!-- FALLBACKS -->
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-medkit"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('Problem Handlings', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none;">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#problem-fallback" class="selected"><?php _e('Fallbacks', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#problem-troubleshooting" class=""><?php _e('Troubleshooting', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<div id="problem-fallback">
<span id="label_simplify_ie8_ios4" class="label" origtitle="<?php _e("Simplyfies the Slider on IOS4 and IE8", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Simplify on IOS4/IE8", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="simplify_ie8_ios4" name="simplify_ie8_ios4" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "simplify_ie8_ios4", "off"), "on");?>>
<div class="clear"></div>
<div id="label_show_alternative_type" class="label" origtitle="<?php _e("Disables the Slider and load an alternative image instead", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Use Alternative Image", REVSLIDER_TEXTDOMAIN);?> </div>
<select id="show_alternative_type" name="show_alternative_type" class="withlabel">
<option value="off" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "show_alternative_type", "off"), "off");?>><?php _e("Off", REVSLIDER_TEXTDOMAIN);?></option>
<option value="mobile" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "show_alternative_type", "off"), "mobile");?>><?php _e("On Mobile", REVSLIDER_TEXTDOMAIN);?></option>
<option value="ie8" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "show_alternative_type", "off"), "ie8");?>><?php _e("On IE8", REVSLIDER_TEXTDOMAIN);?></option>
<option value="mobile-ie8" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "show_alternative_type", "off"), "mobile-ie8");?>><?php _e("On Mobile and IE8", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div class="enable_alternative_image">
<div id="label_show_alternate_image" class="label" origtitle="<?php _e("The image that will be loaded instead of the slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Alternate Image", REVSLIDER_TEXTDOMAIN);?> </div>
<input type="text" style="width: 104px;" class="text-sidebar-long withlabel" id="show_alternate_image" name="show_alternate_image" value="<?php echo RevSliderFunctions::getVal($arrFieldsParams, "show_alternate_image", "");?>">
<a original-title="" href="javascript:void(0)" class="button-image-select-background-img button-primary revblue"><?php _e('Set', REVSLIDER_TEXTDOMAIN); ?></a>
<div class="clear"></div>
</div>
</div>
<div id="problem-troubleshooting" style="display:none;">
<div id="label_jquery_noconflict" class="label" origtitle="<?php _e("Turns on / off jquery noconflict mode. Try to enable this option if javascript conflicts exist on the page.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("JQuery No Conflict Mode", REVSLIDER_TEXTDOMAIN);?> </div>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="jquery_noconflict" name="jquery_noconflict" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "jquery_noconflict", "off"), "on");?>>
<div class="clear"></div>
<span id="label_js_to_body" class="label" origtitle="<?php _e("Try this to fix some javascript conflicts of type: TypeError: tpj('#rev_slider_1_1').show().revolution is not a function", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Put JS Includes To Body", REVSLIDER_TEXTDOMAIN);?> </span>
<span id="js_to_body" class="withlabel">
<input type="radio" id="js_to_body_1" value="true" name="js_to_body" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "js_to_body", "false"), "true");?>>
<label for="js_to_body_1" style="cursor:pointer;margin-right:15px"><?php _e('On', REVSLIDER_TEXTDOMAIN);?></label>
<input type="radio" id="js_to_body_2" value="false" name="js_to_body" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "js_to_body", "false"), "false");?>>
<label for="js_to_body_2" style="cursor:pointer;"><?php _e('Off', REVSLIDER_TEXTDOMAIN);?></label>
</span>
<div class="clear"></div>
<div id="label_output_type" class="label" origtitle="<?php _e("Activate a protection against wordpress output filters that adds html blocks to the shortcode output like P and BR.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Output Filters Protection", REVSLIDER_TEXTDOMAIN);?> </div>
<select id="output_type" name="output_type" style="max-width:105px" class="withlabel">
<option value="none" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "output_type", "none"), "none");?>><?php _e("None", REVSLIDER_TEXTDOMAIN);?></option>
<option value="compress" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "output_type", "none"), "compress");?>><?php _e("By Compressing Output", REVSLIDER_TEXTDOMAIN);?></option>
<option value="echo" <?php selected(RevSliderFunctions::getVal($arrFieldsParams, "output_type", "none"), "echo");?>><?php _e("By Echo Output", REVSLIDER_TEXTDOMAIN);?></option>
</select>
<div class="clear"></div>
<div id="label_jquery_debugmode" class="label" origtitle="<?php _e("Turns on / off visible Debug Mode on Front End.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Debug Mode", REVSLIDER_TEXTDOMAIN);?> </div>
<input type="checkbox" class="tp-moderncheckbox withlabel" id="jquery_debugmode" name="jquery_debugmode" data-unchecked="off" <?php checked(RevSliderFunctions::getVal($arrFieldsParams, "jquery_debugmode", "off"), "on");?>>
<div class="clear"></div>
</div>
</div>
<script>
jQuery('#show_alternative_type').on("change",function() {
var sbi = jQuery(this);
switch (sbi.val()) {
case "off":
jQuery('.enable_alternative_image').hide();
break;
default:
jQuery('.enable_alternative_image').show();
break;
}
});
jQuery('#show_alternative_type').change();
</script>
</div>
<!-- IMPORT / EXPORT SETTINGS -->
<?php
if ($is_edit) {
?>
<div class="setting_box">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-upload"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('Import / Export / Replace', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#import-import" class="selected"><?php _e('Import', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#import-export" class=""><?php _e('Export', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#import-replace" class=""><?php _e('Replace URL', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<div id="import-import">
<form action="<?php echo RevSliderBase::$url_ajax?>" enctype="multipart/form-data" method="post">
<input type="hidden" name="action" value="revslider_ajax_action">
<input type="hidden" name="client_action" value="import_slider">
<input type="hidden" name="sliderid" value="<?php echo $sliderID;?>">
<input type="hidden" name="nonce" value="<?php echo wp_create_nonce("revslider_actions");?>">
<input type="file" name="import_file" class="input_import_slider" style="width:100%; font-size:12px;">
<div style="width:100%;height:25px"></div>
<span class="label label-with-subsection" id="label_update_animations" origtitle="<?php _e("Overwrite or append the custom animations due the new imported values ?", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Custom Animations", REVSLIDER_TEXTDOMAIN);?> </span>
<input class="withlabel" type="radio" name="update_animations" value="true" checked="checked"> <?php _e("overwrite", REVSLIDER_TEXTDOMAIN)?>
<input class="withlabel" type="radio" name="update_animations" value="false"> <?php _e("append", REVSLIDER_TEXTDOMAIN)?>
<div class="tp-clearfix"></div>
<span class="label label-with-subsection" id="label_update_static_captions" origtitle="<?php _e("Overwrite or append the static styles due the new imported values ?", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Static Styles", REVSLIDER_TEXTDOMAIN);?> </span>
<input class="withlabel" type="radio" name="update_static_captions" value="true"> <?php _e("overwrite", REVSLIDER_TEXTDOMAIN)?>
<input class="withlabel" type="radio" name="update_static_captions" value="false"> <?php _e("append", REVSLIDER_TEXTDOMAIN)?>
<input class="withlabel" type="radio" name="update_static_captions" value="none" checked="checked"> <?php _e("ignore",REVSLIDER_TEXTDOMAIN); ?>
<div class="tp-clearfix"></div>
<div class="divide5"></div>
<input type="submit" style="width:100%" class='button-primary revgreen' value="<?php _e('Import Slider', REVSLIDER_TEXTDOMAIN); ?>">
</form>
<div class="divide20"></div>
<div class="revred api-desc" style="padding:8px;color:#fff;font-weight:600;font-size:12px"><?php _e("Note! Style templates will be updated if they exist. Importing slider, will delete all the current slider settings and slides and replacing it with the imported content.", REVSLIDER_TEXTDOMAIN)?></div>
</div>
<div id="import-export" style="display:none">
<a id="button_export_slider" class='button-primary revgreen' href='javascript:void(0)' style="width:100%;text-align:center;" ><?php _e("Export Slider", REVSLIDER_TEXTDOMAIN)?></a> <div style="display: none;"><input type="checkbox" name="export_dummy_images"> <?php _e("Export with Dummy Images", REVSLIDER_TEXTDOMAIN)?></div>
</div>
<div id="import-replace" style="display:none">
<span class="label label-with-subsection" id="label_replace_url_from" origtitle="<?php _e("Replace all layer and backgorund image url's. example - replace from: http://localhost", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Replace From", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar-link withlabel" id="replace_url_from">
<div class="tp-clearfix"></div>
<span class="label label-with-subsection" id="label_replace_url_to" origtitle="<?php _e("Replace all layer and backgorund image url's. example - replace to: http://yoursite.com", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Replace To", REVSLIDER_TEXTDOMAIN);?> </span>
<input type="text" class="text-sidebar-link withlabel" id="replace_url_to">
<div class="tp-clearfix"></div>
<div style="width:100%;height:15px;display:block"></div>
<a id="button_replace_url" class='button-primary revgreen' href='javascript:void(0)' style="width:100%; text-align:center;" ><?php _e("Replace URL's", REVSLIDER_TEXTDOMAIN)?></a>
<div id="loader_replace_url" class="loader_round" style="display:none;"><?php _e("Replacing...", REVSLIDER_TEXTDOMAIN)?> </div>
<div id="replace_url_success" class="success_message" class="display:none;"></div>
<div class="divide20"></div>
<div class="revred api-desc" style="padding:8px;color:#fff;font-weight:600;font-size:12px"><?php _e("Note! The replace process is not reversible !", REVSLIDER_TEXTDOMAIN)?></div>
</div>
</div>
</div>
<?php
}
?> <!-- END OF IMPORT EXPORT SETTINGS -->
<!-- API SETTINGS -->
<?php
if ($is_edit) {
$api = "revapi" . $sliderID;
?>
<div class="setting_box rs-cm-refresh">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-magic"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('API Functions', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none">
<ul class="main-options-small-tabs" style="display:inline-block; ">
<li data-content="#api-method" class="selected"><?php _e('Methods', REVSLIDER_TEXTDOMAIN);?></li>
<li data-content="#api-events" class=""><?php _e('Events', REVSLIDER_TEXTDOMAIN);?></li>
</ul>
<div id="api-method">
<span class="label" id="label_apiapi1" style="min-width:130px" origtitle="<?php _e("Call this function to pause the slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Pause Slider", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi1" value="<?php echo $api?>.revpause();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi2" style="min-width:130px" origtitle="<?php _e("Call this function to play the slider if it is paused.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Resume Slider", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi2" value="<?php echo $api?>.revresume();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi3" style="min-width:130px" origtitle="<?php _e("Switch slider to previous slide.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Previous Slide", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi3" value="<?php echo $api?>.revprev();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi4" style="min-width:130px" origtitle="<?php _e("Switch slider to next slide.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Next Slide", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi4" value="<?php echo $api?>.revnext();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi5" style="min-width:130px" origtitle="<?php _e("Switch to the slide which is defined as parameter.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Go To Slide", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi5" value="<?php echo $api?>.revshowslide(2);"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi5" style="min-width:130px" origtitle="<?php _e("Switch to the slide which is defined as parameter.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Go To Slide with ID", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi5" value="<?php echo $api?>.revcallslidewithid('rs-1007');"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi6" style="min-width:130px" origtitle="<?php _e("Get the amount of existing slides in the slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Max Slides", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi6" value="<?php echo $api?>.revmaxslide();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi7" style="min-width:130px" origtitle="<?php _e("Get the current focused slide index.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Current Slide", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi7" value="<?php echo $api?>.revcurrentslide();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi8" style="min-width:130px" origtitle="<?php _e("Get the previously played slide.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Last Slide", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi8" value="<?php echo $api?>.revlastslide();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi9" style="min-width:130px" origtitle="<?php _e("Scroll page under the slider.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("External Scroll", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi9" value="<?php echo $api?>.revscroll(offset);"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi10" style="min-width:130px" origtitle="<?php _e("Recalculate all positions, sizing etc in the slider. This should be called i.e. if Slider was invisible and becomes visible without any window resize event.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Redraw Slider", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi10" value="<?php echo $api?>.revredraw();"></span>
<div class="tp-clearfix"></div>
<span class="label" id="label_apiapi11" style="min-width:130px" origtitle="<?php _e("Unbind all listeners, remove current animations and delete containers. Ready for Garbage collection.", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Kill Slider", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" readonly class="api-input withlabel" id="apiapi11" value="<?php echo $api?>.revkill();"></span>
<div class="tp-clearfix"></div>
</div>
<div id="api-events" style="display:none">
<h4 style="margin-top:0px"><?php _e("Slider Loaded", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style="height:80px;" readonly>
<?php echo $api?>.bind("revolution.slide.onloaded",function (e) {
console.log("slider loaded");
});</textarea>
<h4 style="margin-top:15px"><?php _e("Slider swapped to an other slide", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:100px;" readonly>
<?php echo $api?>.bind("revolution.slide.onchange",function (e,data) {
console.log("slide changed to: "+data.slideIndex);
console.log("current slide <li> Index: "+data.slideLIIndex);
//data.currentslide - <?php _e('Current Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
//data.prevslide - <?php _e('Previous Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
<h4 style="margin-top:15px"><?php _e("Slider paused", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:80px;" readonly>
<?php echo $api?>.bind("revolution.slide.onpause",function (e,data) {
console.log("timer paused");
});</textarea>
<h4 style="margin-top:15px"><?php _e("Slider is Playing after pause", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:80px;" readonly>
<?php echo $api?>.bind("revolution.slide.onresume",function (e,data) {
console.log("timer resume");
});</textarea>
<h4 style="margin-top:15px"><?php _e("Video is playing in slider", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:130px;" readonly>
<?php echo $api?>.bind("revolution.slide.onvideoplay",function (e,data) {
console.log("video play");
//data.video - <?php _e('The Video API to Manage Video functions', REVSLIDER_TEXTDOMAIN);?>
//data.videotype - <?php _e('youtube, vimeo, html5', REVSLIDER_TEXTDOMAIN);?>
//data.settings - <?php _e('Video Settings', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
<h4 style="margin-top:15px"><?php _e("Video stopped in slider", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:130px;" readonly>
<?php echo $api?>.bind("revolution.slide.onvideostop",function (e,data) {
console.log("video stop");
//data.video - <?php _e('The Video API to Manage Video functions', REVSLIDER_TEXTDOMAIN);?>
//data.videotype - <?php _e('youtube, vimeo, html5', REVSLIDER_TEXTDOMAIN);?>
//data.settings - <?php _e('Video Settings', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
<h4 style="margin-top:15px"><?php _e("Slider reached the 'stop at' slide", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:80px;" readonly>
<?php echo $api?>.bind("revolution.slide.onstop",function (e,data) {
console.log("slider stopped");
});</textarea>
<h4 style="margin-top:15px"><?php _e("Prepared for slide change", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:100px;" readonly>
<?php echo $api?>.bind("revolution.slide.onbeforeswap",function (e) {
console.log("Slider Before Swap");
//data.currentslide - <?php _e('Current Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
//data.nextslide - <?php _e('Coming Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
<h4 style="margin-top:15px"><?php _e("Finnished with slide change", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:100px;" readonly>
<?php echo $api?>.bind("revolution.slide.onafterswap",function (e) {
console.log("Slider After Swap");
//data.currentslide - <?php _e('Current Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
//data.previousslide - <?php _e('Previous Slide as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
<h4 style="margin-top:15px"><?php _e("Last slide starts", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:80px;" readonly>
<?php echo $api?>.bind("revolution.slide.slideatend",function (e) {
console.log("slide at end");
});</textarea>
<h4 style="margin-top:15px"><?php _e("Layer Events", REVSLIDER_TEXTDOMAIN)?></h4>
<textarea class="api_area" style=" height:130px;" readonly>
<?php echo $api?>.bind("revolution.slide.layeraction",function (e) {
//data.eventtype - <?php _e('Layer Action (enterstage, enteredstage, leavestage,leftstage)', REVSLIDER_TEXTDOMAIN);?>
//data.layertype - <?php _e('Layer Type (image,video,html)', REVSLIDER_TEXTDOMAIN);?>
//data.layersettings - <?php _e('Default Settings for Layer', REVSLIDER_TEXTDOMAIN);?>
//data.layer - <?php _e('Layer as jQuery Object', REVSLIDER_TEXTDOMAIN);?>
});</textarea>
</div>
</div>
</div>
<?php
}?> <!-- END OF API SETTINGS -->
<div class="setting_box rs-cm-refresh">
<h3 class="box_closed"><i class="rs-rp-accordion-icon eg-icon-font"></i>
<div class="setting_box-arrow"></div>
<span><?php _e('Google Fonts', REVSLIDER_TEXTDOMAIN);?></span>
</h3>
<div class="inside" style="display:none">
<div id="rs-google-fonts">
</div>
<p><a class="button-primary revblue" id="add_new_google_font" original-title=""><i class="revicon-cog"></i><?php _e('Add New Font', REVSLIDER_TEXTDOMAIN); ?></a></p>
<i style="font-size:10px;color:#777"><?php _e('Copy the Google Font Family from <a href="http://www.google.com/fonts" target="_blank">http://www.google.com/fonts</a> like: <strong>Open+Sans:400,700,600</strong>', REVSLIDER_TEXTDOMAIN); ?></i>
</div>
</div>
</div>
</form>
<!-- THE TOOLBAR FUN -->
<div id="form_toolbar">
<div class="toolbar-title"></div>
<div class="toolbar-content"></div>
<!--<div class="toolbar-title-a">Schematic</div> -->
<!--<div class="toolbar-media"></div>-->
<div class="toolbar-sliderpreview">
<div class="toolbar-slider">
<div class="toolbar-slider-image"></div>
<div class="toolbar-progressbar"></div>
<div class="toolbar-dottedoverlay"></div>
<div class="toolbar-navigation-right"></div>
<div class="toolbar-navigation-left"></div>
<div class="toolbar-navigation-bullets">
<div class="toolbar-navigation-bullet"></div>
<div class="toolbar-navigation-bullet"></div>
<div class="toolbar-navigation-bullet" style="margin:0px !important"></div>
<span class="tp-clearfix"></span>
</div>
<div class="toolbar-navigation-thumbs">
<div class="toolbar-navigation-thumb"></div>
<div style="border-color:#fff" class="toolbar-navigation-thumb"></div>
<div class="toolbar-navigation-thumb" style="margin:0px !important"></div>
<span class="toolbar-navigation-thumbs-bg tntb"></span>
<span class="tp-clearfix"></span>
</div>
<div class="toolbar-navigation-tabs">
<div class="toolbar-navigation-tab"><span class="long-lorem-ipsum"></span><span class="short-lorem-ipsum"></span></div>
<div style="border-color:#fff" class="toolbar-navigation-tab"><span class="long-lorem-ipsum"></span><span class="short-lorem-ipsum"></span></div>
<div class="toolbar-navigation-tab" style="margin:0px !important"><span class="long-lorem-ipsum"></span><span class="short-lorem-ipsum"></span></div>
<span class="toolbar-navigation-tabs-bg tntb"></span>
<span class="tp-clearfix"></span>
</div>
</div>
</div>
<div id="preview-nav-wrapper">
<div class="rs-editing-preview-overlay"></div>
<div class="rs-arrows-preview">
<div class="tp-arrows tp-leftarrow"></div>
<div class="tp-arrows tp-rightarrow"></div>
</div>
<div class="rs-bullets-preview"></div>
<div class="rs-thumbs-preview"></div>
<div class="rs-tabs-preview"></div>
</div>
<div class="toolbar-extended-info"><i><?php _e('*Only Illustration, most changes are not visible.', REVSLIDER_TEXTDOMAIN);?></i></div>
</div>
</div>
<div class="clear"></div>
<script type="text/javascript">
/* Provider: - *
*
*/
// Some Inline Script for Right Side Panel Actions.
jQuery(document).ready(function($) {
RevSliderSettings.createModernOnOff();
jQuery(".tp-moderncheckbox").each(function() {
RevSliderSettings.onoffStatus(jQuery(this));
});
jQuery('#background_fit').change(function(){
if(jQuery(this).val() == 'percentage'){
jQuery('input[name="def-bg_fit_x"]').show();
jQuery('input[name="def-bg_fit_y"]').show();
}else{
jQuery('input[name="def-bg_fit_x"]').hide();
jQuery('input[name="def-bg_fit_y"]').hide();
}
});
jQuery('#slide_bg_position').change(function(){
if(jQuery(this).val() == 'percentage'){
jQuery('input[name="def-bg_position_x"]').show();
jQuery('input[name="def-bg_position_y"]').show();
}else{
jQuery('input[name="def-bg_position_x"]').hide();
jQuery('input[name="def-bg_position_y"]').hide();
}
});
jQuery('#slide_bg_end_position').change(function(){
if(jQuery(this).val() == 'percentage'){
jQuery('input[name="def-bg_end_position_x"]').show();
jQuery('input[name="def-bg_end_position_y"]').show();
}else{
jQuery('input[name="def-bg_end_position_x"]').hide();
jQuery('input[name="def-bg_end_position_y"]').hide();
}
});
jQuery('input[name="def-kenburn_effect"]').change(function(){
if(jQuery(this).attr('checked') == 'checked'){
jQuery('#def-kenburns-wrapper').show();
}else{
jQuery('#def-kenburns-wrapper').hide();
}
});
// Accordion
jQuery('.settings_wrapper').find('.setting_box h3').each(function() {
jQuery(this).click(function() {
var btn = jQuery(this),
sb = jQuery(this).closest('.setting_box'),
toclose = btn.hasClass("box_closed") ? true : false;
if (btn.closest('.settings_wrapper').hasClass("closeallothers"))
btn.closest('.settings_wrapper').find('.setting_box').each(function() {
var sb = jQuery(this);
sb.find('h3').addClass("box_closed");
sb.find('.inside').slideUp(200);
});
else
{
sb.find('h3').addClass("box_closed");
sb.find('.inside').slideUp(200);
}
if (toclose) {
btn.removeClass("box_closed");
sb.find('.inside').slideDown(200);
}
});
});
jQuery('.my-color-field').wpColorPicker({
palettes:false,
height:250,
border:false,
change:function() {
drawToolBarPreview();
}
});
jQuery('.wp-color-result').on("click",function() {
if (jQuery(this).hasClass("wp-picker-open"))
jQuery(this).closest('.wp-picker-container').addClass("pickerisopen");
else
jQuery(this).closest('.wp-picker-container').removeClass("pickerisopen");
});
jQuery("body").click(function(event) {
jQuery('.wp-picker-container.pickerisopen').removeClass("pickerisopen");
})
// PREPARE ON/OFF BUTTON
jQuery('.tp-onoffbutton .withlabel').each(function() {
var wl = jQuery(this),
tpo = wl.closest('.tp-onoffbutton');
tpo.attr('label',wl.attr('id'));
tpo.addClass("withlabel");
})
jQuery('.wp-picker-container .withlabel').each(function() {
var wl = jQuery(this),
tpo = wl.closest('.wp-picker-container');
tpo.attr('label',wl.attr('id'));
tpo.addClass("withlabel");
});
//----------------------------------------------------
// DRAW PREVIEW OF NAVIGATION ELEMENTS
//----------------------------------------------------
var previewNav = function(sbut,mclass,the_css,the_markup,settings) {
var ap = jQuery('#preview-nav-wrapper .rs-arrows-preview'),
bp = jQuery('#preview-nav-wrapper .rs-bullets-preview'),
tabp = jQuery('#preview-nav-wrapper .rs-tabs-preview'),
thumbp = jQuery('#preview-nav-wrapper .rs-thumbs-preview'),
sizer = jQuery('#preview-nav-wrapper .little-sizes');
ap.html("");
bp.html("");
tabp.html("");
thumbp.html("");
ap.hide();
bp.hide();
tabp.hide();
thumbp.hide();
sizer.hide();
var pattern = new RegExp(":hover",'g');
if (sbut=="arrows") {
ap.show();
var t = '<style>'+the_css.replace(pattern,'.fakehover')+'</style>';
t = t + '<div class="'+mclass+' tparrows tp-leftarrow">'+the_markup+'</div>';
t = t + '<div class="'+mclass+' tparrows tp-rightarrow">'+the_markup+'</div>';
ap.html(t);
setTimeout(function() {
try{ap.find('.tp-rightarrow').addClass("fakehover");} catch(e) {}
},200);
} else
if (sbut=="bullets") {
bp.show();
var t = '<style>'+the_css+'</style>';
t = t + '<div class="'+mclass+' tp-bullets">'
for (var i=0;i<5;i++) {
t = t + '<div class="tp-bullet">'+the_markup+'</div>';
}
t= t + '</div>';
bp.html(t);
var b = bp.find('.tp-bullet').first(),
bw = jQuery('#bullets_direction option:selected').attr("value")=="horizontal" ? b.outerWidth(true) : b.outerHeight(true),
bh = jQuery('#bullets_direction option:selected').attr("value")=="vertical" ? b.outerWidth(true) : b.outerHeight(true),
mw = 0;
bp.find('.tp-bullet').each(function(i) {
var e = jQuery(this);
if (i==0)
setTimeout(function() {
try{e.addClass("selected");} catch(e) {}
},150);
var np = i*bw + i*10;
if (jQuery('#bullets_direction option:selected').attr("value")=="horizontal") {
e.css({left:np+"px"});
} else {
e.css({top:np+"px"});
}
mw = mw + bw + 10;
})
mw = mw-10;
if (jQuery('#bullets_direction option:selected').attr("value")=="horizontal") {
bp.find('.tp-bullets').css({width:mw, height:bh});
} else {
bp.find('.tp-bullets').css({height:mw, width:bh});
}
} else
if (sbut=="tabs") {
tabp.show();
var t = '<style>'+the_css+'</style>';
t = t + '<div class="'+mclass+'"><div class="tp-tab">'+the_markup+'</div></div>';
tabp.html(t);
var s = new Object();
s.w = 160,
s.h = 160;
if (settings!="" && settings!=undefined) {
if (settings.width!=undefined && settings.width.tabs!=undefined)
s.w=settings.width.tabs;
if (settings.height!=undefined && settings.height.tabs!=undefined)
s.h=settings.height.tabs;
}
tabp.find('.tp-tab').each(function(){
jQuery(this).css({width:s.w+"px",height:s.h+"px"});
});
return s;
} else
if (sbut=="thumbs") {
thumbp.show();
var t = '<style>'+the_css+'</style>';
t = t + '<div class="'+mclass+'"><div class="tp-thumb">'+the_markup+'</div></div>';
thumbp.html(t);
var s = new Object();
s.w = 160,
s.h = 160;
if (settings!="" && settings!=undefined) {
if (settings.width!=undefined && settings.width.thumbs!=undefined)
s.w=settings.width.thumbs;
if (settings.height!=undefined && settings.height.thumbs!=undefined)
s.h=settings.height.thumbs;
}
thumbp.find('.tp-thumb').each(function(){
jQuery(this).css({width:s.w+"px",height:s.h+"px"});
});
return s;
}
}
function changeNavStyle(navtype) {
var cur_edit = {},
cur_edit_type,
navtype,
nav_id,
mclass="";
if (navtype == "arrows")
cur_edit_type=jQuery('#navigation_arrow_style option:selected').attr('value');
else
if (navtype == 'bullets')
cur_edit_type=jQuery('#navigation_bullets_style option:selected').attr('value');
else
if (navtype == 'tabs')
cur_edit_type=jQuery('#tabs_style option:selected').attr('value');
else
if (navtype == 'thumbs')
cur_edit_type=jQuery('#thumbnails_style option:selected').attr('value');
for(var key in rs_navigations){
if(rs_navigations[key]['handle'] == cur_edit_type){
cur_edit = jQuery.extend(true, {}, rs_navigations[key]);
break;
}
}
var the_css = (typeof(cur_edit['css']) !== 'undefined' && cur_edit['css'] !== null && typeof(cur_edit['css'][navtype]) !== 'undefined') ? cur_edit['css'][navtype] : '',
the_markup = (typeof(cur_edit['markup']) !== 'undefined' && cur_edit['markup'] !== null && typeof(cur_edit['markup'][navtype]) !== 'undefined') ? cur_edit['markup'][navtype] : "",
settings = (typeof(cur_edit['settings']) !== 'undefined' && cur_edit['settings'] !== null) ? cur_edit['settings'] : "";
if (cur_edit["name"]==undefined) return false;
var mclass = UniteAdminRev.sanitize_input(cur_edit["name"].toLowerCase());
if(cur_edit['css'] == null) return false;
if(cur_edit['markup'] == null) return false;
return previewNav(navtype,mclass,the_css,the_markup,settings);
}
// THE AMAZGIN TOOL TIP FUN
jQuery('#form_slider_params').find('.label, .withlabel').each(function() {
var lbl = jQuery(this);
lbl.hover(function() {
drawToolBarPreview();
var lbl = jQuery(this).hasClass("withlabel") ? (jQuery(this).attr('id')===undefined ? jQuery("#label_"+jQuery(this).attr("label")) : jQuery("#label_"+jQuery(this).attr("id"))) : jQuery(this),
ft = jQuery('#form_slider_params').offset().top;
tb = jQuery('#form_toolbar'),
title = tb.find('.toolbar-title'),
cont = tb.find('.toolbar-content'),
med = tb.find('.toolbar-media'),
prev = tb.find('.toolbar-sliderpreview'),
shads = tb.find('.toolbar-shadows'),
img = tb.find('.toolbar-slider-image'),
exti = tb.find('.toolbar-extended-info'),
navpre = jQuery('#preview-nav-wrapper');
title.html(lbl.html());
cont.html(lbl.attr('origtitle'));
/* Provider: - if (lbl.attr('extendedinfo')!=undefined)
exti.html(lbl.attr('extendedinfo'));
/* Provider: - if (lbl.attr('origmedia')===undefined) {
prev.slideUp(150);
shads.slideUp(150);
}*/
if (lbl.attr('origmedia')=="show" || lbl.attr('origmedia')=="showbg") {
prev.slideDown(150);
shads.slideDown(150);
}
if (lbl.attr('origmedia')=="showbg")
img.addClass('shownowbg');
else
img.removeClass('shownowbg');
var topp = (lbl.offset().top-ft-14),
hh = tb.outerHeight(),
so = jQuery(document).scrollTop(),
foff = jQuery('#form_slider_params').offset().top,
wh = jQuery(window).height(),
diff = (so+wh-foff) - (topp+hh);
if (diff<0) topp = topp + diff;
if (lbl.hasClass("triggernavstyle")) {
prev.hide();
navpre.show();
punchgs.TweenLite.set(navpre,{autoAlpha:1});
var e = jQuery(this);
if (e.closest('#nav_arrows_subs').length>0)
navtype = 'arrows';
else
if (e.closest('#nav_bullets_subs').length>0)
navtype = 'bullets';
else
if (e.closest('#nav_tabs_subs').length>0)
navtype = 'tabs';
else
if (e.closest('#nav_thumbnails_subs').length>0)
navtype = 'thumbs';
var s = changeNavStyle(navtype,jQuery(this));
if (s!=undefined)
cont.html("Suggested Size:"+s.w+" x "+s.h+"px");
else cont.hide();
} else {
cont.show();
prev.show();
navpre.hide();
}
punchgs.TweenLite.to(tb,0.5,{autoAlpha:1,right:"100%",top:topp,ease:punchgs.Power3.easeOut,overwrite:"all"});
}, function() {
var lbl = jQuery(this);
tb = jQuery('#form_toolbar');
punchgs.TweenLite.to(tb,0.2,{autoAlpha:0,ease:punchgs.Power3.easeOut,delay:0.5});
});
});
jQuery('#navigation_arrow_style, #navigation_bullets_style, #tabs_style, #thumbnails_style').on("change",function() {
var e = jQuery(this),
tb = jQuery('#form_toolbar'),
title = tb.find('.toolbar-title'),
cont = tb.find('.toolbar-content');
if (e.closest('#nav_arrows_subs').length>0)
navtype = 'arrows';
else
if (e.closest('#nav_bullets_subs').length>0)
navtype = 'bullets';
else
if (e.closest('#nav_tabs_subs').length>0)
navtype = 'tabs';
else
if (e.closest('#nav_thumbnails_subs').length>0)
navtype = 'thumbs';
var s = changeNavStyle(navtype,jQuery(this));
if (s!=undefined)
cont.html("Suggested Size:"+s.w+" x "+s.h+"px");
else cont.hide();
})
var rs_navigations = jQuery.parseJSON(<?php echo RevSliderFunctions::jsonEncodeForClientSide($arr_navigations); ?>);
var googlef_template_container = wp.template( "rs-preset-googlefont" );
jQuery('#add_new_google_font').click(function(){
var content = googlef_template_container({'value':''});
jQuery('#rs-google-fonts').append(content);
});
jQuery('body').on('click', '.rs-google-remove-field', function(){
jQuery(this).parent().remove();
});
<?php
$google_font = RevSliderFunctions::getVal($arrFieldsParams, 'google_font', array());
if(!empty($google_font) && is_array($google_font)){
foreach($google_font as $gfont){
?>
jQuery('#rs-google-fonts').append(googlef_template_container({'value':'<?php echo esc_attr($gfont); ?>'}));
<?php
}
}
?>
/* Provider: -
var data = {};
data['value'] = key;
data['name'] = revslider_presets[key]['settings']['name'];
data['type'] = revslider_presets[key]['settings']['preset'];
data['img'] = (typeof(revslider_presets[key]['settings']['image']) !== 'undefined') ? revslider_presets[key]['settings']['image'] : '';
data['class'] = (typeof(revslider_presets[key]['settings']['class']) !== 'undefined') ? revslider_presets[key]['settings']['class'] : '';
data['custom'] = (typeof(revslider_presets[key]['settings']['custom']) !== 'undefined' && revslider_presets[key]['settings']['custom'] == true) ? true : false;
var content = googlef_template_container(data);
jQuery('#rs-add-new-settings-preset').before(content);
*/
jQuery(".button-image-select-bg-img").click(function(){
UniteAdminRev.openAddImageDialog("Choose Image",function(urlImage, imageID){
//update input:
jQuery("#background_image").val(urlImage);
});
});
jQuery(".button-image-select-background-img").click(function(){
UniteAdminRev.openAddImageDialog("Choose Image",function(urlImage, imageID){
//update input:
jQuery("#show_alternate_image").val(urlImage);
});
});
});
</script>
</div>
</div>
<div class="rs-mini-toolbar">
<div class="rs-toolbar-savebtn">
<a class='button-primary revgreen' href='javascript:void(0)' id="button_save_slider_t" ><i class="rs-icon-save-light" style="display: inline-block;vertical-align: middle;width: 18px;height: 20px;background-repeat: no-repeat;margin-right:10px;margin-left:2px;"></i><?php _e("Save Settings", REVSLIDER_TEXTDOMAIN);?></a>
<span id="loader_update_t" class="loader_round" style="display:none;background-color:#27AE60 !important; color:#fff;padding: 5px 5px 6px 25px;margin-right: 5px;"><?php _e("updating...", REVSLIDER_TEXTDOMAIN);?> </span>
<span id="update_slider_success_t" class="success_message"></span>
</div>
<div class="rs-toolbar-delete">
<a class='button-primary revred' id="button_delete_slider_t" href='javascript:void(0)' ><i class="revicon-trash"></i><?php _e("Delete Slider", REVSLIDER_TEXTDOMAIN);?></a>
</div>
<div class="rs-toolbar-close">
<a class='button-primary revyellow' id="button_close_slider_edit_t" href='<?php echo self::getViewUrl("sliders");?>'><i class="revicon-cancel"></i><?php _e("Close", REVSLIDER_TEXTDOMAIN);?></a>
</div>
<?php
if (isset($linksEditSlides)) {
?>
<div class="rs-toolbar-slides">
<a class="button-primary revblue" href="<?php echo $linksEditSlides;?>" id="link_edit_slides_t"><i class="revicon-pencil-1"></i><?php _e("Edit Slides", REVSLIDER_TEXTDOMAIN);?></a>
</div>
<?php
}
?>
<div class="rs-toolbar-preview">
<a class="button-primary revgray" href="javascript:void(0)" id="button_preview_slider_t" ><i class="revicon-search-1"></i><?php _e("Preview", REVSLIDER_TEXTDOMAIN);?></a>
</div>
</div>
<!-- PRESET SAVING DIALOG -->
<div id="dialog-rs-add-new-setting-presets" title="<?php _e('Save Settings as Preset', REVSLIDER_TEXTDOMAIN);?>" style="display:none;">
<div class="settings_wrapper unite_settings_wide">
<p><label><?php _e('Preset Name', REVSLIDER_TEXTDOMAIN);?></label> <input type="text" name="rs-preset-name" /></p>
<p><label><?php _e('Select Image', REVSLIDER_TEXTDOMAIN);?></label> <input type="button" value="<?php _e('Select');?>" name="rs-button-select-img" /></p>
<input type="hidden" name="rs-preset-image-id" value="" />
<div id="rs-preset-img-wrapper">
</div>
</div>
</div>
<?php
$exampleID = '"slider1"';
?>
<!--
THE INFO ABOUT EMBEDING OF THE SLIDER
-->
<div class="rs-dialog-embed-slider" style="display: none;">
<div class="revyellow" style="background: none repeat scroll 0% 0% #F1C40F; left:0px;top:36px;position:absolute;height:224px;padding:20px 10px;"><i style="color:#fff;font-size:25px" class="revicon-arrows-ccw"></i></div>
<div style="margin:5px 0px; padding-left: 55px;">
<div style="font-size:14px;margin-bottom:10px;"><strong><?php _e("Standard Embeding",REVSLIDER_TEXTDOMAIN); ?></strong></div>
<?php _e("For the",REVSLIDER_TEXTDOMAIN); ?> <b><?php _e("pages or posts editor",REVSLIDER_TEXTDOMAIN); ?></b> <?php _e("insert the shortcode:",REVSLIDER_TEXTDOMAIN); ?> <code class="rs-example-alias-1"></code>
<div style="width:100%;height:10px"></div>
<?php _e("From the",REVSLIDER_TEXTDOMAIN); ?> <b><?php _e("widgets panel",REVSLIDER_TEXTDOMAIN); ?></b> <?php _e("drag the \"Revolution Slider\" widget to the desired sidebar",REVSLIDER_TEXTDOMAIN); ?>
<div style="width:100%;height:25px"></div>
<div id="advanced-emeding" style="font-size:14px;margin-bottom:10px;"><strong><?php _e("Advanced Embeding",REVSLIDER_TEXTDOMAIN); ?></strong><i class="eg-icon-plus"></i></div>
<div id="advanced-accord" style="display:none">
<?php _e("From the",REVSLIDER_TEXTDOMAIN); ?> <b><?php _e("theme html",REVSLIDER_TEXTDOMAIN); ?></b> <?php _e("use",REVSLIDER_TEXTDOMAIN); ?>: <code>&lt?php putRevSlider( '<span class="rs-example-alias">alias</span>' ); ?&gt</code><br>
<span><?php _e("To add the slider only to homepage use",REVSLIDER_TEXTDOMAIN); ?>: <code>&lt?php putRevSlider('<span class="rs-example-alias"><?php echo $exampleID; ?></span>', 'homepage'); ?&gt</code></span></br>
<span><?php _e("To add the slider on specific pages or posts use",REVSLIDER_TEXTDOMAIN); ?>: <code>&lt?php putRevSlider('<span class="rs-example-alias"><?php echo $exampleID; ?></span>', '2,10'); ?&gt</code></span></br>
</div>
</div>
</div>
<script>
jQuery('#advanced-emeding').click(function() {
jQuery('#advanced-accord').toggle(200);
})
</script>
<script type="text/html" id="tmpl-rs-preset-container">
<span class="rs-preset-selector rs-preset-entry {{ data['type'] }} {{ data['class'] }} " id="rs-preset-{{ data['key'] }}">
<span class="rs-preset-image"<# if( data['img'] !== '' ){ #> style="background-image: url({{ data['img'] }});"<# } #>>
<# if( data['custom'] == true ){ #><span class="rev-update-preset"><i class="revicon-pencil-1"></i></span><span class="rev-remove-preset"><i class="revicon-cancel"></i></span><# } #>
</span>
<span class="rs-preset-label">{{ data['name'] }}</span>
</span>
</script>
<script type="text/html" id="tmpl-rs-preset-googlefont">
<div>
<span class="label" style="min-width:100px" origtitle="<?php _e("Google Font String", REVSLIDER_TEXTDOMAIN);?>"><?php _e("Font", REVSLIDER_TEXTDOMAIN)?>:</span>
<input type="text" style="width:180px" name="google_font[]" value="{{ data['value'] }}">
<a class="button-primary revred rs-google-remove-field" original-title=""><i class="revicon-trash"></i></a>
<div class="tp-clearfix"></div>
</div>
</script>