Current File : /var/www/e360ban/wp-content/plugins/toolset-blocks/application/models/shortcode/post/date.php |
<?php
/**
* Class WPV_Shortcode_Post_Date
*
* @since 2.5.0
*/
class WPV_Shortcode_Post_Date extends WPV_Shortcode_Base {
const SHORTCODE_NAME = 'wpv-post-date';
/**
* @var array
*/
private $shortcode_atts = array(
'item' => null, // post
'id' => null, // synonym for 'item'
'post_id' => null, // synonym for 'item'
'format' => null, // date format
'type' => 'created' // 'created'|'modified'
);
/**
* @var string|null
*/
private $user_content;
/**
* @var array
*/
private $user_atts;
/**
* @var Toolset_Shortcode_Attr_Interface
*/
private $item;
/**
* WPV_Shortcode_Post_Date constructor.
*
* @param Toolset_Shortcode_Attr_Interface $item
*/
public function __construct(
Toolset_Shortcode_Attr_Interface $item
) {
$this->item = $item;
$this->shortcode_atts['format'] = get_option( 'date_format' );
}
/**
* Get the shortcode output value.
*
* @param $atts
* @param $content
*
* @return string
*
* @since 2.5.0
*/
public function get_value( $atts, $content = null ) {
$this->user_atts = shortcode_atts( $this->shortcode_atts, $atts );
$this->user_content = $content;
if ( ! $item_id = $this->item->get( $this->user_atts ) ) {
// no valid item
throw new WPV_Exception_Invalid_Shortcode_Attr_Item();
}
$out = '';
$item = $this->get_post( $item_id );
if ( null === $item ) {
return $out;
}
$type = strtolower( $this->user_atts['type'] );
if ( $type == "created" ) {
$out .= apply_filters('the_time', get_the_time( $this->user_atts['format'], $item->ID ) );
} elseif ( $type == "modified" ) {
$out .= apply_filters('the_modified_time', get_the_modified_time( $this->user_atts['format'], $item->ID ) );
}
apply_filters( 'wpv_shortcode_debug', 'wpv-post-date', json_encode( $this->user_atts ), '', 'Data received from cache, filter the_time applied', $out );
return $out;
}
}