??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/renovaid.co.uk/wp-content/plugins/wpforms-lite/includes/class-fields.php
⬅ Kembali
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Load the field types.
*
* @since 1.0.0
*/
class WPForms_Fields {
/**
* Primary class constructor.
*
* @since 1.0.0
*/
public function __construct() {
$this->init();
}
/**
* Initialize hooks.
*
* @since 1.2.8
* @since 1.8.2 Moved base class loading to \WPForms\WPForms::includes.
*/
public function init() {
$this->hooks();
}
/**
* Hooks.
*
* @since 1.7.7
*/
private function hooks() {
// Load default fields on WP init.
add_action( 'init', [ $this, 'load' ] );
}
/**
* Load default field types.
*
* @since 1.0.0
* @since 1.9.4 Removed Pro fields from the list. They loaded in the main Loader class.
*/
public function load() {
$fields = [
'text',
'textarea',
'select',
'radio',
'checkbox',
'email',
'name',
'number',
'number-slider',
'internal-information',
];
// Include GDPR Checkbox field if GDPR enhancements are enabled.
if ( wpforms_setting( 'gdpr' ) ) {
$fields[] = 'gdpr-checkbox';
}
/**
* Filters array of fields to be loaded.
*
* @since 1.0.0
*
* @param array $fields Field types.
*/
$fields = (array) apply_filters( // phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName
'wpforms_load_fields',
$fields
);
foreach ( $fields as $field ) {
$file = WPFORMS_PLUGIN_DIR . 'includes/fields/class-' . $field . '.php';
if ( file_exists( $file ) ) {
require_once $file;
}
}
// We have to put it here due to tests for restricted emails.
new WPForms_Field_Email();
}
}
new WPForms_Fields();
Nama
Tipe
Ukuran
Diubah
Aksi
📁 admin
dir
—
2026-06-23 10:10
📁 emails
dir
—
2026-06-23 10:10
📁 fields
dir
—
2026-06-23 10:10
📁 functions
dir
—
2026-06-23 10:10
📁 providers
dir
—
2026-06-23 10:10
📁 templates
dir
—
2026-06-23 10:10
🐘 class-db.php
php
23.4 KB
2025-02-27 17:40
🐘 class-fields.php
php
1.6 KB
2025-02-27 17:40
🐘 class-form.php
php
42.1 KB
2026-05-28 15:16
🐘 class-install.php
php
5.6 KB
2024-12-03 18:12
🐘 class-process.php
php
68 KB
2026-06-18 16:16
🐘 class-providers.php
php
1.8 KB
2025-01-16 17:57
🐘 class-templates.php
php
1.3 KB
2023-09-28 15:44
🐘 class-widget.php
php
6 KB
2024-10-23 18:03
🐘 deprecated.php
php
13.9 KB
2025-09-25 15:01
🐘 functions-list.php
php
152 B
2023-02-16 18:36
🐘 functions.php
php
1.1 KB
2025-06-17 13:49
🐘 integrations.php
php
3.3 KB
2026-01-29 20:00