SILENT KILLERPanel

Current Path: > home > ivftiowh > greeceivf.com > wp-content > plugins > jetpack > modules >


Operation   : Linux premium88.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software     : Apache
Server IP    : 185.61.154.216 | Your IP: 216.73.216.44
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/ivftiowh/greeceivf.com/wp-content/plugins/jetpack/modules/

NameTypeSizeLast ModifiedActions
after-the-deadline Directory - -
carousel Directory - -
comments Directory - -
contact-form Directory - -
custom-css Directory - -
custom-post-types Directory - -
holiday-snow Directory - -
infinite-scroll Directory - -
likes Directory - -
manage Directory - -
markdown Directory - -
minileven Directory - -
omnisearch Directory - -
photon Directory - -
post-by-email Directory - -
protect Directory - -
publicize Directory - -
related-posts Directory - -
sharedaddy Directory - -
shortcodes Directory - -
site-icon Directory - -
sitemaps Directory - -
subscriptions Directory - -
theme-tools Directory - -
tiled-gallery Directory - -
verification-tools Directory - -
videopress Directory - -
widget-visibility Directory - -
widgets Directory - -
after-the-deadline.php File 12313 bytes October 14 2024 11:06:00.
carousel.php File 584 bytes October 14 2024 11:06:00.
comments.php File 1267 bytes October 14 2024 11:06:00.
contact-form.php File 561 bytes October 14 2024 11:06:00.
custom-content-types.php File 1608 bytes October 14 2024 11:06:00.
custom-css.php File 863 bytes October 14 2024 11:06:00.
debug.php File 70 bytes October 14 2024 11:06:00.
enhanced-distribution.php File 1635 bytes October 14 2024 11:06:00.
gplus-authorship.php File 70 bytes October 14 2024 11:06:00.
gravatar-hovercards.php File 8597 bytes October 14 2024 11:06:00.
holiday-snow.php File 3675 bytes October 14 2024 11:06:00.
infinite-scroll.php File 9014 bytes October 14 2024 11:06:00.
json-api.php File 554 bytes October 14 2024 11:06:00.
latex.php File 3514 bytes October 14 2024 11:06:00.
likes.php File 43389 bytes October 14 2024 11:06:00.
manage.php File 1989 bytes October 14 2024 11:06:00.
markdown.php File 901 bytes October 14 2024 11:06:00.
minileven.php File 4812 bytes October 14 2024 11:06:00.
mobile-push.php File 86 bytes October 14 2024 11:06:00.
module-extras.php File 1179 bytes October 14 2024 11:06:00.
module-headings.php File 13529 bytes October 14 2024 11:06:00.
module-info.php File 54484 bytes October 14 2024 11:06:00.
monitor.php File 6058 bytes October 14 2024 11:06:00.
notes.php File 6556 bytes October 14 2024 11:06:00.
omnisearch.php File 489 bytes October 14 2024 11:06:00.
photon.php File 673 bytes October 14 2024 11:06:00.
post-by-email.php File 7669 bytes October 14 2024 11:06:00.
protect.php File 25356 bytes October 14 2024 11:06:00.
publicize.php File 10548 bytes October 14 2024 11:06:00.
random-redirect.php File 70 bytes October 14 2024 11:06:00.
related-posts.php File 2466 bytes October 14 2024 11:06:00.
sharedaddy.php File 1092 bytes October 14 2024 11:06:00.
shortcodes.php File 4427 bytes October 14 2024 11:06:00.
shortlinks.php File 2270 bytes October 14 2024 11:06:00.
site-icon.php File 463 bytes October 14 2024 11:06:00.
sitemaps.php File 665 bytes October 14 2024 11:06:00.
social-links.php File 70 bytes October 14 2024 11:06:00.
sso.php File 34429 bytes October 14 2024 11:06:00.
stats.php File 42196 bytes October 14 2024 11:06:00.
subscriptions.php File 37184 bytes October 14 2024 11:06:00.
theme-tools.php File 1966 bytes October 14 2024 11:06:00.
tiled-gallery.php File 864 bytes October 14 2024 11:06:00.
tonesque.php File 70 bytes October 14 2024 11:06:00.
vaultpress.php File 943 bytes October 14 2024 11:06:00.
verification-tools.php File 886 bytes October 14 2024 11:06:00.
videopress.php File 496 bytes October 14 2024 11:06:00.
widget-visibility.php File 409 bytes October 14 2024 11:06:00.
widgets.php File 1509 bytes October 14 2024 11:06:00.
wpcc.php File 70 bytes October 14 2024 11:06:00.
wpgroho.js File 1015 bytes October 14 2024 11:06:00.

Reading File: /home/ivftiowh/greeceivf.com/wp-content/plugins/jetpack/modules//notes.php

<?php
/**
 * Module Name: Notifications
 * Module Description: Receive notification of site activity via the admin toolbar and your Mobile devices.
 * Sort Order: 13
 * First Introduced: 1.9
 * Requires Connection: Yes
 * Auto Activate: Yes
 * Module Tags: Other
 * Additional Search Queries: notification, notifications, toolbar, adminbar, push, comments
 */

if ( !defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) );

Jetpack_Sync::sync_options( __FILE__,
	'home',
	'blogname',
	'siteurl',
	'permalink_structure',
	'category_base',
	'tag_base',
	'comment_moderation',
	'default_comment_status',
	'thread_comments',
	'thread_comments_depth'
);

class Jetpack_Notifications {
	public $jetpack = false;

	/**
	 * Singleton
	 * @static
	 */
	public static function init() {
		static $instance = array();

		if ( !$instance ) {
			$instance[0] = new Jetpack_Notifications;
		}

		return $instance[0];
	}

