Uname:Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64

Base Dir : /var/www/html

User : gavin


403WebShell
403Webshell
Server IP : 68.183.124.220  /  Your IP : 216.73.217.137
Web Server : Apache/2.4.18 (Ubuntu)
System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User : gavin ( 1000)
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/wp-content/plugins/wp-statistics/includes/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/wp-statistics/includes/classes/class-wp-statistics-editor.php
<?php

/**
 * Class WP_Statistics_Editor
 */
class WP_Statistics_Editor {

	/**
	 * Adds a box to the main column on the Post and Page edit screens.
	 */
	static function add_meta_box() {
		global $WP_Statistics;

		//Load All User Options
		$WP_Statistics->load_user_options();

		// We need to fudge the display settings for first time users so not all of the widgets are displayed, we only want to do this on
		// the first time they visit the dashboard though so check to see if we've been here before.
		if ( ! $WP_Statistics->get_user_option( 'editor_set' ) ) {
			$WP_Statistics->update_user_option( 'editor_set', WP_Statistics::$reg['version'] );

			$hidden_widgets = get_user_meta( $WP_Statistics->user_id, 'metaboxhidden_post', true );
			if ( ! is_array( $hidden_widgets ) ) {
				$hidden_widgets = array();
			}

			if ( ! in_array( 'wp_statistics_editor_meta_box', $hidden_widgets ) ) {
				$hidden_widgets[] = 'wp_statistics_editor_meta_box';
			}

			update_user_meta( $WP_Statistics->user_id, 'metaboxhidden_post', $hidden_widgets );

			$hidden_widgets = get_user_meta( $WP_Statistics->user_id, 'metaboxhidden_page', true );
			if ( ! is_array( $hidden_widgets ) ) {
				$hidden_widgets = array();
			}

			if ( ! in_array( 'wp_statistics_editor_meta_box', $hidden_widgets ) ) {
				$hidden_widgets[] = 'wp_statistics_editor_meta_box';
			}

			update_user_meta( $WP_Statistics->user_id, 'metaboxhidden_page', $hidden_widgets );
		}

		// If the user does not have at least read access to the status plugin, just return without adding the widgets.
		if ( ! current_user_can( wp_statistics_validate_capability( $WP_Statistics->get_option( 'read_capability', 'manage_option' ) ) ) ) {
			return;
		}

		// If the admin has disabled the widgets don't display them.
		if ( $WP_Statistics->get_option( 'disable_editor' ) ) {
			return;
		}

		// If the admin has disabled the Hit Post MetaBox.
		if ( ! $WP_Statistics->get_option( 'hit_post_metabox' ) ) {
			return;
		}

		//Show Hit Column in All Post Type in Wordpress
		$screens = self::get_list_post_type();
		foreach ( $screens as $screen ) {
			add_meta_box( 'wp_statistics_editor_meta_box', __( 'Hit Statistics', 'wp-statistics' ), 'WP_Statistics_Editor::meta_box', $screen, 'normal', 'high',
				array(
					'__block_editor_compatible_meta_box' => true,
					'__back_compat_meta_box'             => false,
				)
			);
		}
	}


	static function meta_box( $post ) {
		// If the post isn't published yet, don't output the stats as they take too much memory and CPU to compute for no reason.
		if ( $post->post_status != 'publish' && $post->post_status != 'private' ) {
			_e( 'This post is not yet published.', 'wp-statistics' );
			return;
		}

		add_action( 'admin_footer', 'WP_Statistics_Editor::inline_javascript' );
		WP_Statistics_Editor::generate_postbox_contents( $post->ID, array( 'args' => array( 'widget' => 'page' ) ) );
	}

	static function generate_postbox_contents( $post, $args ) {
		if ( self::is_gutenberg() ) {
			//If Gutenberg Editor
			if ( isset( $_GET['post'] ) and ! empty( $_GET['post'] ) ) {
				echo '<div class="wps-gutenberg-chart-js">';
				require( WP_Statistics::$reg['plugin-dir'] . 'includes/log/widgets/page.php' );
				wp_statistics_generate_page_postbox_content( null, $_GET['post'] );
				echo '</div>';
				echo '<style>button#wp_statistics_editor_meta_box_more_button { z-index: 9999;position: absolute;top: 1px;right: 3%;}</style>';
			}
		} else {
			$widget       = $args['args']['widget'];
			$container_id = 'wp-statistics-' . str_replace( '.', '-', $widget ) . '-div';
			echo '<div id="' . $container_id . '">' . WP_Statistics_Admin_Pages::loading_meta_box() . '</div>';
			echo '<script type="text/javascript">var wp_statistics_current_id = \'' . $post . '\';</script>';
			wp_statistics_generate_widget_load_javascript( $widget, $container_id );
		}
	}

