| 1 |
<?php |
| 2 |
|
| 3 |
namespace WordProof\SDK\DataTransferObjects; |
| 4 |
|
| 5 |
class TimestampData |
| 6 |
{ |
| 7 |
public static function fromPost($post) |
| 8 |
{ |
| 9 |
return [ |
| 10 |
'uid' => $post->ID, |
| 11 |
'date_modified' => get_post_modified_time('c', false, $post->ID), |
| 12 |
'title' => $post->post_title, |
| 13 |
'url' => get_permalink($post), |
| 14 |
'content' => $post->post_content, |
| 15 |
]; |
| 16 |
} |
| 17 |
} |
| 18 |
|