Your IP : 3.145.70.197


Current Path : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Functions/
Upload File :
Current File : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Functions/helpers.php

<?php
if (!defined("ABSPATH")) {
  exit();
}

use WPNCEasyWP\Support\JWT;
use WPNCEasyWP\Support\DashboardNotifications;

/**
 * Global functions
 * Return the object with the JWT token and the JWT info
 *
 * @param string $jwt_token
 * @return WPNCEasyWP\Support\JWT
 */
function easywpJWT($jwt_token = false)
{
  return new JWT($jwt_token);
}

/**
 * Global functions
 * Return the object with the Dashboard Notifications
 *
 * @return WPNCEasyWP\Support\DashboardNotifications
 */
function easywpDashboardNotifications()
{
  return new DashboardNotifications();
}