# better-payment/trunk/includes/Frontend.php

Better Payment – Instant Payments, Donations, Fundraising with Subscriptions &amp; More, version trunk. 32 lines.

- Page: https://pluginprobe.com/plugins/better-payment/trunk/code/includes/Frontend.php
- Raw: https://pluginprobe.com/plugins/better-payment/trunk/raw/includes/Frontend.php
- Modified: 2022-04-18T10:23:46+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/better-payment/trunk/code/includes/Frontend.php#L10-L20`.

```php
<?php

namespace Better_Payment\Lite;

use Better_Payment\Lite\Admin\Menu;

/**
 * Exit if accessed directly
 */
if (!defined('ABSPATH')) {
    exit;
}

/**
 * Frontend handler class
 * 
 * @since 0.0.1
 */
class Frontend extends Controller{

    /**
     * Initialize the class
     * 
     * @since 0.0.1
     */
    public function __construct() {
        // new Frontend\Shortcode();
        $menuObj = new Menu();
        $menuObj->init('frontend');
    }
}

```
