Add series

This commit is contained in:
Didier Corbière 2013-09-17 01:08:23 +01:00
parent 7bb5144337
commit e6de4593be
3 changed files with 75 additions and 20 deletions

View file

@ -81,6 +81,8 @@ class BookExport
$this->mExport->SetProperty($i++, 'Isbn');
$this->mExport->SetProperty($i++, 'Rights');
$this->mExport->SetProperty($i++, 'Publisher');
$this->mExport->SetProperty($i++, 'Serie');
$this->mExport->SetProperty($i++, 'SerieIndex');
$this->mExport->AddContent();
}
@ -101,6 +103,8 @@ class BookExport
$this->mExport->SetProperty($i++, $inBookInfo->mIsbn);
$this->mExport->SetProperty($i++, $inBookInfo->mRights);
$this->mExport->SetProperty($i++, $inBookInfo->mPublisher);
$this->mExport->SetProperty($i++, $inBookInfo->mSerie);
$this->mExport->SetProperty($i++, $inBookInfo->mSerieIndex);
$this->mExport->AddContent();
}