PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 2.05.09
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v2.05.09
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 / classes / helpers / FrmShortcodeHelper.php

FrmShortcodeHelper.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 2.05.09, at classes/helpers/FrmShortcodeHelper.php

29 lines 438 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @since 2.02.12
4 */
5
6 class FrmShortcodeHelper {
7
8 /**
9 * Get the shortcode attributes in key/value pairs from a string
10 *
11 * @since 2.02.12
12 * @param string $text
13 *
14 * @return array
15 */
16 public static function get_shortcode_attribute_array( $text ) {
17 $atts = array();
18 if ( $text !== '' ) {
19 $atts = shortcode_parse_atts( $text );
20 }
21
22 if ( ! is_array( $atts ) ) {
23 $atts = array();
24 }
25
26 return $atts;
27 }
28 }
29