HEX
Server: Apache
System: Linux s32.registerdomain.net.za 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: molmatco (1958)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/molmatco/lemcoin.co.za/wp-content/plugins/premium-addons-for-elementor/autoload.php
<?php

spl_autoload_register( function( $class ) {

	if ( 0 !== strpos( $class, 'PremiumAddons' ) ) {
		return;
	}

	$class_to_load = $class;

	$filename = strtolower(
		preg_replace(
			array( '/^PremiumAddons\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ),
			array( '', '$1-$2', '-', DIRECTORY_SEPARATOR ),
			$class_to_load
		)
	);

	$filename = PREMIUM_ADDONS_PATH . $filename . '.php';

	if ( is_readable( $filename ) ) {
		require_once $filename;
	}

});