PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
vxcash
/
admin
/
partials
<?php /** * Provide a admin area view for the plugin * * This file is used to markup the admin-facing aspects of the plugin. * * @link https://www.vxcash.net * @since 1.3.3 * * @package Vxcash * @subpackage Vxcash/admin/partials */ ?> <script type="text/javascript"> var ajax_nonce = '<?php echo wp_create_nonce('vxcash-debug-ajax'); ?>' </script> <!-- This file should primarily consist of HTML with a little bit of PHP. --> <div class="wrap"> <h2><?php echo esc_html(get_admin_page_title()); ?></h2> <div class="notice"> <h3>VXCash Plugin Settings</h3> </div> <div class="notice"> <?php foreach ($this->settings['vxcash'] as $name => $setting) { $class = $setting['valid'] ? 'success' : 'error'; $error = isset($setting['error']) ? $setting['error'] : ''; echo <<<WORDPRESS <table class="debuginfo $class"><tr> <th>{$name}:</th> <td>{$setting['value']}</td> <td>{$error}</td> </tr></table> WORDPRESS; } ?> </div> <div class="notice"> <h3>Wordpress</h3> </div> <div class="notice"> <?php foreach ($this->settings['wordpress'] as $name => $setting) { $class = $setting['valid'] ? 'success' : 'error'; $error = isset($setting['error']) ? $setting['error'] : ''; echo <<<WORDPRESS <table class="debuginfo $class"><tr> <th>{$name}:</th> <td>{$setting['value']}</td> <td>{$error}</td> </tr></table> WORDPRESS; } ?> </div> <div class="notice"> <h3>Server</h3> </div> <div class="notice"> <?php foreach ($this->settings['server'] as $name => $setting) { $class = $setting['valid'] ? 'success' : 'error'; $error = isset($setting['error']) ? $setting['error'] : ''; echo <<<SERVER <table class="debuginfo $class"><tr> <th>{$name}:</th> <td>{$setting['value']}</td> <td>{$error}</td> </tr></table> SERVER; } ?> </div> <div class="notice"> <h3>Plugins</h3> </div> <div class="notice"> <?php foreach ($this->settings['plugins'] as $name => $setting) { $class = $setting['valid'] ? 'success' : 'error'; $error = isset($setting['error']) ? $setting['error'] : ''; echo <<<SERVER <table class="debuginfo $class"><tr> <th>{$name}:</th> <td>{$setting['value']}</td> <td>{$setting['active']}</td> </tr></table> SERVER; } ?> </div> <?php submit_button('Daten an support@vxcash.net schicken', 'primary', 'sendMail', false); ?> <div class="spinner" style="float: none;"></div> </div>
[-] vxcash-visitx-host-display.php
[edit]
[-] vxcash-debug-display.php
[edit]
[-] vxcash-pornme-video-display.php
[edit]
[-] vxcash-admin-display.php
[edit]
[+]
..
[-] vxcash-visitx-video-display.php
[edit]