wallabag/inc/3rdparty/libraries/MOBIClass/ContentProvider.php

23 lines
496 B
PHP
Raw Normal View History

2014-07-24 13:49:36 +00:00
<?php
abstract class ContentProvider{
/**
* Get the text data to be integrated in the MOBI file
* @return string
*/
public abstract function getTextData();
/**
* Get the images (an array containing the jpeg data). Array entry 0 will
* correspond to image record 0.
* @return array
*/
public abstract function getImages();
/**
* Get the metadata in the form of a hashtable (for example, title or author).
* @return array
*/
public abstract function getMetaData();
}
?>