PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.9.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.9.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / deprecated / FrmWelcomeController.php

FrmWelcomeController.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.9.1, at deprecated/FrmWelcomeController.php

122 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 class FrmWelcomeController {
7
8 public static $menu_slug = 'formidable-welcome';
9
10 public static $option_name = 'frm_activation_redirect';
11
12 /**
13 * Register all of the hooks related to the welcome screen functionality
14 *
15 * @return void
16 */
17 public static function load_hooks() {
18 _deprecated_function( __METHOD__, '6.8' );
19 }
20
21 /**
22 * Performs a safe (local) redirect to the welcome screen
23 * when the plugin is activated
24 *
25 * @deprecated 6.8
26 * @return void
27 */
28 public static function redirect() {
29 _deprecated_function( __METHOD__, '6.8' );
30 }
31
32 /**
33 * Add a submenu welcome screen for the formidable parent menu
34 *
35 * @deprecated 6.8
36 * @return void
37 */
38 public static function screen_page() {
39 _deprecated_function( __METHOD__, '6.8' );
40 }
41
42 /**
43 * Include html content for the welcome screem
44 *
45 * @deprecated 6.8
46 * @return void
47 */
48 public static function screen_content() {
49 _deprecated_function( __METHOD__, '6.8' );
50 }
51
52 /**
53 * Remove the welcome screen submenu page from the formidable parent menu
54 * since it is not necessary to show that link there
55 *
56 * @deprecated 6.8
57 * @return void
58 */
59 public static function remove_menu() {
60 _deprecated_function( __METHOD__, '6.8' );
61 }
62
63 /**
64 * Register the stylesheets for the welcome screen.
65 *
66 * @deprecated 6.8
67 * @return void
68 */
69 public static function enqueue_styles() {
70 _deprecated_function( __METHOD__, '6.8' );
71 }
72
73 /**
74 * Helps to confirm if the user is currently on the welcome screen
75 *
76 * @deprecated 6.8
77 * @return bool
78 */
79 public static function is_welcome_screen() {
80 _deprecated_function( __METHOD__, '6.8' );
81 return false;
82 }
83
84 /**
85 * Build the admin URL link for the welcome screen
86 *
87 * @deprecated 6.8
88 * @return string
89 */
90 public static function settings_link() {
91 _deprecated_function( __METHOD__, '6.8' );
92 return '';
93 }
94
95 /**
96 * @deprecated 6.8
97 * @return void
98 */
99 public static function upgrade_to_pro_button() {
100 _deprecated_function( __METHOD__, '6.8' );
101 }
102
103 /**
104 * @deprecated 6.8
105 * @return void
106 */
107 public static function maybe_show_license_box() {
108 _deprecated_function( __METHOD__, '6.8' );
109 }
110
111 /**
112 * @param string $plugin
113 * @param string $upgrade_link_args
114 *
115 * @deprecated 6.8
116 * @return void
117 */
118 public static function maybe_show_conditional_action_button( $plugin, $upgrade_link_args ) {
119 _deprecated_function( __METHOD__, '6.8' );
120 }
121 }
122