contact-form.php
| 1 | <?php |
| 2 | /** |
| 3 | * Contact 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' => __( 'Contact Form', 'sureforms' ), |
| 17 | 'slug' => 'contact-form', |
| 18 | 'info' => __( 'A basic Contact Form', 'sureforms' ), |
| 19 | 'categories' => [ 'sureforms_form' ], |
| 20 | 'templateCategory' => __( 'Basic', 'sureforms' ), |
| 21 | 'postTypes' => SRFM_FORMS_POST_TYPE, |
| 22 | 'content' => '<!-- wp:srfm/advanced-heading {"block_id":"88614146","headingTitle":"Contact us","headingDescToggle":true,"headingDesc":"Use this form to contact our team. We usually respond within 24 hours but it can take longer on weekends and around public holidays.","headSpace":16,"subHeadSpace":24,"subHeadFontWeight":"400","subHeadFontSize":18} /--><!-- wp:srfm/input {"block_id":"e8a489f7","required":true,"label":"Name","formId":79} /--><!-- wp:srfm/email {"block_id":"a5728450","required":true,"formId":79} /--><!-- wp:srfm/input {"block_id":"9ec2463e","required":true,"label":"Subject","formId":79} /--><!-- wp:srfm/textarea {"block_id":"4afb9556","required":true,"label":"Message","formId":79} /-->', |
| 23 | 'isPro' => false, |
| 24 | ]; |
| 25 |