Cody Cook
70c8a87e15
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 30s
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace DJMixHosting;
|
|
|
|
class Schema
|
|
{
|
|
|
|
private $albumProductionType = "DJMixAlbum";
|
|
private $type = "";
|
|
private $name = "";
|
|
private $byArtist = "";
|
|
private $inAlbum = "";
|
|
private $genre = "";
|
|
private $url = "";
|
|
private $image = "";
|
|
private $duration = "";
|
|
private $datePublished = "";
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "MusicRecording",
|
|
"name": "Future Primitive",
|
|
"byArtist": {
|
|
"@type": "MusicGroup",
|
|
"name": "10-E",
|
|
"image": "/djs/10e/profile.jpg"
|
|
},
|
|
"inAlbum": {
|
|
"@type": "MusicAlbum",
|
|
"name": "Future Primitive"
|
|
},
|
|
"genre": "Trance",
|
|
"url": "https://utahsdjs.com/mix/future-primitive",
|
|
"image": "https://utahsdjs.com//djs/no-art-provided.png",
|
|
|
|
"duration": "PT1H11M5S",
|
|
|
|
"datePublished": "2009-03-02 23:57:01",
|
|
"description": "Listen to Future Primitive on Utah's DJs.",
|
|
"interactionStatistic": {
|
|
"@type": "InteractionCounter",
|
|
"interactionType": "https://schema.org/ListenAction",
|
|
"userInteractionCount": "537",
|
|
"url": "https://utahsdjs.com/mix/future-primitive/download"
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
}
|