| 1 |
<?php |
| 2 |
/** |
| 3 |
* Support 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' => __( 'Support Form', 'sureforms' ), |
| 17 |
'slug' => 'support-form', |
| 18 |
'info' => __( 'Form for submitting support query', 'sureforms' ), |
| 19 |
'categories' => [ 'sureforms_form' ], |
| 20 |
'templateCategory' => __( 'Support', 'sureforms' ), |
| 21 |
'postTypes' => SRFM_FORMS_POST_TYPE, |
| 22 |
'content' => '<!-- wp:srfm/input {"block_id":"fd4ef0f9","required":true,"fieldWidth":50,"label":"First Name","formId":81} /--><!-- wp:srfm/input {"block_id":"667678ef","required":true,"fieldWidth":50,"label":"Last Name","formId":81} /--><!-- wp:srfm/email {"block_id":"eae1ae54","required":true,"formId":81} /--><!-- wp:srfm/input {"block_id":"5e4d1e8f","required":true,"label":"Subject","formId":81} /--><!-- wp:srfm/textarea {"block_id":"f0076110","required":true,"label":"Please describe your question in detail. Explain the exact steps to replicate the problem.","formId":81} /--><!-- wp:srfm/url {"block_id":"0e087bac","required":true,"label":"URL where we can see more details.","formId":81} /-->', |
| 23 |
'isPro' => false, |
| 24 |
]; |
| 25 |
|