	function __construct() {
		$this->jetpack = Jetpack::init();

		add_action( 'init', array( &$this, 'action_init' ) );
	}

	function wpcom_static_url($file) {
		$i = hexdec( substr( md5( $file ), -1 ) ) % 2;
		$url = 'http://s' . $i . '.wp.com' . $file;
		return set_url_scheme( $url );
	}

	// return the major version of Internet Explorer the viewer is using or false if it's not IE
	public static function get_internet_explorer_version() {
		static $version;
		if ( isset( $version ) ) {
			return $version;
		}

		$user_agent = isset( $_SERVER['HTTP_USER_AGENT']  ) ? $_SERVER['HTTP_USER_AGENT'] : '';

		preg_match( '/MSIE (\d+)/', $user_agent, $matches );
		$version = empty( $matches[1] ) ? null : $matches[1];
		if ( empty( $version ) || !$version ) {
			return false;
		}
		return $version;
	}

	public static function current_browser_is_supported() {
		static $supported;

		if ( isset( $supported ) ) {
			return $supported;
		}

		$ie_version = self::get_internet_explorer_version();
		if ( false === $ie_version ) {
			return $supported = true;
		}

		if ( $ie_version < 8 ) {
			return $supported = false;
		}

		return $supported = true;
	}

	function action_init() {
		//syncing must wait until after init so
		//post types that support comments
		$filt_post_types = array();
		$all_post_types = get_post_types();
		foreach ( $all_post_types as $post_type ) {
			if ( post_type_supports( $post_type, 'comments' ) ) {
				$filt_post_types[] = $post_type;
			}
		}

		Jetpack_Sync::sync_posts( __FILE__, array(
			'post_types' => $filt_post_types,
			'post_stati' => array( 'publish' ),
		) );
		Jetpack_Sync::sync_comments( __FILE__, array(
			'post_types' => $filt_post_types,
			'post_stati' => array( 'publish' ),
			'comment_stati' => array( 'approve', 'approved', '1', 'hold', 'unapproved', 'unapprove', '0', 'spam', 'trash' ),
		) );

		if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
			return;

		if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() )
			return;

		if ( !self::current_browser_is_supported() )
			return;

		add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu'), 120 );
		add_action( 'wp_head', array( &$this, 'styles_and_scripts'), 120 );
		add_action( 'admin_head', array( &$this, 'styles_and_scripts') );
	}

	function styles_and_scripts() {
		if ( !is_rtl() ) {
			wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );
		} else {
			wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/rtl/admin-bar-v2-rtl.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );
		}
		wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );

		$this->print_js();

		// attempt to use core or plugin libraries if registered
		if ( !wp_script_is( 'mustache', 'registered' ) ) {
			wp_register_script( 'mustache', $this->wpcom_static_url( '/wp-content/js/mustache.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
		}
		if ( !wp_script_is( 'underscore', 'registered' ) ) {
			wp_register_script( 'underscore', $this->wpcom_static_url( '/wp-includes/js/underscore.min.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
		}
		if ( !wp_script_is( 'backbone', 'registered' ) ) {
			wp_register_script( 'backbone', $this->wpcom_static_url( '/wp-includes/js/backbone.min.js' ), array( 'underscore' ), JETPACK_NOTES__CACHE_BUSTER );
		}

		wp_register_script( 'wpcom-notes-common', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/notes-common-v2.js' ), array( 'jquery', 'underscore', 'backbone', 'mustache' ), JETPACK_NOTES__CACHE_BUSTER );
		wp_enqueue_script( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.js' ), array( 'wpcom-notes-common' ), JETPACK_NOTES__CACHE_BUSTER );
	}

	function admin_bar_menu() {
		global $wp_admin_bar, $current_blog;

		if ( !is_object( $wp_admin_bar ) )
			return;

		$wpcom_locale = get_locale();

		if ( !class_exists( 'GP_Locales' ) ) {
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
				require JETPACK__GLOTPRESS_LOCALES_PATH;
			}
		}

		if ( class_exists( 'GP_Locales' ) ) {
			$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', get_locale() );
			if ( $wpcom_locale_object instanceof GP_Locale ) {
				$wpcom_locale = $wpcom_locale_object->slug;
			}
		}

		$classes = 'wpnt-loading wpn-read';
		$wp_admin_bar->add_menu( array(
			'id'     => 'notes',
			'title'  => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '">
					<span class="noticon noticon-notification"></span>
					</span>',
			'meta'   => array(
				'html'  => '<div id="wpnt-notes-panel2" style="display:none" lang="'. esc_attr( $wpcom_locale ) . '" dir="' . ( is_rtl() ? 'rtl' : 'ltr' ) . '"><div class="wpnt-notes-panel-header"><span class="wpnt-notes-header">' . __( 'Notifications', 'jetpack' ) . '</span><span class="wpnt-notes-panel-link"></span></div></div>',
				'class' => 'menupop',
			),
			'parent' => 'top-secondary',
		) );
	}

	function print_js() {
		$link_accounts_url = is_user_logged_in() && !Jetpack::is_user_connected() ? Jetpack::admin_url() : false;
?>
<script type="text/javascript">
/* <![CDATA[ */
	var wpNotesIsJetpackClient = true;
	var wpNotesIsJetpackClientV2 = true;
<?php if ( $link_accounts_url ) : ?>
	var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>';
<?php endif; ?>
/* ]]> */
</script>
<?php
	}

}

Jetpack_Notifications::init();

SILENT KILLER Tool