Grandt/PHPePub - GitHub
PHPePub - PHP Classes for dunamically generating EPub files.
Les articles publiés sur le site
-
Reduced size of example cover image
24 octobre 2013, par GrandtReduced size of example cover image
-
Retired Version 2.14
24 octobre 2013, par GrandtRetired Version 2.14 Version 2.5x is now the new main branch.
-
Added support for more meta data
5 octobre 2013, par GrandtAdded support for more meta data * Added: Support for custom meta data via the function ->addCustomMetadata($name, $content); * It is the responsibility of the builder to ensure no invalid values are inserted. * Example use is for for instance Calibre, see EPub.Example250.php for use. * Added: Support or user handled DublinCore meta data via the function ->addDublinCoreMetadata(DublinCore::constants, $content);
-
Added composer.json
5 octobre 2013, par GrandtAdded composer.json #11 I hope I did this right.
-
Added : Support for Chapter sub levels.
5 octobre 2013, par GrandtAdded: Support for Chapter sub levels. Rev. 2.53 - 2013-10-05 * Added: Support for Chapter levels. * Added functions: * ->subLevel() to indent one level under the current, additional chapters are added under that. * ->backLevel() to step one level back to the parent of the current level. * ->rootLevel() to step back to the root of the navMap. * ->getCurrentLevel() to get the current level indentation (root = 1). * ->setCurrentLevel(int) to set the current level indentation (1 or less returns to the root, same as ->rootLevel()). * ->buildTOC now reflects this level indentation if present. * ePub250 is otherwise compatible to the previous version, and no modifications are needed if you don't need this feature.