35 lines
680 B
PHP
35 lines
680 B
PHP
<?php
|
|
|
|
namespace Yoast\WP\SEO\Presenters\Open_Graph;
|
|
|
|
use Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter;
|
|
|
|
/**
|
|
* Presenter class for the Open Graph article published time.
|
|
*/
|
|
class Article_Published_Time_Presenter extends Abstract_Indexable_Tag_Presenter {
|
|
|
|
/**
|
|
* The tag key name.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $key = 'article:published_time';
|
|
|
|
/**
|
|
* The tag format including placeholders.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $tag_format = self::META_PROPERTY_CONTENT;
|
|
|
|
/**
|
|
* Gets the raw value of a presentation.
|
|
*
|
|
* @return string The raw value.
|
|
*/
|
|
public function get() {
|
|
return $this->presentation->open_graph_article_published_time;
|
|
}
|
|
}
|