HEX
Server: Apache
System: Linux clpupre 5.4.0-90-generic #101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021 x86_64
User: undanet (1000)
PHP: 7.4.3
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/undanet/www/wp-content/plugins/mu-plugins/src/Model/Post.php
<?php

namespace WordPress\ORM\Model;

use DateTime;
use WordPress\ORM\BaseModel;

/**
 * WordPress post model.
 *
 * @author Brandon Wamboldt <brandon.wamboldt@gmail.com>
 */
class Post extends BaseModel
{
    /**
     * @var integer
     */
    protected $ID;

    /**
     * @var integer
     */
    protected $post_author;

    /**
     * @var DateTime
     */
    protected $post_date;

    /**
     * @var DateTime
     */
    protected $post_date_gmt;

    /**
     * @var string
     */
    protected $post_content;

    /**
     * @var string
     */
    protected $post_title;

    /**
     * @var string
     */
    protected $post_excerpt;

    /**
     * @var string
     */
    protected $post_status;

    /**
     * @var string
     */
    protected $comment_status;

    /**
     * @var string
     */
    protected $ping_status;

    /**
     * @var string
     */
    protected $post_password;

    /**
     * @var string
     */
    protected $post_name;

    /**
     * @var string
     */
    protected $to_ping;

    /**
     * @var string
     */
    protected $pinged;

    /**
     * @var DateTime
     */
    protected $post_modified;

    /**
     * @var DateTime
     */
    protected $post_modified_gmt;

    /**
     * @var string
     */
    protected $post_content_filtered;

    /**
     * @var integer
     */
    protected $post_parent;

    /**
     * @var string
     */
    protected $guid;

    /**
     * @var integer
     */
    protected $menu_order;

    /**
     * @var string
     */
    protected $post_type;

    /**
     * @var string
     */
    protected $post_mime_type;

    /**
     * @var integer
     */
    protected $comment_count;

    /**
     * @var array
     */
    protected $meta = array();

    /**
     * Override the default constructor so we can type cast certain properties.
     *
     * @param array $properties
     */
    public function __construct(array $properties = array())
    {
        global $wpdb;

        if (isset($properties['ID'])) {
            $metadata = $wpdb->get_results("SELECT * FROM `{$wpdb->postmeta}` WHERE `post_id` = {$properties['ID']}");

            foreach ($metadata as $data) {
                $this->meta[$data->meta_key] = maybe_unserialize($data->meta_value);
            }
        }

        if (isset($properties['post_date'])) {
            $properties['post_date'] = new DateTime($properties['post_date']);
        }

        if (isset($properties['post_date_gmt'])) {
            $properties['post_date_gmt'] = new DateTime($properties['post_date_gmt']);
        }

        if (isset($properties['post_modified'])) {
            $properties['post_modified'] = new DateTime($properties['post_modified']);
        }

        if (isset($properties['post_modified_gmt'])) {
            $properties['post_modified_gmt'] = new DateTime($properties['post_modified_gmt']);
        }

        parent::__construct($properties);
    }

    /**
     * Get the post's meta data.
     *
     * @param  string $meta_key
     * @param  mixed  $default
     * @return mixed
     */
    public function get_metadata($meta_key, $default = null)
    {
        return $this->meta[$meta_key];
    }

    /**
     * Update the post's meta data.
     *
     * @param string $meta_key
     * @param mixed  $meta_value
     */
    public function update_metadata($meta_key, $meta_value)
    {
        $this->meta[$meta_key] = $meta_value;

        update_post_meta($this->ID, $meta_key, $meta_value);
    }

    /**
     * Delete the post's meta data.
     *
     * @param string $meta_key
     */
    public function delete_metadata($meta_key)
    {
        unset($this->meta[$meta_key]);

        delete_post_meta($this->ID, $meta_key);
    }

    /**
     * Convert complex objects to strings to insert into the database.
     *
     * @param  array $props
     * @return array
     */
    public function flatten_props($props)
    {
        unset($props['meta']);

        return parent::flatten_props($props);
    }

    /**
     * Get the model's primary key.
     *
     * @return string
     */
    public static function get_primary_key()
    {
        return 'ID';
    }

    /**
     * Get the table used to store posts.
     *
     * @return string
     */
    public static function get_table()
    {
        global $wpdb;

        return $wpdb->posts;
    }

    /**
     * Get an array of properties to search when doing a search query.
     *
     * @return array
     */
    public static function get_searchable_fields()
    {
        return array('post_title', 'post_content', 'post_excerpt');
    }
}