	static function inline_javascript() {
		$screen = get_current_screen();

		$screens = self::get_list_post_type();
		if ( ! in_array( $screen->id, $screens ) ) {
			return;
		}

		WP_Statistics_Dashboard::load_widget_css_and_scripts();
		$loading_img = WP_Statistics_Admin_Pages::loading_meta_box();
		$new_buttons = '</button>';

		//If Classic Editor
		if ( self::is_gutenberg() === false ) {
			$new_buttons .= '<button class="handlediv button-link wps-refresh" type="button" id="{{refreshid}}">' . wp_statistics_icons( 'dashicons-update' ) . '<span class="screen-reader-text">' . __( 'Reload', 'wp-statistics' ) . '</span></button>';
		}
		$new_buttons .= '<button class="handlediv button-link wps-more" type="button" id="{{moreid}}">' . wp_statistics_icons( 'dashicons-external' ) . '<span class="screen-reader-text">' . __( 'More Details', 'wp-statistics' ) . '</span></button>';


		$admin_url                                              = get_admin_url() . "/admin.php?page=";
		$page_urls                                              = array();
		$page_urls['wp_statistics_editor_meta_box_more_button'] = $admin_url . WP_Statistics::$page['pages'] . '&page-id=';

		//Button for Gutenberg
		$btn_more_action = 'wp_statistics_goto_more';
		if ( self::is_gutenberg() ) {
			$btn_more_action = "function () { window.location.href = '" . wp_normalize_path( $page_urls['wp_statistics_editor_meta_box_more_button'] . ( isset( $_GET['post'] ) === true ? $_GET['post'] : '' ) ) . "';}";
		}

		?>
        <script type="text/javascript">
            var wp_statistics_destinations = <?php echo json_encode( $page_urls ); ?>;
            var wp_statistics_loading_image = '<?php echo $loading_img; ?>';

            function wp_statistics_wait_for_postboxes() {

                if (!jQuery('#show-settings-link').is(':visible')) {
                    setTimeout(wp_statistics_wait_for_postboxes, 500);
                }

                jQuery('.wps-refresh').unbind('click').on('click', wp_statistics_refresh_widget);
                jQuery('.wps-more').unbind('click').on('click', <?php echo $btn_more_action; ?>);
                jQuery('.hide-postbox-tog').on('click', wp_statistics_refresh_on_toggle_widget);
            }

            jQuery(document).ready(function () {

                // Add the "more" and "refresh" buttons.
                jQuery('.postbox').each(function () {
                    var temp = jQuery(this);
                    var temp_id = temp.attr('id');

                    if (temp_id == 'wp_statistics_editor_meta_box') {

                        var temp_html = temp.html();

                        new_text = '<?php echo $new_buttons;?>';
                        new_text = new_text.replace('{{refreshid}}', temp_id + '_refresh_button');
                        new_text = new_text.replace('{{moreid}}', temp_id + '_more_button');

                        temp_html = temp_html.replace('</button>', new_text);

                        temp.html(temp_html);
                    }
                });

                // We have use a timeout here because we don't now what order this code will run in comparison to the postbox code.
                // Any timeout value should work as the timeout won't run until the rest of the javascript as run through once.
                setTimeout(wp_statistics_wait_for_postboxes, 100);
            });
        </script>
		<?php
	}

	/**
	 * Get List Post Type
	 * @return array
	 */
	public static function get_list_post_type() {
		$post_types     = array( 'post', 'page' );
		$get_post_types = get_post_types( array( 'public' => true, '_builtin' => false ), 'names', 'and' );
		foreach ( $get_post_types as $name ) {
			$post_types[] = $name;
		}

		return $post_types;
	}

	/**
	 * Check Is Gutenberg Editor
	 */
	public static function is_gutenberg() {
		$current_screen = get_current_screen();
		if ( ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ) || ( function_exists( 'is_gutenberg_page' ) ) && is_gutenberg_page() ) {
			return true;
		}
		return false;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit