PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 4.01.02
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v4.01.02
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 / FrmPointers.php

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

47 lines 926 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * This class handles the pointers used in the introduction tour.
5 * @deprecated 3.01.03
6 * @codeCoverageIgnore
7 */
8 class FrmPointers {
9
10 /**
11 * @var object Instance of this class
12 */
13 public static $instance;
14
15 /**
16 * Get the singleton instance of this class
17 *
18 * @return object
19 */
20 public static function get_instance() {
21 _deprecated_function( __FUNCTION__, '3.01.03' );
22
23 if ( ! ( self::$instance instanceof self ) ) {
24 self::$instance = new self();
25 }
26
27 return self::$instance;
28 }
29
30 /**
31 * Load the introduction tour
32 */
33 public function intro_tour() {
34 _deprecated_function( __FUNCTION__, '3.01.03' );
35 }
36
37 /**
38 * Prints the pointer script
39 *
40 * @param string $selector The CSS selector the pointer is attached to.
41 * @param array $options The options for the pointer.
42 */
43 public function print_scripts( $selector, $options ) {
44 _deprecated_function( __FUNCTION__, '3.01.03' );
45 }
46 }
47