mirror of
https://github.com/standardebooks/web.git
synced 2025-07-19 12:54:48 -04:00
Add placeholders for ebooks
This commit is contained in:
parent
cf5f488cae
commit
1ab95df084
52 changed files with 1192 additions and 237 deletions
8
lib/Enums/EbookPlaceholderDifficulty.php
Normal file
8
lib/Enums/EbookPlaceholderDifficulty.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?
|
||||
namespace Enums;
|
||||
|
||||
enum EbookPlaceholderDifficulty: string{
|
||||
case Beginner = 'beginner';
|
||||
case Intermediate = 'intermediate';
|
||||
case Advanced = 'advanced';
|
||||
}
|
7
lib/Enums/EbookPlaceholderStatus.php
Normal file
7
lib/Enums/EbookPlaceholderStatus.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?
|
||||
namespace Enums;
|
||||
|
||||
enum EbookPlaceholderStatus: string{
|
||||
case Wanted = 'wanted';
|
||||
case InProgress = 'in_progress';
|
||||
}
|
8
lib/Enums/EbookReleaseStatusFilter.php
Normal file
8
lib/Enums/EbookReleaseStatusFilter.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?
|
||||
namespace Enums;
|
||||
|
||||
enum EbookReleaseStatusFilter{
|
||||
case All;
|
||||
case Placeholder;
|
||||
case Released;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue