HEX
Server: Apache
System: Linux wyse1.wyseservers.com 4.18.0-553.124.4.el8_10.x86_64 #1 SMP Fri May 15 04:14:14 EDT 2026 x86_64
User: kochikidswysewor (1061)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: /home/kochikidswysewor/public_html/wp-content/plugins/give/src/Views/Views.php
<?php

/**
 * Admin Views Class
 *
 * @package Give
 */

namespace Give\Views;

defined('ABSPATH') || exit;

/**
 * Manages Views
 */
class Views
{

    /**
     * Initialize admin and frontend views
     */
    public function init()
    {
        // To prevent conflict on we are loading autoload.php when need for now. In future we can loaded it globally.
        require GIVE_PLUGIN_DIR . 'vendor/autoload.php';

        // Load admin views
        $this->load_admin_views();
    }

    public function __construct()
    {
        // Do nothing
    }

    public function load_admin_views()
    {
        // Init admin views
        $admin = new Admin();
        $admin->init();
    }

}

$views = new Views();
$views->init();