wp_blog/wp-content/plugins/revslider/inc_php/revslider_globals.class.php

32 lines
1.2 KiB
PHP
Raw Normal View History

2020-01-02 23:15:16 +07:00
<?php
define("REVSLIDER_TEXTDOMAIN","revslider");
class GlobalsRevSlider{
const SHOW_DEBUG = false;
const TABLE_SLIDERS_NAME = "revslider_sliders";
const TABLE_SLIDES_NAME = "revslider_slides";
const TABLE_SETTINGS_NAME = "revslider_settings";
const FIELDS_SLIDE = "slider_id,slide_order,params,layers";
const FIELDS_SLIDER = "title,alias,params";
const YOUTUBE_EXAMPLE_ID = "cXwQjHRZieI";
const DEFAULT_YOUTUBE_ARGUMENTS = "hd=1&amp;wmode=opaque&amp;controls=1&amp;showinfo=0;rel=0;";
const DEFAULT_VIMEO_ARGUMENTS = "title=0&amp;byline=0&amp;portrait=0;api=1";
const LINK_HELP_SLIDERS = "http://themepunch.com/codecanyon/revolution_wp/documentation/";
const LINK_HELP_SLIDER = "http://themepunch.com/codecanyon/revolution_wp/documentation/#!/main_settings";
const LINK_HELP_SLIDE_LIST = "http://themepunch.com/codecanyon/revolution_wp/documentation/#!/slides_editor";
const LINK_HELP_SLIDE = "http://themepunch.com/codecanyon/revolution_wp/documentation/#!/slide_general_settings";
public static $table_sliders;
public static $table_slides;
public static $table_settings;
public static $filepath_captions;
public static $filepath_captions_original;
public static $urlCaptionsCSS;
public static $isNewVersion;
}
?>