$action, 'object_type' => 'Attachment', 'object_subtype' => $post->post_type, 'object_id' => $attachment_id, 'object_name' => esc_html( get_the_title( $post->ID ) ), ) ); } public function hooks_delete_attachment( $attachment_id ) { $this->_add_log_attachment( 'deleted', $attachment_id ); } public function hooks_edit_attachment( $attachment_id ) { $this->_add_log_attachment( 'updated', $attachment_id ); } public function hooks_add_attachment( $attachment_id ) { $this->_add_log_attachment( 'added', $attachment_id ); } public function __construct() { add_action( 'add_attachment', array( &$this, 'hooks_add_attachment' ) ); add_action( 'edit_attachment', array( &$this, 'hooks_edit_attachment' ) ); add_action( 'delete_attachment', array( &$this, 'hooks_delete_attachment' ) ); parent::__construct(); } }