button-types
2 months ago
conditional-block
2 years ago
exceptions
2 years ago
modules
2 months ago
render
2 weeks ago
types
1 week ago
action-buttons-manager.php
2 years ago
block-helper.php
2 weeks ago
blocks-repository-base.php
2 months ago
default-blocks-repository.php
2 years ago
dynamic-value.php
1 year ago
form-builder-blocks-repository.php
1 year ago
module.php
1 year ago
native-block-wrapper-attributes.php
2 years ago
default-blocks-repository.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | class Default_Blocks_Repository extends Blocks_Repository_Base { |
| 12 | |
| 13 | public function rep_instances(): array { |
| 14 | return array( |
| 15 | new Types\Form(), |
| 16 | ); |
| 17 | } |
| 18 | |
| 19 | } |
| 20 |