Add cover art database

Co-authored-by: Job Curtis <job.curtis@gmail.com>
Co-authored-by: Alex Cabal <alex@standardebooks.org>
This commit is contained in:
Mike Colagrosso 2023-12-28 16:38:39 -06:00 committed by Alex Cabal
parent 74f747df76
commit 6a5c05511a
92 changed files with 3174 additions and 146 deletions

View file

@ -1,12 +1,11 @@
<?
class Tag{
public $Name;
public $Url;
public $UrlName;
public function __construct(string $name){
$this->Name = $name;
$this->UrlName = Formatter::MakeUrlSafe($this->Name);
$this->Url = '/subjects/' . $this->UrlName;
}
/**
* @property string $Url
*/
class Tag extends PropertiesBase{
public $TagId;
public $Name;
public $UrlName;
protected $_Url;
}