. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Server IP : 104.21.41.133 / Your IP :
3.17.74.181 [
Web Server : LiteSpeed System : Linux altar63.supremepanel63.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : abranoticias ( 1103) PHP Version : 8.0.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/abranoticias/public_html/wp-content/plugins/anti-spam/admin/pages/ |
Upload File : |
<?php namespace WBCR\Titan\Page; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Страница журнала ошибок * * Не поддерживает режим работы с мультисаймами. * * @author Alexander Kovalev <alex.kovalevv@gmail.com>, Github: https://github.com/alexkovalevv * @copyright (c) 2019 Webraftic Ltd * @version 1.0 */ class Logs extends Base { /** * {@inheritdoc} */ public $id = 'logs'; /** * {@inheritdoc} */ public $page_menu_dashicon = 'dashicons-list-view'; /** * {@inheritdoc} */ public $type = 'page'; /** * {@inheritdoc} */ public $page_menu_position = 2; /** * {@inheritDoc} * * @since 6.0 * @var bool */ public $show_right_sidebar_in_options = true; /** * Logs constructor. * * @param \Wbcr_Factory475_Plugin $plugin * * @author Alexander Kovalev <alex.kovalevv@gmail.com> * */ public function __construct( \Wbcr_Factory475_Plugin $plugin ) { $this->menu_title = __( 'Error Log', 'titan-security' ); $this->page_menu_short_description = __( 'Plugin debug report', 'titan-security' ); parent::__construct( $plugin ); } /** * {@inheritdoc} * * @return void * @since 1.0.0 */ public function assets( $scripts, $styles ) { parent::assets( $scripts, $styles ); $this->styles->add( WTITAN_PLUGIN_URL . '/includes/logger/assets/css/base.css' ); $this->scripts->add( WTITAN_PLUGIN_URL . '/includes/logger/assets/js/base.js', [ 'jquery' ] ); } /** * {@inheritdoc} */ public function showPageContent() { require_once( WTITAN_PLUGIN_DIR . '/includes/logger/class-logger-reader.php' ); ?> <div class="wbcr-factory-page-group-header"> <strong><?php _e( 'Error Log', 'titan-security' ) ?></strong> <p> <?php _e( 'In this section, you can track errors. Sending this log to us, will help in solving possible issues.', 'titan-security' ) ?> </p> </div> <div class="wbcr-factory-page-group-body"> <div class="btn-group"> <a href="<?php echo wp_nonce_url( $this->getPageUrl() . 'action=export' ) ?>" class="btn btn-default"><?php _e( 'Export Debug Information', 'titan-security' ) ?></a> <a href="#" data-working="<?php echo esc_attr__( 'Working...', 'titan-security' ) ?>" data-nonce="<?php echo wp_create_nonce( 'wlogger_clean_logs' ) ?>" class="btn btn-default js-wlogger-export-debug-report"><?php echo sprintf( __( 'Clean-up Logs (<span id="js-wlogger-size">%s</span>)', 'titan-security' ), $this->get_log_size_formatted() ) ?></a> </div> <div class="wlogger-viewer" id="js-wlogger-viewer"> <?php echo \WBCR\Titan\Logger\Reader::prettify() ?> </div> </div> <?php } /** * Processing log export action in form of ZIP archive. * * @since 6.0 */ public function exportAction() { if( !current_user_can('manage_options') ) { wp_die(__('You do not have sufficient permissions to perform this action!', 'wbcr_factory_logger_000')); } require_once( WTITAN_PLUGIN_DIR . '/includes/logger/class-logger-export.php' ); $export = new \WBCR\Titan\Logger\Export(); if ( $export->prepare() ) { $export->download( true ); } } /** * Get log size formatted. * * @return false|string * @since 6.0 */ private function get_log_size_formatted() { try { return size_format( \WBCR\Titan\Logger\Writter::get_total_size() ); } catch ( \Exception $exception ) { \WBCR\Titan\Logger\Writter::error( sprintf( 'Failed to get total log size as exception was thrown: %s', $exception->getMessage() ) ); } return ''; } }