PluginProbe
Hash Form – Drag & Drop Form Builder / trunk
Hash Form – Drag & Drop Form Builder vtrunk
1.4.4 1.4.3 1.4.2 1.4.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.6.1 1.2.7 1.2.8 1.2.9 1.3.0 All 47 releases
hash-form / includes / HashFormShortcode.php

HashFormShortcode.php in Hash Form – Drag & Drop Form Builder trunk, at includes/HashFormShortcode.php

23 lines 469 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') || die();
4
5 class HashFormShortcode {
6
7 public function __construct() {
8 add_shortcode('hashform', array($this, 'get_form_shortcode'));
9 }
10
11 public static function get_form_shortcode($atts) {
12 $shortcode_atts = shortcode_atts(array(
13 'id' => '',
14 ), $atts);
15 ob_start();
16 HashFormPreview::show_form($shortcode_atts['id']);
17 return ob_get_clean();
18 }
19
20 }
21
22 new HashFormShortcode();
23