Uname : Linux premium36.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64
Soft : LiteSpeed
Ip : 198.54.115.237
Port : 443
~
/
home
/
emranchoice
/
lyxeetravel.net
/
wp-content
/
themes
/
woodmart
/
inc
/
classes
[ HOME ]
Exec
Submit
Config.php
<?php /** * Config class. * * @package xts */ namespace XTS; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Config class. * * @since 1.0.0 */ class Config extends Singleton { /** * Config. * * @var object */ private $config = array(); /** * Register hooks and load base data. * * @since 1.0.0 */ public function init() {} /** * Get config file. * * @since 1.0.0 * * @param string $name Config name. * * @return mixed */ public function get_config( $name ) { if ( isset( $this->config[ $name ] ) ) { return $this->config[ $name ]; } $path = WOODMART_CONFIGS . '/' . $name . '.php'; if ( $path ) { $this->config[ $name ] = include_once $path; return $this->config[ $name ]; } return false; } }
Submit
Back
Folder Name
Submit
File Name
File Content
Submit
Name
Type
Size
Permission
Last Modified
Actions
.
dir
-
0755
2022-09-13 03:53:22
..
dir
-
0755
2022-09-13 03:53:23
Api.php
text/x-php
1.16 KB
0644
2022-06-22 06:18:37