Add Calibre fields: Description, Language, Subjects, Isbn, CreationDate, ModificationDate
This commit is contained in:
parent
356a1e263b
commit
fce60d4079
6 changed files with 196 additions and 29 deletions
|
@ -31,6 +31,8 @@ class BookInfos
|
|||
public $mPublisher = '';
|
||||
public $mSerie = '';
|
||||
public $mSerieIndex = '';
|
||||
public $mCreationDate = '';
|
||||
public $mModificationDate = '';
|
||||
|
||||
/**
|
||||
* Loads book infos from an epub file
|
||||
|
@ -63,6 +65,8 @@ class BookInfos
|
|||
$this->mPublisher = $ePub->Publisher();
|
||||
$this->mSerie = $ePub->Serie();
|
||||
$this->mSerieIndex = $ePub->SerieIndex();
|
||||
$this->mCreationDate = $ePub->CreationDate();
|
||||
$this->mModificationDate = $ePub->ModificationDate();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue