Add Calibre fields: Description, Language, Subjects, Isbn, CreationDate, ModificationDate

This commit is contained in:
Marsender 2013-10-10 01:16:43 +01:00
parent 356a1e263b
commit fce60d4079
6 changed files with 196 additions and 29 deletions

View file

@ -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();
}
}