form
6 years ago
author.php
6 years ago
autosync.php
6 years ago
dev.php
6 years ago
dynamic-block-type.php
6 years ago
dynamic-form.php
6 years ago
dynamic-options-page.php
6 years ago
dynamic-post-type.php
6 years ago
dynamic-taxonomy.php
6 years ago
taxonomy.php
6 years ago
dynamic-form.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | if(!defined('ABSPATH')) |
| 4 | exit; |
| 5 | |
| 6 | acfe_include('includes/modules/form/form-front.php'); |
| 7 | |
| 8 | // Check setting |
| 9 | if(!acf_get_setting('acfe/modules/dynamic_forms')) |
| 10 | return; |
| 11 | |
| 12 | acfe_include('includes/modules/form/admin.php'); |
| 13 | acfe_include('includes/modules/form/field-group.php'); |
| 14 | acfe_include('includes/modules/form/actions/custom.php'); |
| 15 | acfe_include('includes/modules/form/actions/email.php'); |
| 16 | acfe_include('includes/modules/form/actions/post.php'); |
| 17 | acfe_include('includes/modules/form/actions/term.php'); |
| 18 | acfe_include('includes/modules/form/actions/user.php'); |
| 19 | |
| 20 | //acfe_include('includes/modules/form/actions/option.php'); |