epub-formatter-cover.html.twig |
templates/epub-formatter-cover.html.twig |
|
<div class="ebook">
<a href="{{ file }}">
<img src="{{ image }}" width="{{ width }}" style="border:1px solid black;"/>
</a>
</div> |
epub-formatter-default.html.twig |
templates/epub-formatter-default.html.twig |
|
<div id="ebook" class="epub">
{{ download | raw}}
{{ iframe | raw }}
{{ pager }}
</div> |
epub-formatter-js.html.twig |
templates/epub-formatter-js.html.twig |
|
<iframe allowfullscreen class="epub ebook" width="{{ width }}" height="{{ height }}" src="{{ reader }}"></iframe> |
epub-formatter-reader.html.twig |
templates/epub-formatter-reader.html.twig |
|
<a href="{{ file }}">
{% trans %}
Read it online
{% endtrans %}
</a> |
epub-formatter-toc.html.twig |
templates/epub-formatter-toc.html.twig |
|
<div class="ebook">
<a href="{{ file }}">
{% trans %}Download{% endtrans %}
</a>
{{ toc | raw }}
</div> |
epub.css |
css/epub.css |
|
#ebook {
z-index: 9999;
background: white;
//padding: 0 20px;
}
#ebook iframe {
margin: 0;
padding: 0;
overflow: auto;
border: 1px solid gray;
/*box-shadow: black 0px 0px 10px;*/
}
.arrow {
position: absolute;
top: 50%;
… |
epub.drush.inc |
drush/epub.drush.inc |
|
Contains epub drush commands. |
epub.field.inc |
epub.field.inc |
|
Functionality for the Epub module. |
epub.info.yml |
epub.info.yml |
|
epub.info.yml |
epub.install |
epub.install |
|
|
epub.libraries.yml |
epub.libraries.yml |
|
epub.libraries.yml |
epub.module |
epub.module |
|
|
EpubCoverImage.php |
src/Plugin/Field/FieldFormatter/EpubCoverImage.php |
Drupal\epub\Plugin\Field\FieldFormatter |
Contains \Drupal\epub\Plugin\Field\FieldFormatter\EpubCoverImage. |
EpubFormatterBase.php |
src/Plugin/Field/FieldFormatter/EpubFormatterBase.php |
Drupal\epub\Plugin\Field\FieldFormatter |
Contains \Drupal\epub\Plugin\Field\FieldFormatter\EpubFormatterBase. |
EpubJs.php |
src/Plugin/Field/FieldFormatter/EpubJs.php |
Drupal\epub\Plugin\Field\FieldFormatter |
Contains \Drupal\epub\Plugin\Field\FieldFormatter\Epubjs. |
EpubReaderJs.php |
src/Plugin/Field/FieldFormatter/EpubReaderJs.php |
Drupal\epub\Plugin\Field\FieldFormatter |
Contains \Drupal\epub\Plugin\Field\FieldFormatter\EpubReaderJs. |
EpubTableOfContent.php |
src/Plugin/Field/FieldFormatter/EpubTableOfContent.php |
Drupal\epub\Plugin\Field\FieldFormatter |
Contains \Drupal\epub\Plugin\Field\FieldFormatter\EpubTableOfContent. |
LICENSE.txt |
LICENSE.txt |
|
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim… |
README.txt |
README.txt |
|
-- SUMMARY --
The epub module for Drupal 8 provides displays for file fields and enables users to read epub/ibooks files inside their browsers.
-- INSTALLATION --
Go to YOUR_DRUPAL/libraries
Run "git clone… |