Update README.md and sync files.

This commit is contained in:
Cody Cook 2024-05-06 21:48:35 -07:00
commit da93d643d9
11 changed files with 763 additions and 2 deletions

60
classes/Schema.php Normal file
View file

@ -0,0 +1,60 @@
<?php
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"
}
}
*/
}