HEX
Server: Apache
System: Linux server.mart2global.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64
User: henzergrouphenz (1442)
PHP: 7.4.28
Disabled: NONE
Upload Files
File: /home/henzergrouphenz/public_html/wp-content/themes/metro/inc/constants.php
<?php
/**
 * @author  RadiusTheme
 * @since   1.0
 * @version 1.0
 */

namespace radiustheme\Metro;

class Constants {

	public static $theme_version;
	public static $theme_author_uri;
	public static $theme_prefix;
	public static $theme_options;

	public static $theme_base_dir;
	public static $theme_inc_dir;
	public static $theme_plugins_dir;

	public function __construct() {
		$theme_data = wp_get_theme( get_template() );

		self::$theme_version     = $theme_data->get( 'Version' );
		self::$theme_author_uri  = $theme_data->get( 'AuthorURI' );
		self::$theme_prefix      = 'metro';
		self::$theme_options     = 'metro';

		self::$theme_base_dir    = get_template_directory(). '/';
		self::$theme_inc_dir     = self::$theme_base_dir . 'inc/';
		self::$theme_plugins_dir = self::$theme_base_dir . 'plugin-bundle/';
	}
}

new Constants;