/**
     * 
     * draw css editor
     */
    public function drawGlobalCssEditor()
    {
        ?>
			<div id="css_static_editor_wrap" title="<?php 
        _uge("Global Style Editor", REVSLIDER_TEXTDOMAIN);
        ?>
" style="display:none;">
				<div id="css-static-accordion">
					<h3><?php 
        _uge("Dynamic Styles (Not Editable):", REVSLIDER_TEXTDOMAIN);
        ?>
</h3>
					<div class="css_editor_novice_wrap">
						<textarea id="textarea_show_dynamic_styles" rows="20" cols="81"></textarea>
					</div>
					<h3 class="notopradius" style="margin-top:20px"><?php 
        _uge("Static Styles:", REVSLIDER_TEXTDOMAIN);
        ?>
</h3>
					<div>
						<textarea id="textarea_edit_static" rows="20" cols="81"></textarea>
					</div>
				</div>
			</div>
			
			<div id="dialog-change-css-static" title="<?php 
        _uge("Save Static Styles", REVSLIDER_TEXTDOMAIN);
        ?>
" style="display:none;">
				<p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 50px 0;"></span><?php 
        _uge('Overwrite current static styles?', REVSLIDER_TEXTDOMAIN);
        ?>
</p>
			</div>
			<?php 
    }
Example #2
0
	
	<?php 
require self::getPathTemplate("dialog_preview_slide");
?>
	
	<script type="text/javascript">
	
		var g_patternViewSlide = '<?php 
echo $patternViewSlide;
?>
';
		
		var g_messageChangeImage = "<?php 
