diff options
author | Thomas Citharel <tcit@tcit.fr> | 2014-12-14 00:16:22 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2014-12-14 00:16:22 +0100 |
commit | dc69d3e8d895c87f9d26c2d1309e40d6090d4c8d (patch) | |
tree | 3cc3bd960df403a6e0645afcd9e4f5bbb68bfc0e /inc/3rdparty/libraries/MOBIClass/ContentProvider.php | |
parent | 9c55ed0923273da886497cb62302a79622e34a74 (diff) | |
parent | 9f86454b48dec3c9ecfee8da224112eef0f61441 (diff) | |
download | wallabag-dc69d3e8d895c87f9d26c2d1309e40d6090d4c8d.tar.gz wallabag-dc69d3e8d895c87f9d26c2d1309e40d6090d4c8d.tar.zst wallabag-dc69d3e8d895c87f9d26c2d1309e40d6090d4c8d.zip |
merge epub with all the dev evolutions
Diffstat (limited to 'inc/3rdparty/libraries/MOBIClass/ContentProvider.php')
-rw-r--r-- | inc/3rdparty/libraries/MOBIClass/ContentProvider.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/inc/3rdparty/libraries/MOBIClass/ContentProvider.php b/inc/3rdparty/libraries/MOBIClass/ContentProvider.php new file mode 100644 index 00000000..dcf9c4de --- /dev/null +++ b/inc/3rdparty/libraries/MOBIClass/ContentProvider.php | |||
@@ -0,0 +1,22 @@ | |||
1 | <?php | ||
2 | |||
3 | abstract class ContentProvider{ | ||
4 | /** | ||
5 | * Get the text data to be integrated in the MOBI file | ||
6 | * @return string | ||
7 | */ | ||
8 | public abstract function getTextData(); | ||
9 | /** | ||
10 | * Get the images (an array containing the jpeg data). Array entry 0 will | ||
11 | * correspond to image record 0. | ||
12 | * @return array | ||
13 | */ | ||
14 | public abstract function getImages(); | ||
15 | /** | ||
16 | * Get the metadata in the form of a hashtable (for example, title or author). | ||
17 | * @return array | ||
18 | */ | ||
19 | public abstract function getMetaData(); | ||
20 | } | ||
21 | |||
22 | ?> | ||