PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.12.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.12.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 / FrmDeprecated.php

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

30 lines 530 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 * Class FrmDeprecated
8 *
9 * @since 3.04.03
10 * @codeCoverageIgnore
11 */
12 class FrmDeprecated {
13
14 /**
15 * Routes for wordpress pages -- we're just replacing content
16 *
17 * @deprecated 3.0
18 */
19 public static function page_route( $content ) {
20 _deprecated_function( __FUNCTION__, '3.0' );
21 global $post;
22
23 if ( $post && isset( $_GET['form'] ) ) {
24 $content = FrmFormsController::page_preview();
25 }
26
27 return $content;
28 }
29 }
30