PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 1.1.5
JetFormBuilder — Dynamic Blocks Form Builder v1.1.5
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / includes / form-manager.php
jetformbuilder / includes Last commit date
actions 5 years ago admin 5 years ago blocks 5 years ago classes 5 years ago compatibility 5 years ago dev-mode 5 years ago exceptions 5 years ago form-messages 5 years ago form-patterns 5 years ago form-response 5 years ago gateways 5 years ago generators 5 years ago integrations 5 years ago presets 5 years ago request 5 years ago shortcodes 5 years ago widgets 5 years ago autoloader.php 5 years ago file-upload.php 5 years ago form-handler.php 5 years ago form-manager.php 5 years ago form-messages-builder.php 5 years ago form-messages-manager.php 5 years ago form-preset.php 5 years ago live-form.php 5 years ago plugin.php 5 years ago post-type.php 5 years ago request-handler.php 5 years ago
form-manager.php
148 lines
1 <?php
2
3
4 namespace Jet_Form_Builder;
5
6 use Jet_Form_Builder\Gateways\Gateway_Manager;
7 use Jet_Form_Builder\Generators\Get_From_DB;
8 use Jet_Form_Builder\Generators\Get_From_Field;
9 use Jet_Form_Builder\Generators\Num_Range;
10 use Jet_Form_Builder\Shortcodes\Manager;
11
12
13 // If this file is called directly, abort.
14 if ( ! defined( 'WPINC' ) ) {
15 die();
16 }
17
18 class Form_Manager {
19 public $generators = false;
20 public $builder;
21 private $result_fields = array();
22
23 const NAMESPACE_FIELDS = 'jet-forms/';
24
25 public function __construct() {
26 if ( Plugin::instance()->allow_gateways ) {
27 Gateway_Manager::instance();
28 }
29
30 Manager::instance();
31 }
32
33 /**
34 * Returns all instances of options generators classes
35 *
36 * @return [type] [description]
37 */
38 public function get_options_generators() {
39
40 if ( false === $this->generators ) {
41
42 $instances = array(
43 new Num_Range(),
44 new Get_From_DB(),
45 new Get_From_Field(),
46 );
47
48 $instances = apply_filters( 'jet-form-builder/forms/options-generators', $instances, $this );
49
50 foreach ( $instances as $instance ) {
51 if ( $instance->can_generate() ) {
52 $this->generators[ $instance->get_id() ] = $instance;
53 }
54 }
55
56 }
57
58 return $this->generators;
59 }
60
61 /**
62 * Returns form fields,
63 * parsed from post_content
64 *
65 * @param $content
66 *
67 * @return array[]
68 */
69 public function get_fields( $content ) {
70 return parse_blocks( $content );
71 }
72
73 public function is_not_field( $block_name ) {
74 return (
75 stripos(
76 $block_name,
77 self::NAMESPACE_FIELDS
78 ) === false
79 );
80 }
81
82 public function is_field( $block_name, $needle ) {
83 return stristr( $block_name, $needle );
84 }
85
86 public function get_form_blocks( $form_id ) {
87 return $this->get_fields( get_post( $form_id )->post_content );
88 }
89
90 public function prepare_fields_names( $block_name ) {
91 return "jet-forms/$block_name";
92 }
93
94 public function get_only_form_fields( $form_id, $exclude = array(), $recursive = true ) {
95 $content = $this->get_form_blocks( $form_id );
96 $exclude = array_map( array( $this, 'prepare_fields_names' ), $exclude );
97
98 $this->result_fields = array();
99 $this->get_inner_fields( $content, $exclude, $recursive );
100
101 return $this->result_fields;
102 }
103
104
105 private function get_inner_fields( $source, $exclude, $recursive = true ) {
106 foreach ( $source as $block ) {
107
108 if ( ! $this->is_not_field( $block['blockName'] ) && ! in_array( $block['blockName'], $exclude ) ) {
109 $this->result_fields[] = $block;
110 }
111
112 if ( $recursive && ! empty( $block['innerBlocks'] ) ) {
113 $this->get_inner_fields( $block['innerBlocks'], $exclude, true );
114 }
115 }
116 }
117
118
119 /**
120 * Returns generators list
121 *
122 * @return [type] [description]
123 */
124 public function get_generators_list() {
125
126 $generators = $this->get_options_generators();
127 $result = array(
128 0 => __( 'Select function...', 'jet-form-builder' ),
129 );
130
131 foreach ( $generators as $id => $generator ) {
132 $result[ $id ] = $generator->get_name();
133 }
134
135 return $result;
136
137 }
138
139 public function field_name( $blockName ) {
140 return explode( self::NAMESPACE_FIELDS, $blockName )[1];
141 }
142
143 public function get_form_content( $form_id ) {
144 return get_post( $form_id )->post_content;
145 }
146
147
148 }