Your IP : 216.73.216.240
<?php
/*
* @package Tech Fry Library
* @license https://www.gnu.org/licenses/gpl-3.0.en.html
*/
namespace TechFry\Library\View\Sd;
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Uri\Uri;
// https://developers.google.com/search/docs/appearance/structured-data/special-announcements
class SdSpecialAnnouncement
{
public static function get_output($data = array())
{
$name = $data['name'] ?? $data['title'];
$json = array(
"@context" => "https://schema.org",
"@type" => "SpecialAnnouncement",
"name" => $name,
"text" => $data['introtext'],
"datePosted" => $data['publish_up'],
);
Sd::display_sd($json);
}
}