@@ -749,8 +749,8 @@ discard block |
||
| 749 | 749 | */ |
| 750 | 750 | public static function get_shortcode_tag( $shortcodes, $short_key, $args ) { |
| 751 | 751 | _deprecated_function( __FUNCTION__, '3.0', 'FrmShortcodeHelper::get_shortcode_tag' ); |
| 752 | - return FrmShortcodeHelper::get_shortcode_tag( $shortcodes, $short_key, $args ); |
|
| 753 | - } |
|
| 752 | + return FrmShortcodeHelper::get_shortcode_tag( $shortcodes, $short_key, $args ); |
|
| 753 | + } |
|
| 754 | 754 | |
| 755 | 755 | /** |
| 756 | 756 | * @deprecated 3.01 |
@@ -763,52 +763,52 @@ discard block |
||
| 763 | 763 | /** |
| 764 | 764 | * @deprecated 3.02.03 |
| 765 | 765 | */ |
| 766 | - public static function jquery_themes() { |
|
| 766 | + public static function jquery_themes() { |
|
| 767 | 767 | _deprecated_function( __FUNCTION__, '3.02.03', 'FrmProStylesController::jquery_themes' ); |
| 768 | 768 | |
| 769 | - $themes = array( |
|
| 770 | - 'ui-lightness' => 'UI Lightness', |
|
| 771 | - 'ui-darkness' => 'UI Darkness', |
|
| 772 | - 'smoothness' => 'Smoothness', |
|
| 773 | - 'start' => 'Start', |
|
| 774 | - 'redmond' => 'Redmond', |
|
| 775 | - 'sunny' => 'Sunny', |
|
| 776 | - 'overcast' => 'Overcast', |
|
| 777 | - 'le-frog' => 'Le Frog', |
|
| 778 | - 'flick' => 'Flick', |
|
| 769 | + $themes = array( |
|
| 770 | + 'ui-lightness' => 'UI Lightness', |
|
| 771 | + 'ui-darkness' => 'UI Darkness', |
|
| 772 | + 'smoothness' => 'Smoothness', |
|
| 773 | + 'start' => 'Start', |
|
| 774 | + 'redmond' => 'Redmond', |
|
| 775 | + 'sunny' => 'Sunny', |
|
| 776 | + 'overcast' => 'Overcast', |
|
| 777 | + 'le-frog' => 'Le Frog', |
|
| 778 | + 'flick' => 'Flick', |
|
| 779 | 779 | 'pepper-grinder' => 'Pepper Grinder', |
| 780 | - 'eggplant' => 'Eggplant', |
|
| 781 | - 'dark-hive' => 'Dark Hive', |
|
| 782 | - 'cupertino' => 'Cupertino', |
|
| 783 | - 'south-street' => 'South Street', |
|
| 784 | - 'blitzer' => 'Blitzer', |
|
| 785 | - 'humanity' => 'Humanity', |
|
| 786 | - 'hot-sneaks' => 'Hot Sneaks', |
|
| 787 | - 'excite-bike' => 'Excite Bike', |
|
| 788 | - 'vader' => 'Vader', |
|
| 789 | - 'dot-luv' => 'Dot Luv', |
|
| 790 | - 'mint-choc' => 'Mint Choc', |
|
| 791 | - 'black-tie' => 'Black Tie', |
|
| 792 | - 'trontastic' => 'Trontastic', |
|
| 793 | - 'swanky-purse' => 'Swanky Purse', |
|
| 794 | - ); |
|
| 780 | + 'eggplant' => 'Eggplant', |
|
| 781 | + 'dark-hive' => 'Dark Hive', |
|
| 782 | + 'cupertino' => 'Cupertino', |
|
| 783 | + 'south-street' => 'South Street', |
|
| 784 | + 'blitzer' => 'Blitzer', |
|
| 785 | + 'humanity' => 'Humanity', |
|
| 786 | + 'hot-sneaks' => 'Hot Sneaks', |
|
| 787 | + 'excite-bike' => 'Excite Bike', |
|
| 788 | + 'vader' => 'Vader', |
|
| 789 | + 'dot-luv' => 'Dot Luv', |
|
| 790 | + 'mint-choc' => 'Mint Choc', |
|
| 791 | + 'black-tie' => 'Black Tie', |
|
| 792 | + 'trontastic' => 'Trontastic', |
|
| 793 | + 'swanky-purse' => 'Swanky Purse', |
|
| 794 | + ); |
|
| 795 | 795 | |
| 796 | 796 | $themes = apply_filters( 'frm_jquery_themes', $themes ); |
| 797 | - return $themes; |
|
| 798 | - } |
|
| 797 | + return $themes; |
|
| 798 | + } |
|
| 799 | 799 | |
| 800 | 800 | /** |
| 801 | 801 | * @deprecated 3.02.03 |
| 802 | 802 | */ |
| 803 | - public static function enqueue_jquery_css() { |
|
| 803 | + public static function enqueue_jquery_css() { |
|
| 804 | 804 | _deprecated_function( __FUNCTION__, '3.02.03', 'FrmProStylesController::enqueue_jquery_css' ); |
| 805 | 805 | |
| 806 | 806 | $form = self::get_form_for_page(); |
| 807 | 807 | $theme_css = FrmStylesController::get_style_val( 'theme_css', $form ); |
| 808 | - if ( $theme_css != -1 ) { |
|
| 808 | + if ( $theme_css != -1 ) { |
|
| 809 | 809 | wp_enqueue_style( 'jquery-theme', self::jquery_css_url( $theme_css ), array(), FrmAppHelper::plugin_version() ); |
| 810 | - } |
|
| 811 | - } |
|
| 810 | + } |
|
| 811 | + } |
|
| 812 | 812 | |
| 813 | 813 | /** |
| 814 | 814 | * @deprecated 3.02.03 |
@@ -821,7 +821,7 @@ discard block |
||
| 821 | 821 | } |
| 822 | 822 | |
| 823 | 823 | return FrmProStylesController::jquery_css_url( $theme_css ); |
| 824 | - } |
|
| 824 | + } |
|
| 825 | 825 | |
| 826 | 826 | /** |
| 827 | 827 | * @deprecated 3.02.03 |