mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
Change tag type from string to enum (TagType)
This commit is contained in:
parent
59eee3cc57
commit
5b1bb2a9f0
6 changed files with 26 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
|||
<?
|
||||
class EbookTag extends Tag{
|
||||
public function __construct(){
|
||||
$this->Type = 'ebook';
|
||||
$this->Type = TagType::Ebook;
|
||||
}
|
||||
|
||||
// *******
|
||||
|
@ -37,7 +37,7 @@ class EbookTag extends Tag{
|
|||
$error->Add(new Exceptions\StringTooLongException('Ebook tag: '. $this->Name));
|
||||
}
|
||||
|
||||
if($this->Type != 'ebook'){
|
||||
if($this->Type != TagType::Ebook){
|
||||
$error->Add(new Exceptions\InvalidEbookTagTypeException($this->Type));
|
||||
}
|
||||
|
||||
|
@ -69,7 +69,8 @@ class EbookTag extends Tag{
|
|||
SELECT *
|
||||
from Tags
|
||||
where Name = ?
|
||||
', [$name], EbookTag::class);
|
||||
and Type = ?
|
||||
', [$name, TagType::Ebook], EbookTag::class);
|
||||
|
||||
if(isset($result[0])){
|
||||
return $result[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue