File Editor
Directories:
.. (Back)
Admin
Ajax
Asset
Context
Customizer
Debug_Bar
Dialog
Documentation
Duplicate
Editor
Image
JSON_LD
Languages
Log
Meta
Models
Onboarding
PUE
Process
Promoter
REST
Repository
Service_Providers
Shortcode
Support
Tabbed_View
Tooltip
Traits
Utils
Validator
Values
Widget
Files:
Abstract_Deactivation.php
Abstract_Plugin_Register.php
App_Shop.php
Assets.php
Assets_Pipeline.php
Autoloader.php
Cache.php
Cache_Listener.php
Changelog_Reader.php
Container.php
Context.php
Cost_Utils.php
Credits.php
Customizer.php
DB_Lock.php
Data.php
Date_Utils.php
Db.php
Debug.php
Dependency.php
Deprecation.php
Editor.php
Error.php
Exception.php
Extension.php
Extension_Loader.php
Feature_Detection.php
Field.php
Field_Conditional.php
Log.php
Main.php
Notices.php
Plugin_Meta_Links.php
Plugins.php
Plugins_API.php
Post_History.php
Post_Transient.php
Promise.php
Repository.php
Rewrite.php
Settings.php
Settings_Manager.php
Settings_Tab.php
Simple_Table.php
Support.php
Tabbed_View.php
Template.php
Template_Part_Cache.php
Templates.php
Terms.php
Timezones.php
Tracker.php
Updater.php
Validate.php
View_Helpers.php
Create New File
Create
Edit File: Post_History.php
<?php /** * Used for maintaining post-level histories/audit trails. * * @internal * @since 4.3 */ class Tribe__Post_History { /** * Used to identify history/audit trail post meta records. */ const HISTORY_KEY = '_tribe_post_history'; /** * The post this history object is concerned with. * * @var int */ protected $post_id; /** * Returns a Tribe__Post_History object for the specified post. * * @param int $post_id * * @return Tribe__Post_History */ public static function load( $post_id ) { return new self( $post_id ); } /** * Returns a Tribe__Post_History object for the specified post. * * @param int $post_id * * @return Tribe__Post_History */ public function __construct( $post_id ) { $this->post_id = $post_id; } /** * Records a new history entry for the current post. * * @param string $message * @param array $data */ public function add_entry( $message, array $data = [] ) { $datetime = current_time( 'mysql' ); $checksum = uniqid( substr( hash( 'md5', $datetime . $message . serialize( $data ) ), 0, 8 ) . '_' ); $log_entry = wp_slash( json_encode( [ 'datetime' => $datetime, 'message' => $message, 'data' => $data, 'checksum' => $checksum, ] ) ); add_post_meta( $this->post_id, self::HISTORY_KEY, $log_entry ); } /** * Indicates if any history exists for the current post. * * @return bool */ public function has_entries() { $first_available_entry = get_post_meta( $this->post_id, self::HISTORY_KEY, true ); return ! empty( $first_available_entry ); } /** * Returns all historical records for the current post as an array * of objects, each object taking the form: * * { * "datetime": "yyyy-mm-dd hh:ii:ss", * "message": "...", * "data": [] * } * * @return array */ public function get_entries() { $entries = []; foreach ( get_post_meta( $this->post_id, self::HISTORY_KEY ) as $log_entry ) { $log_entry = json_decode( $log_entry ); if ( ! $log_entry ) { continue; } $entries[] = $log_entry; } return $entries; } /** * Deletes all entries for the current post that match the provided datetime * string and (optionally) also match the provided checksum. * * Returns the total number of deleted entries, which may be zero if none were matched; * can also be more than one if multiple entries were logged at the same time and no * checksum is provided. * * @param string $datetime * @param string $checksum optional value to more precisely specify the entry to be deleted * * @return int */ public function delete_entry( $datetime, $checksum = null ) { $deleted = 0; foreach ( $this->get_entries() as $entry ) { if ( $entry->datetime !== $datetime ) { continue; } if ( null !== $checksum && $entry->checksum !== $checksum ) { continue; } if ( delete_post_meta( $this->post_id, self::HISTORY_KEY, json_encode( $entry ) ) ) { $deleted++; } } return $deleted; } }
Save Changes
Rename File
Rename