admin
2 weeks ago
emails
4 months ago
fields
2 weeks ago
functions
2 months ago
providers
10 months ago
templates
4 months ago
class-db.php
1 year ago
class-fields.php
1 year ago
class-form.php
4 months ago
class-install.php
1 year ago
class-process.php
4 months ago
class-providers.php
1 year ago
class-templates.php
2 years ago
class-widget.php
1 year ago
deprecated.php
8 months ago
functions-list.php
3 years ago
functions.php
11 months ago
integrations.php
4 months ago
functions.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Global functions used in core plugin and addons. |
| 4 | * |
| 5 | * @since 1.0.0 |
| 6 | * @since 1.8.0 Split into multiple files, see `includes/functions/`. |
| 7 | */ |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | require_once __DIR__ . '/functions/access.php'; |
| 14 | require_once __DIR__ . '/functions/builder.php'; |
| 15 | require_once __DIR__ . '/functions/checks.php'; |
| 16 | require_once __DIR__ . '/functions/colors.php'; |
| 17 | require_once __DIR__ . '/functions/data-presets.php'; |
| 18 | require_once __DIR__ . '/functions/date-time.php'; |
| 19 | require_once __DIR__ . '/functions/debug.php'; |
| 20 | require_once __DIR__ . '/functions/education.php'; |
| 21 | require_once __DIR__ . '/functions/escape-sanitize.php'; |
| 22 | require_once __DIR__ . '/functions/filesystem-media.php'; |
| 23 | require_once __DIR__ . '/functions/form-fields.php'; |
| 24 | require_once __DIR__ . '/functions/forms.php'; |
| 25 | require_once __DIR__ . '/functions/list.php'; |
| 26 | require_once __DIR__ . '/functions/payments.php'; |
| 27 | require_once __DIR__ . '/functions/plugins.php'; |
| 28 | require_once __DIR__ . '/functions/privacy.php'; |
| 29 | require_once __DIR__ . '/functions/providers.php'; |
| 30 | require_once __DIR__ . '/functions/utilities.php'; |
| 31 |