# patchstack/2.2.1/includes/events/core.php

Patchstack – WordPress &amp; Plugins Security, version 2.2.1. 46 lines.

- Page: https://pluginprobe.com/plugins/patchstack/2.2.1/code/includes/events/core.php
- Raw: https://pluginprobe.com/plugins/patchstack/2.2.1/raw/includes/events/core.php
- Modified: 2023-11-09T10:59:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/patchstack/2.2.1/code/includes/events/core.php#L10-L20`.

```php
<?php

// Do not allow the file to be called directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * This class is used to log any core updates.
 */
class P_Event_Core extends P_Event_Log {

	/**
	 * Hook into the action so we can log it.
	 *
	 * @return void
	 */
	public function __construct() {
		add_action( '_core_updated_successfully', [ &$this, 'eventCoreUpdatedSuccessfully' ] );
	}

	/**
	 * When the core version of WordPress has been updated.
	 *
	 * @param string $wp_version
	 * @return void
	 */
	public function eventCoreUpdatedSuccessfully( $wp_version ) {
		global $pagenow;
		if ( $pagenow !== 'update-core.php' ) {
			$object_name = 'WordPress core automatically updated';
		} else {
			$object_name = 'WordPress core updated';
		}

		$this->insert(
			[
				'action'      => 'updated',
				'object'      => 'core',
				'object_id'   => 0,
				'object_name' => $object_name,
			]
		);
	}
}

```