_uge("Select Slide Image", REVSLIDER_TEXTDOMAIN);
?>
";
		
		jQuery(document).ready(function() {
			var g_messageDeleteSlide = "<?php 
_uge("Delete this slide?", REVSLIDER_TEXTDOMAIN);
?>
";
			RevSliderAdmin.initSlidesListView("<?php 
echo $sliderID;
?>
");
			
		});
		
	</script>
	
Example #3
0
</span></h3>
		<div class="toggled-content tp-closedatstart p20">
			
			<div class="api-caption"><?php 
_uge("Custom CSS", REVSLIDER_TEXTDOMAIN);
?>
:</div>
			<div class="divide5"></div>
			<textarea name="custom_css" id="rs_custom_css"><?php 
echo $custom_css;
?>
</textarea>
			<div class="divide20"></div>
			
			<div class="api-caption"><?php 
_uge("Custom JavaScript", REVSLIDER_TEXTDOMAIN);
?>
:</div>
			<div class="divide5"></div>
			<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;
Example #4
0
		
		<?php 
echo $linkNewPost;
?>

		<span id="slides_top_loader" class="slides_posts_loader" style="display:none;"><?php 
_uge("Updating Sorting...", REVSLIDER_TEXTDOMAIN);
?>
</span>
		
		<div class="vert_sap"></div>
		<div class="sliders_list_container">
			<?php 
require self::getPathTemplate("slides_list_posts");
?>
		</div>
		<div class="vert_sap_medium"></div>
		<div class="list_slides_bottom">
			<?php 
echo $linkNewPost;
?>
			<a class="button-primary revyellow" href='<?php 
echo self::getViewUrl(RevSliderAdmin::VIEW_SLIDERS);
?>
' ><i class="revicon-cancel"></i><?php 
_uge("Close", REVSLIDER_TEXTDOMAIN);
?>
</a>
			<a href="<?php 
echo $linksSliderSettings;
Example #5
0
				</tr>
				<tr>
					<td><?php 
_uge("Static Styles:", REVSLIDER_TEXTDOMAIN);
?>
</td>
					<td><input type="radio" name="update_static_captions" value="true" checked="checked"> <?php 
_uge("overwrite", REVSLIDER_TEXTDOMAIN);
?>
</td>
					<td><input type="radio" name="update_static_captions" value="false"> <?php 
_uge("append", REVSLIDER_TEXTDOMAIN);
?>
</td>
				</tr>
			</table>
			<br><br>
			<input type="submit" class='button-primary' value="<?php 
_uge("Import Slider", REVSLIDER_TEXTDOMAIN);
?>
">
		</form>		
		
	</div>
	
	<script type="text/javascript">
		jQuery(document).ready(function(){
			RevSliderAdmin.initSlidersListView();
		});
	</script>
	
    /**
     * 
     * put inline error message in a box.
     */
    public function putErrorMessage($message)
    {
        ?>
			<div style="width:800px;height:300px;margin-bottom:10px;border:1px solid black;margin:0px auto;">
				<div style="padding-left:20px;padding-right:20px;line-height:1.5;padding-top:40px;color:red;font-size:16px;text-align:left;">
					<?php 
        _uge("Revolution Slider Error", REVSLIDER_TEXTDOMAIN);
        ?>
: <?php 
        echo $message;
        ?>
 
				</div>
			</div>
			<script type="text/javascript">
				jQuery(document).ready(function(){
					jQuery(".rev_slider").show();	
				});
			</script>
			<?php 
    }
    /**
     * 
     * draw imaeg input:
     * @param $setting
     */
    protected function drawImageInput($setting)
    {
        $class = UniteFunctionsRev::getVal($setting, "class");
        if (!empty($class)) {
            $class = "class='{$class}'";
        }
        $settingsID = $setting["id"];
        $buttonID = $settingsID . "_button";
        $buttonRemoveID = $settingsID . "_button_remove";
        $spanPreviewID = $buttonID . "_preview";
        $img = "";
        $value = UniteFunctionsRev::getVal($setting, "value");
        if (!empty($value)) {
            $urlImage = $value;
            $imagePath = UniteFunctionsWPRev::getImageRealPathFromUrl($urlImage);
            $img = '<div style="width:100px;height:70px;background:url(' . $urlImage . '); background-position:center center; background-size:contain;background-repeat:no-repeat;"></div>';
        }
        ?>
				<span id='<?php 
        echo $spanPreviewID;
        ?>
' class='setting-image-preview'><?php 
        echo $img;
        ?>
</span>
				
				<input type="hidden" id="<?php 
        echo $setting["id"];
        ?>
" name="<?php 
        echo $setting["name"];
        ?>
" value="<?php 
        echo $setting["value"];
        ?>
" />
				
				<input type="button" id="<?php 
        echo $buttonID;
        ?>
" style="width: 110px !important; float: left;" class='button-image-select button-primary revblue<?php 
        echo $class;
        ?>
' value="<?php 
        _uge('Choose Image', REVSLIDER_TEXTDOMAIN);
        ?>
"></input>
				<input type="button" class="button-image-remove button-primary revred" style="width: 110px !important;" id="<?php 
        echo $buttonRemoveID;
        ?>
" value="<?php 
        _uge('Remove', REVSLIDER_TEXTDOMAIN);
        ?>
" />
				<div class="clear"></div>
			<?php 
    }
Example #8
0
    ?>
							<a id="button_save_slider" class='button-primary revgreen' href='javascript:void(0)' ><i class="revicon-cog"></i><span id="create_slider_text"><?php 
    _uge("Create Slider", REVSLIDER_TEXTDOMAIN);
    ?>
</span></a>
						<?php 
}
// end permission
?>
							
							<span class="hor_sap"></span>
							<a id="button_cancel_save_slider" class='button-primary revred' href='<?php 
echo self::getViewUrl("sliders");
?>
' ><i class="revicon-cancel"></i><?php 
_uge("Close", REVSLIDER_TEXTDOMAIN);
?>
 </a>
					  </div>
					</div>
				</div>
				<div class="settings_panel_right">
					<?php 
$settingsSliderParams->draw("form_slider_params", true);
?>
				</div>
				<div class="clear"></div>
			</div>
	</div>

	<script type="text/javascript">
