??????????????
??????????????
??????????????
??????????????
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/src/Admin/Loader.php
⬅ Kembali
<?php
namespace WPForms\Admin;
/**
* Class Loader gives ability to track/load all admin modules.
*
* @since 1.5.0
*/
class Loader {
/**
* Get the instance of a class and store it in itself.
*
* @since 1.5.0
*/
public static function get_instance() {
static $instance;
if ( ! $instance ) {
$instance = new self();
}
return $instance;
}
/**
* Loader constructor.
*
* @since 1.5.0
*/
public function __construct() {
$core_class_names = [
'Connect',
'FlyoutMenu',
'Builder\LicenseAlert',
'Builder\Builder',
'Pages\Community',
'Pages\SMTP',
'Pages\Analytics',
'Entries\PrintPreview',
];
$class_names = \apply_filters( 'wpforms_admin_classes_available', $core_class_names );
foreach ( $class_names as $class_name ) {
$this->register_class( $class_name );
}
}
/**
* Register a new class.
*
* @since 1.5.0
*
* @param string $class_name Class name to register.
*/
public function register_class( $class_name ) {
$class_name = sanitize_text_field( $class_name );
// Load Lite class if exists.
if ( class_exists( 'WPForms\Lite\Admin\\' . $class_name ) && ! wpforms()->is_pro() ) {
$class_name = 'WPForms\Lite\Admin\\' . $class_name;
new $class_name();
return;
}
// Load Pro class if exists.
if ( class_exists( 'WPForms\Pro\Admin\\' . $class_name ) && wpforms()->is_pro() ) {
$class_name = 'WPForms\Pro\Admin\\' . $class_name;
new $class_name();
return;
}
// Load general class if neither Pro nor Lite class exists.
if ( class_exists( __NAMESPACE__ . '\\' . $class_name ) ) {
$class_name = __NAMESPACE__ . '\\' . $class_name;
new $class_name();
}
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 Addons
dir
—
2026-06-23 10:10
📁 Base
dir
—
2026-06-23 10:10
📁 Blocks
dir
—
2026-06-23 10:10
📁 Builder
dir
—
2026-06-23 10:10
📁 Dashboard
dir
—
2026-06-23 10:10
📁 Education
dir
—
2026-06-23 10:10
📁 Forms
dir
—
2026-06-23 10:10
📁 Helpers
dir
—
2026-06-23 10:10
📁 Notifications
dir
—
2026-06-23 10:10
📁 Pages
dir
—
2026-06-23 10:10
📁 Payments
dir
—
2026-06-23 10:10
📁 Settings
dir
—
2026-06-23 10:10
📁 Splash
dir
—
2026-06-23 10:10
📁 Tools
dir
—
2026-06-23 10:10
📁 Traits
dir
—
2026-06-23 10:10
🐘 AdminBarMenu.php
php
17.9 KB
2025-06-17 13:49
🐘 Challenge.php
php
17.6 KB
2025-11-06 19:10
🐘 FlyoutMenu.php
php
3.5 KB
2024-09-26 15:36
🐘 FormEmbedWizard.php
php
16.3 KB
2026-06-18 16:16
🐘 Loader.php
php
1.7 KB
2023-08-10 15:19
🐘 MediaLibrary.php
php
3.4 KB
2026-06-18 16:16
🐘 Notice.php
php
9.8 KB
2024-09-26 15:36
🐘 PluginsCategory.php
php
5.4 KB
2026-05-14 22:10
🐘 Revisions.php
php
12.7 KB
2026-05-28 15:16
🐘 SiteHealth.php
php
2.8 KB
2025-07-31 14:13