| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace Jet_Form_Builder; |
| 5 |
|
| 6 |
use Jet_Form_Builder\Blocks\Block_Helper; |
| 7 |
use Jet_Form_Builder\Generators\Get_From_DB; |
| 8 |
use Jet_Form_Builder\Generators\Get_From_Rest_Api; |
| 9 |
use Jet_Form_Builder\Generators\Get_From_Users; |
| 10 |
use Jet_Form_Builder\Generators\Get_Related_Posts; |
| 11 |
use Jet_Form_Builder\Generators\Num_Range; |
| 12 |
use Jet_Form_Builder\Generators\Num_Range_Manual; |
| 13 |
|
| 14 |
// If this file is called directly, abort. |
| 15 |
if ( ! defined( 'WPINC' ) ) { |
| 16 |
die(); |
| 17 |
} |
| 18 |
|
| 19 |
class Form_Manager { |
| 20 |
|
| 21 |
public $generators = false; |
| 22 |
public $builder; |
| 23 |
|
| 24 |
const NAMESPACE_FIELDS = 'jet-forms/'; |
| 25 |
|
| 26 |
/** |
| 27 |
* Returns all instances of options generators classes |
| 28 |
* |
| 29 |
* @return [type] [description] |
| 30 |
*/ |
| 31 |
public function get_options_generators() { |
| 32 |
|
| 33 |
if ( false === $this->generators ) { |
| 34 |
|
| 35 |
$instances = apply_filters( |
| 36 |
'jet-form-builder/forms/options-generators', |
| 37 |
array( |
| 38 |
new Num_Range(), |
| 39 |
new Num_Range_Manual(), |
| 40 |
new Get_From_DB(), |
| 41 |
new Get_From_Users(), |
| 42 |
new Get_Related_Posts(), |
| 43 |
new Get_From_Rest_Api(), |
| 44 |
), |
| 45 |
$this |
| 46 |
); |
| 47 |
|
| 48 |
$this->generators = array(); |
| 49 |
|
| 50 |
foreach ( $instances as $instance ) { |
| 51 |
if ( $instance->can_generate() ) { |
| 52 |
$this->generators[ $instance->get_id() ] = $instance; |
| 53 |
} |
| 54 |
} |
| 55 |
} |
| 56 |
|
| 57 |
return $this->generators; |
| 58 |
} |
| 59 |
|
| 60 |
|
| 61 |
/** |
| 62 |
* Returns generators list |
| 63 |
* |
| 64 |
* @return [type] [description] |
| 65 |
*/ |
| 66 |
public function get_generators_list() { |
| 67 |
|
| 68 |
$generators = $this->get_options_generators(); |
| 69 |
$result = array( |
| 70 |
0 => __( 'Select function...', 'jet-form-builder' ), |
| 71 |
); |
| 72 |
|
| 73 |
foreach ( $generators as $id => $generator ) { |
| 74 |
$result[ $id ] = $generator->get_name(); |
| 75 |
} |
| 76 |
|
| 77 |
return $result; |
| 78 |
} |
| 79 |
|
| 80 |
public function get_only_form_fields( $form_id ): array { |
| 81 |
$content = Block_Helper::get_blocks_by_post( $form_id ); |
| 82 |
|
| 83 |
return Block_Helper::filter_blocks_by_namespace( $content ); |
| 84 |
} |
| 85 |
|
| 86 |
public function get_field_by_name( $form_id, $field_name, $blocks = array() ): array { |
| 87 |
if ( ! $blocks ) { |
| 88 |
$blocks = Block_Helper::get_blocks_by_post( $form_id ); |
| 89 |
} |
| 90 |
|
| 91 |
return Block_Helper::find_block_by_name( $field_name, $blocks ); |
| 92 |
} |
| 93 |
|
| 94 |
} |
| 95 |
|