Add Calibre fields: Description, Language, Subjects, Isbn, CreationDate, ModificationDate
This commit is contained in:
父節點
356a1e263b
當前提交
fce60d4079
共有 6 個文件被更改,包括 196 次插入 和 29 次删除
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
載入中…
Add table
Add a link
Reference in a new issue