Example #9
0
    /**
     * Adds custom meta field into the essential grid meta box for post/pages
     */
    public function add_eg_additional_meta_field($values)
    {
        $sld = new RevSlider();
        $sliders = $sld->getArrSliders();
        $shortcodes = array();
        if (!empty($sliders)) {
            $first = true;
            foreach ($sliders as $slider) {
                $name = $slider->getParam('shortcode', 'false');
                if ($name != 'false') {
                    $shortcodes[$slider->getID()] = $name;
                    $first = false;
                }
            }
        }
        $selected_slider = isset($values['eg_sources_revslider']) ? $values['eg_sources_revslider'] : '';
        if ($selected_slider == '') {
            $selected_slider[0] = '';
        }
        ?>
		<p>
			<strong style="font-size:14px"><?php 
        _uge('Choose Revolution Slider', REVSLIDER_TEXTDOMAIN);
        ?>
</strong>
		</p>
		<p>
			<select name="eg_sources_revslider" id="eg_sources_revslider">
				<option value=""<?php 
        selected($selected_slider[0], '');
        ?>
><?php 
        _uge('--- Choose Slider ---', REVSLIDER_TEXTDOMAIN);
        ?>
</option>
				<?php 
        if (!empty($shortcodes)) {
            foreach ($shortcodes as $id => $name) {
                ?>
						<option value="<?php 
                echo $id;
                ?>
"<?php 
                selected($selected_slider[0], $id);
                ?>
><?php 
                echo $name;
                ?>
</option>
						<?php 
            }
        }
        ?>
			</select>
		</p>
		<?php 
    }
Example #10
0
:</div>
	<div class="api-desc">
		<?php 
_uge("To update the slider please show the slider install package. The files will be overwriten.", REVSLIDER_TEXTDOMAIN);
?>
		<br> <?php 
_uge("File example: revslider.zip", REVSLIDER_TEXTDOMAIN);
?>
	</div>
	<br>
	<form action="<?php 
echo UniteBaseClassRev::$url_ajax;
?>
" enctype="multipart/form-data" method="post">
		<input type="hidden" name="action" value="uniterevolution_ajax_action">
		<input type="hidden" name="client_action" value="update_plugin">
		<input type="hidden" name="nonce" value="<?php 
echo wp_create_nonce("revslider_actions");
?>
">
		<?php 
_uge("Choose the update file:", REVSLIDER_TEXTDOMAIN);
?>
   
		<br>
		<input type="file" name="update_file" class="input_update_slider">
		<input type="submit" class='button-secondary' value="<?php 
_uge("Update Slider", REVSLIDER_TEXTDOMAIN);
?>
">
	</form>
Example #11
0
?>
.bind("revolution.slide.onloaded",function (e) {
	//alert("slider loaded");
});
		
<?php 
echo $api;
?>
.bind("revolution.slide.onchange",function (e,data) {
	//alert("slide changed to: "+data.slideIndex);
	//data.slideIndex <?php 
_uge('is the index of the li container in this Slider', REVSLIDER_TEXTDOMAIN);
?>
	
	//data.slide <?php 
_uge('is the current slide jQuery object (the li element)', REVSLIDER_TEXTDOMAIN);
?>
	
});

<?php 
echo $api;
?>
.bind("revolution.slide.onpause",function (e,data) {
	//alert("timer paused");
});

