| Server IP : 121.121.20.254 / Your IP : 216.73.217.51 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/real-media-library/inc/base/ |
Upload File : |
<?php
namespace MatthiasWeb\RealMediaLibrary\base;
use MatthiasWeb\RealMediaLibrary\Vendor\MatthiasWeb\Utils\Core as UtilsCore;
\defined('ABSPATH') or die('No script kiddies please!');
// Avoid direct file request
/**
* Base class for the applications Core class.
*/
abstract class Core
{
use \MatthiasWeb\RealMediaLibrary\base\UtilsProvider;
use UtilsCore;
/**
* The constructor handles the core startup mechanism.
*
* The constructor is protected because a factory method should only create
* a Core object.
*
* @codeCoverageIgnore
*/
protected function __construct()
{
// Define lazy constants
\define('RML_TD', $this->getPluginData('TextDomain'));
\define('RML_VERSION', $this->getPluginData('Version'));
$this->construct();
}
}