SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > > wp-user-frontend > > > includes


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins//wp-user-frontend///includes

NameTypeSizeLast ModifiedActions
Admin Directory - -
Ajax Directory - -
Api Directory - -
Data Directory - -
Fields Directory - -
Free Directory - -
Frontend Directory - -
Hooks Directory - -
Integrations Directory - -
Log Directory - -
Traits Directory - -
Widgets Directory - -
functions Directory - -
upgrades Directory - -
API.php File 752 bytes May 12 2025 14:47:56.
Admin.php File 8331 bytes May 12 2025 14:47:56.
Ajax.php File 5162 bytes March 20 2025 14:31:02.
Assets.php File 15809 bytes May 12 2025 14:47:56.
Encryption_Helper.php File 2280 bytes February 13 2024 11:27:44.
Frontend.php File 9999 bytes October 15 2024 07:05:02.
Frontend_Render_Form.php File 16496 bytes June 30 2025 16:27:10.
Installer.php File 3159 bytes January 02 2024 16:35:50.
Integrations.php File 1488 bytes October 15 2024 07:05:02.
Pro_Upgrades.php File 2510 bytes June 30 2025 16:27:10.
Render_Form.php File 69939 bytes June 30 2025 16:27:10.
Setup_Wizard.php File 20226 bytes March 20 2025 14:31:02.
User_Subscription.php File 19761 bytes June 02 2025 07:42:20.
WPUF_Privacy.php File 24813 bytes March 19 2025 14:25:12.
WPUF_User.php File 4200 bytes March 19 2025 14:25:12.
class-field-manager.php File 11935 bytes February 13 2024 11:27:44.
class-frontend-render-form.php File 38527 bytes June 30 2025 16:27:10.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins//wp-user-frontend///includes/Integrations.php

<?php

namespace WeDevs\Wpuf;

/**
 * The integration class to handle all integrations with our plugin
 *
 * @since 4.0.12
 */
class Integrations {
    /**
     * Holds various class instances
     *
     * @since 4.0.12
     *
     * @var array
     */
    public $container = [];

    private $integrations = [
        'WeDevs_Dokan' => 'WPUF_Dokan_Integration',
        'WC_Vendors'   => 'WPUF_WC_Vendors_Integration',
        'WCMp'         => 'WPUF_WCMp_Integration',
        'ACF'          => 'WPUF_ACF_Compatibility',
    ];

    public function __construct() {
        foreach ( $this->integrations as $external_class => $integration_class ) {
            if ( class_exists( $external_class ) ) {
                $full_class_name = __NAMESPACE__ . '\\Integrations\\' . $integration_class;
                try {
                    $this->container[ strtolower( $external_class ) ] = new $full_class_name();
                } catch ( \Exception $e ) {
                    \WP_User_Frontend::log( 'integration', print_r( $external_class . ' integration failed', true ) );
                }
            }
        }
    }

    /**
     * Magic getter to bypass referencing objects
     *
     * @since 4.0.12
     *
     * @param string $prop
     *
     * @return null|object Class Instance
     */
    public function __get( $prop ) {
        if ( array_key_exists( $prop, $this->container ) ) {
            return $this->container[ $prop ];
        }

        return null;
    }
}

SILENT KILLER Tool