<?php 
echo $api;
?>
.bind("revolution.slide.onresume",function (e,data) {
Example #12
0
							<a class='button-primary revgreen' href='<?php 
    echo $urlEditSlide;
    ?>
'><i class="revicon-pencil-1"></i><?php 
    _uge("Edit Post", REVSLIDER_TEXTDOMAIN);
    ?>
</a>
						</span>
						<span class="slide-col col-image">
							<?php 
    if (!empty($urlImageForView)) {
        ?>
								<div id="slide_image_<?php 
        echo $postID;
        ?>
" class="slide_image" title="Click to change the slide image. Note: The post featured image will be changed." alt="<?php 
        echo $imageAlt;
        ?>
" style="background-image:url('<?php 
        echo $urlImageForView;
        ?>
');<?php 
        echo $bgStyle;
        ?>
"></div>
							<?php 
    } else {
        ?>
								no image
							<?php 
    }
Example #13
0
    ?>
</td></tr>
			<tr><td><a href="javascript:UniteLayersRev.insertTemplate('event_location_state')">%event_location_state%</a></td><td><?php 
    _uge("Event location state", REVSLIDER_TEXTDOMAIN);
    ?>
</td></tr>
			<tr><td><a href="javascript:UniteLayersRev.insertTemplate('event_location_postcode')">%event_location_postcode%</a></td><td><?php 
    _uge("Event location postcode", REVSLIDER_TEXTDOMAIN);
    ?>
</td></tr>
			<tr><td><a href="javascript:UniteLayersRev.insertTemplate('event_location_region')">%event_location_region%</a></td><td><?php 
    _uge("Event location region", REVSLIDER_TEXTDOMAIN);
    ?>
</td></tr>
			<tr><td><a href="javascript:UniteLayersRev.insertTemplate('event_location_country')">%event_location_country%</a></td><td><?php 
    _uge("Event location country", REVSLIDER_TEXTDOMAIN);
    ?>
</td></tr>
		</table>

		<?php 
}
?>
	</div>

	<!-- FIXED POSITIONED TOOLBOX -->
		<div class="" style="position:fixed;right:-10px;top:100px;z-index:100;">
			<?php 
if (!$slide->isStaticSlide()) {
    ?>
				<a href="javascript:void(0)" id="button_preview_slide-tb" class="button-primary button-fixed revbluedark"><div style="font-size:16px; padding:10px 5px;" class="revicon-search-1"></div></a>
Example #14
0
        ?>
							<a id="button_copy_slide_<?php 
        echo $slideid;
        ?>
" class='<?php 
        echo $copyButtonClass;
        ?>
' title="<?php 
        echo $copyButtonTitle;
        ?>
" style="width:120px; " href='javascript:void(0)'><i class="revicon-picture"></i><?php 
        _uge("Copy / Move", REVSLIDER_TEXTDOMAIN);
        ?>
</a>							
							<span class="loader_round loader_copy mtop_10 mleft_20 display_block" style="display:none;"><?php 
        _uge("Working...", REVSLIDER_TEXTDOMAIN);
        ?>
</span>
						</span>
						
						<span class="slide-col col-handle">
							<div class="col-handle-inside">
								<span class="ui-icon ui-icon-arrowthick-2-n-s"></span>
							</div>
						</span>	
					<?php 
    }
    // end permission
    ?>
						
						<div class="clear"></div>
		
		<div class="tp-googlefont-cus-row-l"><label><?php 
_uge('Handle:', REVSLIDER_TEXTDOMAIN);
?>
</label><span style="margin-left:-20px;margin-right:2px;"><strong>tp-</strong></span><input type="text" name="eg-font-handle" value="" /></div>
		<div style="margin-top:0px; padding-left:100px; margin-bottom:20px;">
			<i style="font-size:12px;color:#777; line-height:20px;"><?php 
_uge('Unique WordPress handle (Internal use only)', REVSLIDER_TEXTDOMAIN);
?>
</i>
		</div>
		<div class="tp-googlefont-cus-row-l"><label><?php 
_uge('Parameter:', REVSLIDER_TEXTDOMAIN);
?>
</label><input type="text" name="eg-font-url" value="" /></div>
		<div style="padding-left:100px;">
			<i style="font-size:12px;color:#777; line-height:20px;"><?php 
_uge('Copy the Google Font Family from <a href="http://www.google.com/fonts" target="_blank">http://www.google.com/fonts</a><br/>i.e.:<strong>Open+Sans:400,600,700</strong>', REVSLIDER_TEXTDOMAIN);
?>
</i>
		</div>
		
	</div>
	
	
	<script type="text/javascript">
		jQuery(function(){
			UniteAdminRev.initGoogleFonts();
			UniteAdminRev.initAccordion();
		});
	</script>
Example #16
0
    /**
     * 
     * the form
     */
    public function form($instance)
    {
        $slider = new RevSlider();
        $arrSliders = $slider->getArrSlidersShort();
        if (empty($arrSliders)) {
            echo __ug("No sliders found, Please create a slider", REVSLIDER_TEXTDOMAIN);
        } else {
            $field = "rev_slider";
            $fieldPages = "rev_slider_pages";
            $fieldCheck = "rev_slider_homepage";
            $fieldTitle = "rev_slider_title";
            $sliderID = UniteFunctionsRev::getVal($instance, $field);
            $homepage = UniteFunctionsRev::getVal($instance, $fieldCheck);
            $pagesValue = UniteFunctionsRev::getVal($instance, $fieldPages);
            $title = UniteFunctionsRev::getVal($instance, $fieldTitle);
            $fieldID = $this->get_field_id($field);
            $fieldName = $this->get_field_name($field);
            $select = UniteFunctionsRev::getHTMLSelect($arrSliders, $sliderID, 'name="' . $fieldName . '" id="' . $fieldID . '"', true);
            $fieldID_check = $this->get_field_id($fieldCheck);
            $fieldName_check = $this->get_field_name($fieldCheck);
            $checked = "";
            if ($homepage == "on") {
                $checked = "checked='checked'";
            }
            $fieldPages_ID = $this->get_field_id($fieldPages);
            $fieldPages_Name = $this->get_field_name($fieldPages);
            $fieldTitle_ID = $this->get_field_id($fieldTitle);
            $fieldTitle_Name = $this->get_field_name($fieldTitle);
            ?>
			<label for="<?php 
            echo $fieldTitle_ID;
            ?>
"><?php 
            _uge("Title", REVSLIDER_TEXTDOMAIN);
            ?>
:</label>
			<input type="text" name="<?php 
            echo $fieldTitle_Name;
            ?>
" id="<?php 
            echo $fieldTitle_ID;
            ?>
" value="<?php 
            echo $title;
            ?>
" class="widefat">
			
			<br><br>
			
			<?php 
            _uge("Choose Slider", REVSLIDER_TEXTDOMAIN);
            ?>
: <?php 
            echo $select;
            ?>
			<div style="padding-top:10px;"></div>
			
			<label for="<?php 
            echo $fieldID_check;
            ?>
"><?php 
            _uge("Home Page Only", REVSLIDER_TEXTDOMAIN);
            ?>
:</label>
			<input type="checkbox" name="<?php 
            echo $fieldName_check;
            ?>
" id="<?php 
            echo $fieldID_check;
            ?>
" <?php 
            echo $checked;
            ?>
 >
			<br><br>
			<label for="<?php 
            echo $fieldPages_ID;
            ?>
"><?php 
            _uge("Pages: (example: 2,10)", REVSLIDER_TEXTDOMAIN);
            ?>
</label>
			<input type="text" name="<?php 
            echo $fieldPages_Name;
            ?>
" id="<?php 
            echo $fieldPages_ID;
            ?>
" value="<?php 
            echo $pagesValue;
            ?>
">
			
			<div style="padding-top:10px;"></div>
		<?php 
        }
        //else
    }
    /**
     * 
     * output loading message
     */
    public function loadingMessageOutput()
    {
        ?>
			<div class="message_loading_preview"><?php 
        _uge("Loading Preview...", REVSLIDER_TEXTDOMAIN);
        ?>
</div>
			<?php 
    }
Example #18
0
' ><i class="revicon-cancel"></i><?php 
_uge("Close", REVSLIDER_TEXTDOMAIN);
?>
</a>							
							<a class="button-primary revblue" href="<?php 
echo $linksEditSlides;
?>
"  id="link_edit_slides"><i class="revicon-pencil-1"></i><?php 
_uge("Edit Slides", REVSLIDER_TEXTDOMAIN);
?>
 </a>												
							<a class="button-primary revgray" href="javascript:void(0)"  id="button_preview_slider" title="<?php 
_uge("Preview Slider", REVSLIDER_TEXTDOMAIN);
?>
"><i class="revicon-search-1"></i><?php 
_uge("Preview", REVSLIDER_TEXTDOMAIN);
?>
</a>							
							<div class="clear"></div>

							<div class="divide20"></div>
					  </div>
					</div>
					
				<?php 
if ($permission) {
    // permission
    ?>
					
					<?php 
    require self::getPathTemplate("slider_toolbox");
Example #19
0
<div id="divColorPicker" style="display:none;"></div>

<?php 
self::requireView("system/video_dialog");
self::requireView("system/update_dialog");
self::requireView("system/general_settings_dialog");
?>

<div class="tp-plugin-version">&copy; All rights reserved, <a href="http://unitecms.net" target="_blank">Unite CMS</a>  ver. <?php 
echo $revSliderVersion;
?>
<!-- 

	<a id="button_upload_plugin" class="button-primary revpurple update_plugin" href="javascript:void(0)"><?php 
_uge("Update Plugin", REVSLIDER_TEXTDOMAIN);
?>
</a>
 -->	
</div>


<?php 
if (GlobalsRevSlider::SHOW_DEBUG == true) {
    ?>

	Debug Functions (for developer use only): 
	<br><br>
	
	<a id="button_update_text" class="button-primary revpurple" href="javascript:void(0)">Update Text</a>
	
    /**
     * 
     * draw responsitive settings value
     */
    protected function drawResponsitiveSettings($setting)
    {
        $id = $setting["id"];
        $w1 = UniteFunctionsRev::getVal($setting, "w1");
        $w2 = UniteFunctionsRev::getVal($setting, "w2");
        $w3 = UniteFunctionsRev::getVal($setting, "w3");
        $w4 = UniteFunctionsRev::getVal($setting, "w4");
        $w5 = UniteFunctionsRev::getVal($setting, "w5");
        $w6 = UniteFunctionsRev::getVal($setting, "w6");
        $sw1 = UniteFunctionsRev::getVal($setting, "sw1");
        $sw2 = UniteFunctionsRev::getVal($setting, "sw2");
        $sw3 = UniteFunctionsRev::getVal($setting, "sw3");
        $sw4 = UniteFunctionsRev::getVal($setting, "sw4");
        $sw5 = UniteFunctionsRev::getVal($setting, "sw5");
        $sw6 = UniteFunctionsRev::getVal($setting, "sw6");
        $disabled = UniteFunctionsRev::getVal($setting, "disabled") == true;
        $strDisabled = "";
        if ($disabled == true) {
            $strDisabled = "disabled='disabled'";
        }
        ?>
			<table>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
1:
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_w1" name="<?php 
        echo $id;
        ?>
_w1" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w1;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
1: 
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_sw1" name="<?php 
        echo $id;
        ?>
_sw1" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw1;
        ?>
">
					</td>
				</tr>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
2: 
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_w2" name="<?php 
        echo $id;
        ?>
_w2" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w2;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
2: 
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_sw2" name="<?php 
        echo $id;
        ?>
_sw2" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw2;
        ?>
">
					</td>
				</tr>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
3: 
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_w3" name="<?php 
        echo $id;
        ?>
_w3" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w3;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
3:
					</td>
					<td>
						<input id="<?php 
        echo $id;
        ?>
_sw3" name="<?php 
        echo $id;
        ?>
_sw3" type="text" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw3;
        ?>
">
					</td>
				</tr>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
4: 
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_w4" name="<?php 
        echo $id;
        ?>
_w4" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w4;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
4: 
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_sw4" name="<?php 
        echo $id;
        ?>
_sw4" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw4;
        ?>
">
					</td>
				</tr>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
5:
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_w5" name="<?php 
        echo $id;
        ?>
_w5" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w5;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
5:
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_sw5" name="<?php 
        echo $id;
        ?>
_sw5" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw5;
        ?>
">
					</td>
				</tr>
				<tr>
					<td>
						<?php 
        _uge("Screen Width", REVSLIDER_TEXTDOMAIN);
        ?>
6:
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_w6" name="<?php 
        echo $id;
        ?>
_w6" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $w6;
        ?>
">
					</td>
					<td>
						<?php 
        _uge("Slider Width", REVSLIDER_TEXTDOMAIN);
        ?>
6:
					</td>
					<td>
						<input type="text" id="<?php 
        echo $id;
        ?>
_sw6" name="<?php 
        echo $id;
        ?>
_sw6" class="textbox-small" <?php 
        echo $strDisabled;
        ?>
 value="<?php 
        echo $sw6;
        ?>
">
					</td>
				</tr>				
								
			</table>
			<?php 
    }
Example #21
0
echo GlobalsRevSlider::DEFAULT_VIMEO_ARGUMENTS;
?>
" ></input>
			
			<div class="mtop_20">
				
				
			</div>
			
			<div class="clear"></div>
			<div class="add-button-wrapper">
				<a href="javascript:void(0)" class="button-primary revblue" id="button-video-add" data-textadd="<?php 
_uge("Add This Video", REVSLIDER_TEXTDOMAIN);
?>
" data-textupdate="<?php 
_uge("Update Video", REVSLIDER_TEXTDOMAIN);
?>
" ><?php 
_uge("Add This Video", REVSLIDER_TEXTDOMAIN);
?>
</a>
			</div>
			
		</div>
		
	</div>
	
	<div id="video_content" class="video_right" style="display:none"></div>		
	
</div>
_uge("the basic Height of one Thumbnail (only if thumb is selected)", "revslider");
_uge("Thumb Amount", "revslider");
_uge("the amount of the Thumbs visible same time (only if thumb is selected)", "revslider");
_uge("Hide Slider Under Width", "revslider");
_uge("Hide the slider under some slider width. Works only in Responsive Style. Not available for Fullwidth.", "revslider");
_uge("Hide Defined Layers Under Width", "revslider");
_uge("Hide some defined layers in the layer properties under some slider width.", "revslider");
_uge("Hide All Layers Under Width", "revslider");
_uge("Hide all layers under some slider width", "revslider");
_uge("Start With Slide", "revslider");
_uge("Change it if you want to start from a different slide then 1", "revslider");
_uge("First Transition Active", "revslider");
_uge("If active, it will overwrite the first slide transition. Use it when you want a special transition for the first slide only.", "revslider");
_uge("First Transition Type", "revslider");
_uge("First slide transition type", "revslider");
_uge("Replace me!", "revslider");
_uge("First Transition Duration", "revslider");
_uge("First slide transition duration (Default:300, min: 100 max 2000)", "revslider");
_uge("First Transition Slot Amount", "revslider");
_uge("The number of slots or boxes the slide is divided into. If you use boxfade, over 7 slots can be juggy", "revslider");
_uge("JQuery No Conflict Mode", "revslider");
_uge("Turns on / off jquery noconflict mode. You can play with this option when you have some javascript conflicts.", "revslider");
_uge("Put JS Includes To Body", "revslider");
_uge("Putting the js to body (in addition to head) is good for fixing some javascript conflicts of type: TypeError: tpj('#rev_slider_1_1').show().revolution is not a function", "revslider");
_uge("True", "revslider");
_uge("False", "revslider");
_uge("Output Filters Protection", "revslider");
_uge("Activate a protection against wordpress output filters that adds html blocks to the shortcode output like P and BR", "revslider");
_uge("By Compressing Output", "revslider");
_uge("By Echo Output", "revslider");
Example #23
0
:
			<div class="divide5"></div>			
			<input type="text" class="text-sidebar-link" id="replace_url_from">
			
			<div class="divide10"></div>
			
			<?php 
_uge("Replace To (example - http://yoursite.com)", REVSLIDER_TEXTDOMAIN);
?>
:
			<div class="divide5"></div>
			<input type="text" class="text-sidebar-link" id="replace_url_to">
			
			<div class="divide10"></div>
			
			<a id="button_replace_url" class='button-primary revyellow' href='javascript:void(0)' ><?php 
_uge("Replace", REVSLIDER_TEXTDOMAIN);
?>
</a>
			<div id="loader_replace_url" class="loader_round" style="display:none;"><?php 
_uge("Replacing...", REVSLIDER_TEXTDOMAIN);
?>
 </div>
			<div id="replace_url_success" class="success_message" class="display:none;"></div>


		</div>	
	</div>