admin-tabs
2 months ago
assets
3 weeks ago
tools
2 months ago
block-asset.php
1 month ago
block-render.php
2 months ago
block-template.php
2 months ago
block-type.php
2 months ago
block.json
2 months ago
postcss.config.js
2 months ago
webpack.config.js
2 months ago
block-render.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Blocks_V2\Phone_Field; |
| 4 | |
| 5 | use Jet_Form_Builder\Blocks\Render\Base; |
| 6 | |
| 7 | // If this file is called directly, abort. |
| 8 | if ( ! defined( 'WPINC' ) ) { |
| 9 | die; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * International Phone Field Renderer |
| 14 | */ |
| 15 | class Block_Render extends Base { |
| 16 | |
| 17 | /** |
| 18 | * Get block name |
| 19 | * |
| 20 | * @return string |
| 21 | */ |
| 22 | public function get_name() { |
| 23 | return 'phone-field'; |
| 24 | } |
| 25 | } |
| 26 |