PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8
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 6.8, at deprecated/FrmPointers.php

50 lines 1019 B
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 /**
7 * This class handles the pointers used in the introduction tour.
8 * @deprecated 3.01.03
9 * @codeCoverageIgnore
10 */
11 class FrmPointers {
12
13 /**
14 * @var object Instance of this class
15 */
16 public static $instance;
17
18 /**
19 * Get the singleton instance of this class
20 *
21 * @return object
22 */
23 public static function get_instance() {
24 _deprecated_function( __FUNCTION__, '3.01.03' );
25
26 if ( ! ( self::$instance instanceof self ) ) {
27 self::$instance = new self();
28 }
29
30 return self::$instance;
31 }
32
33 /**
34 * Load the introduction tour
35 */
36 public function intro_tour() {
37 _deprecated_function( __FUNCTION__, '3.01.03' );
38 }
39
40 /**
41 * Prints the pointer script
42 *
43 * @param string $selector The CSS selector the pointer is attached to.
44 * @param array $options The options for the pointer.
45 */
46 public function print_scripts( $selector, $options ) {
47 _deprecated_function( __FUNCTION__, '3.01.03' );
48 }
49 }
50