# give/4.16.8.1/src/Views/Views.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 47 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Views/Views.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Views/Views.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Views/Views.php#L10-L20`.

```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();

```
