blank-form.php
| 1 | <?php |
| 2 | /** |
| 3 | * Blank Form pattern. |
| 4 | * |
| 5 | * @link https://sureforms.com |
| 6 | * @since 0.0.1 |
| 7 | * @package SureForms/Templates/Forms |
| 8 | * @author SureForms <https://sureforms.com/> |
| 9 | */ |
| 10 | |
| 11 | if ( ! defined( 'ABSPATH' ) ) { |
| 12 | exit; // Exit if accessed directly. |
| 13 | } |
| 14 | |
| 15 | return [ |
| 16 | 'title' => __( 'Blank Form', 'sureforms' ), |
| 17 | 'slug' => 'blank-form', |
| 18 | 'categories' => [ 'sureforms_form' ], |
| 19 | 'templateCategory' => __( 'Basic', 'sureforms' ), |
| 20 | 'postTypes' => SRFM_FORMS_POST_TYPE, |
| 21 | 'content' => '', |
| 22 | 'isPro' => false, |
| 23 | ]; |
| 24 |