| Server IP : 104.21.20.47 / Your IP : 104.23.243.204 Web Server : Microsoft-IIS/7.5 System : Windows NT WIN-HN0MTSF2AF1 6.1 build 7601 (Windows Server 2008 R2 Enterprise Edition Service Pack 1) AMD64 User : IWPD_11(bayt-altogg) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/bayt-altoggar.com/httpdocs/wp-content/plugins/white-label-cms/ |
Upload File : |
<?php
/*
Plugin Name: White Label CMS
Plugin URI: https://www.videousermanuals.com/white-label-cms/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
Description: A plugin that allows you to brand WordPress CMS as your own
Version: 2.7.14
Author: www.videousermanuals.com
Author URI: https://www.videousermanuals.com/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
Text Domain: white-label-cms
Domain Path: /languages
*/
if (!defined('ABSPATH')) exit; // Exit if accessed directly
define('WLCMS_VERSION', '2.7.14');
define("WLCMS_DIR", plugin_dir_path(__FILE__));
define("WLCMS_ASSETS_URL", plugin_dir_url(__FILE__) . 'assets/');
define("WLCMS_BASENAME", plugin_basename(__FILE__));
define("WLCMS_ASSETS_DIR", WLCMS_DIR . 'assets/');
define("WLCMS_SCREEN_ID", 'settings_page_wlcms-plugin');
include_once(WLCMS_DIR . 'includes/classes/I18n.php');
include_once(WLCMS_DIR . 'includes/classes/Loader.php');
include_once(WLCMS_DIR . 'includes/Functions.php');
global $wlcms;
if (!function_exists('wlcms')) :
function wlcms()
{
global $wlcms;
$wlcms = WLCMS_Loader::getInstance();
return $wlcms;
}
endif;
wlcms();