Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
polymastigina
/
wp-content
/
plugins
/
wordpress-seo
/
vendor_prefixed
/
wordproof
/
wordpress-sdk
/
app
/
DataTransferObjects
:
TimestampData.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace YoastSEO_Vendor\WordProof\SDK\DataTransferObjects; class TimestampData { /** * Get timestamp data from post object. * * @param \WP_Post $post * @return array */ public static function fromPost($post) { if ($post->post_type === 'attachment') { $file = \get_attached_file($post->ID); $content = ''; if ($file) { $content = \hash_file('sha256', $file); } } else { $content = $post->post_content; } return ['uid' => $post->ID, 'date_modified' => \get_post_modified_time('c', \false, $post->ID), 'title' => $post->post_title, 'url' => \get_permalink($post), 'content' => $content]; } }