| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/wp-content/plugins/wp-popups-lite/src/includes/ |
Upload File : |
<?php
/**
* Class for logging events and errors
*
* This class is forked from Easy Digital Downloads / Pippin Williamson.
*
* @link https://github.com/easydigitaldownloads/Easy-Digital-Downloads/blob/master/includes/class-edd-logging.php
* @package WPPopups
* @author WPPopups
* @since 1.0.0
* @license GPL-2.0+
* @copyright Copyright (c) 2016, WP Popups LLC
*/
class WPPopups_Logging {
/**
* Set up the logging class.
*
* @since 1.0.0
*/
public function __construct() {
// Create the log post type
add_action( 'init', [ $this, 'register_post_type' ], 1 );
// Create types taxonomy and default types
add_action( 'init', [ $this, 'register_taxonomy' ], 1 );
}
/**
* Registers the log post type.
*
* @since 1.0.0
*/
public function register_post_type() {
$log_args = [
'labels' => [
'name' => esc_html__( 'WP Popups Logs', 'wp-popups-lite' ),
'menu_name' => esc_html__( 'Logs', 'wp-popups-lite' ),
],
'public' => false,
'exclude_from_search' => true,
'publicly_queryable' => false,
'show_ui' => false,
'query_var' => false,
'rewrite' => false,
'capability_type' => wppopups_get_capability_manage_options(),
'supports' => [ 'title', 'editor' ],
'can_export' => false,
'show_in_menu' => 'wppopups-overview',
'show_in_admin_bar' => false,
];
if ( wppopups_debug() ) {
$log_args['show_ui'] = true;
}
register_post_type( 'wppopups_log', apply_filters( 'wppopups_log_cpt', $log_args ) );
}
/**
* Registers the Log Type taxonomy.
*
* @since 1.0.0
*/
public function register_taxonomy() {
register_taxonomy( 'wppopups_log_type', 'wppopups_log', [ 'public' => false ] );
}
/**
* Log types.
*
* @return array
* @since 1.0.0
*/
public function log_types() {
$terms = [
'provider',
'error',
];
return apply_filters( 'wppopups_log_types', $terms );
}
/**
* Check if a log type is valid.
*
* @param string $type
*
* @return bool
* @since 1.0.0
*/
function valid_type( $type ) {
return in_array( $type, $this->log_types() );
}
/**
* Create new log entry.
*
* This is just a simple and fast way to log something. Use $this->insert_log()
* if you need to store custom meta data
*
* @param string $title Log entry title
* @param string $message Log entry message
* @param int $parent Log entry parent
* @param string $type Log type (default: null)
*
* @return int Log ID
* @since 1.0.0
*/
public function add( $title = '', $message = '', $parent = 0, $type = null, $meta = '' ) {
$log_data = [
'post_title' => $title,
'post_content' => $message,
'post_parent' => $parent,
'log_type' => $type,
];
return $this->insert_log( $log_data, $meta );
}
/**
* Easily retrieves log items for a particular object ID.
*
* @param int $object_id (default: 0)
* @param string $type Log type (default: null)
* @param int $paged Page number (default: null)
*
* @return array Array of the connected logs
* @since 1.0.0
*/
public function get_logs( $object_id = 0, $type = null, $paged = null ) {
return $this->get_connected_logs( [ 'post_parent' => $object_id, 'paged' => $paged, 'log_type' => $type ] );
}
/**
* Stores a log entry.
*
* @param array $log_data Log entry data
* @param array $log_meta Log entry meta
*
* @return int The ID of the newly created log item
* @since 1.0.0
*/
function insert_log( $log_data = [], $log_meta = [] ) {
$defaults = [
'post_type' => 'wppopups_log',
'post_status' => 'publish',
'post_parent' => 0,
'post_content' => '',
'log_type' => false,
];
$args = wp_parse_args( $log_data, $defaults );
do_action( 'wppopups_pre_insert_log', $log_data, $log_meta );
// Store the log entry
$log_id = wp_insert_post( $args );
// Set the log type, if any
if ( $log_data['log_type'] && $this->valid_type( $log_data['log_type'] ) ) {
wp_set_object_terms( $log_id, $log_data['log_type'], 'wppopups_log_type', false );
}
// Set log meta, if any
if ( $log_id && ! empty( $log_meta ) ) {
foreach ( (array) $log_meta as $key => $meta ) {
update_post_meta( $log_id, '_wppopups_log_' . sanitize_key( $key ), $meta );
}
}
do_action( 'wppopups_post_insert_log', $log_id, $log_data, $log_meta );
return $log_id;
}
/**
* Update and existing log item.
*
* @param array $log_data Log entry data
* @param array $log_meta Log entry meta
*
* @return bool True if successful, false otherwise
* @since 1.0.0
*/
public function update_log( $log_data = [], $log_meta = [] ) {
do_action( 'wppopups_pre_update_log', $log_data, $log_meta );
$defaults = [
'post_type' => 'wppopups_log',
'post_status' => 'publish',
'post_parent' => 0,
];
$args = wp_parse_args( $log_data, $defaults );
// Store the log entry
$log_id = wp_update_post( $args );
if ( $log_id && ! empty( $log_meta ) ) {
foreach ( (array) $log_meta as $key => $meta ) {
if ( ! empty( $meta ) ) {
update_post_meta( $log_id, '_wppopups_log_' . sanitize_key( $key ), $meta );
}
}
}
do_action( 'wppopups_post_update_log', $log_id, $log_data, $log_meta );
}
/**
* Retrieve all connected logs.
*
* Used for retrieving logs related to particular items, such as a specific purchase.
*
* @param array $args Query arguments
*
* @return mixed array if logs were found, false otherwise
* @since 1.0.0
*/
public function get_connected_logs( $args = [] ) {
$defaults = [
'post_type' => 'wppopups_log',
'posts_per_page' => 20,
'post_status' => 'publish',
'paged' => get_query_var( 'paged' ),
'log_type' => false,
];
$query_args = wp_parse_args( $args, $defaults );
if ( $query_args['log_type'] && $this->valid_type( $query_args['log_type'] ) ) {
$query_args['tax_query'] = [
[
'taxonomy' => 'wppopups_log_type',
'field' => 'slug',
'terms' => $query_args['log_type'],
],
];
}
$logs = get_posts( $query_args );
if ( $logs ) {
return $logs;
}
// No logs found
return false;
}
/**
* Retrieves number of log entries connected to particular object ID
*
* @param int $object_id (default: 0)
* @param string $type Log type (default: null)
* @param array $meta_query Log meta query (default: null)
* @param array $date_query Log data query (default: null) (since 1.9)
*
* @return int Log count
* @since 1.0.0
*/
public function get_log_count( $object_id = 0, $type = null, $meta_query = null, $date_query = null ) {
global $pagenow, $typenow;
$query_args = [
'post_parent' => $object_id,
'post_type' => 'wppopups_log',
'posts_per_page' => - 1,
'post_status' => 'publish',
'fields' => 'ids',
];
if ( ! empty( $type ) && $this->valid_type( $type ) ) {
$query_args['tax_query'] = [
[
'taxonomy' => 'wppopups_log_type',
'field' => 'slug',
'terms' => $type,
],
];
}
if ( ! empty( $meta_query ) ) {
$query_args['meta_query'] = $meta_query;
}
if ( ! empty( $date_query ) ) {
$query_args['date_query'] = $date_query;
}
$logs = new WP_Query( $query_args );
return (int) $logs->post_count;
}
/**
* Delete a log.
*
* @param int $object_id (default: 0)
* @param string $type Log type (default: null)
* @param array $meta_query Log meta query (default: null)
*
* @since 1.0.0
*/
public function delete_logs( $object_id = 0, $type = null, $meta_query = null ) {
$query_args = [
'post_parent' => $object_id,
'post_type' => 'wppopups_log',
'posts_per_page' => - 1,
'post_status' => 'publish',
'fields' => 'ids',
];
if ( ! empty( $type ) && $this->valid_type( $type ) ) {
$query_args['tax_query'] = [
[
'taxonomy' => 'wppopups_log_type',
'field' => 'slug',
'terms' => $type,
],
];
}
if ( ! empty( $meta_query ) ) {
$query_args['meta_query'] = $meta_query;
}
$logs = get_posts( $query_args );
if ( $logs ) {
foreach ( $logs as $log ) {
wp_delete_post( $log, true );
}
}
}
}