????

Your IP : 18.222.199.33


Current Path : /usr/local/lsws/add-ons/cpanel/lsws_whm_plugin/View/Model/
Upload File :
Current File : //usr/local/lsws/add-ons/cpanel/lsws_whm_plugin/View/Model/PluginUpdateRequiredViewModel.php

<?php

/* * ******************************************
 * LiteSpeed Web Server Plugin for WHM
 *
 * @author LiteSpeed Technologies, Inc. (https://www.litespeedtech.com)
 * @copyright (c) 2019
 * @since 3.3.4
 * ******************************************* */

namespace LsPanel\View\Model;

use \LsPanel\View\Model\BaseViewModel;

/**
 * @since 3.3.4
 */
class PluginUpdateRequiredViewModel extends BaseViewModel
{

    /**
     *
     * @since 3.3.4
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     *
     * @since 3.3.4
     *
     * @return string
     */
    public function getTpl()
    {
        return realpath(__DIR__ . '/../Tpl') . '/PluginUpdateRequired.tpl';
    }

}