--- /dev/null
+<?php
+
+namespace Fluidbook\Tools\Compiler;
+
+use Cubist\Util\Files\VirtualDirectory;
+
+class DummyCompiler implements CompilerInterface {
+
+ public function addContentLock($page, $unlockConditions = '') {
+ // TODO: Implement addContentLock() method.
+ }
+
+ public function addTriggersLink($page, $link, $delay = 0) {
+ // TODO: Implement addTriggersLink() method.
+ }
+
+ public function addAudiodescription($link) {
+ // TODO: Implement addAudiodescription() method.
+ }
+
+ public function addBookmarkGroup($link) {
+ // TODO: Implement addBookmarkGroup() method.
+ }
+
+ public function getConfigZIP($d) {
+ // TODO: Implement getConfigZIP() method.
+ }
+
+ public function getSetting($key, $default = null) {
+ // TODO: Implement getSetting() method.
+ }
+
+ public function setSetting($key, $value) {
+ // TODO: Implement setSetting() method.
+ }
+
+ public function getVirtualDirectory(): VirtualDirectory {
+ // TODO: Implement getVirtualDirectory() method.
+ }
+
+ public function getWorkingDir(): string {
+ // TODO: Implement getWorkingDir() method.
+ }
+
+ public function setWorkingDir(string $wdir) {
+ // TODO: Implement setWorkingDir() method.
+ }
+
+ public function working_path($path = ''): string {
+ // TODO: Implement working_path() method.
+ }
+
+ public function source_path($path = ''): string {
+ // TODO: Implement source_path() method.
+ }
+
+ public function page_path($page, $path = ''): string {
+ // TODO: Implement page_path() method.
+ }
+
+ public function getWidth() {
+ // TODO: Implement getWidth() method.
+ }
+
+ public function getHeight() {
+ // TODO: Implement getHeight() method.
+ }
+
+ public function virtualToPhysical($virtual) {
+ // TODO: Implement virtualToPhysical() method.
+ }
+
+ public function getPagePDFSource($page): string {
+ // TODO: Implement getPagePDFSource() method.
+ }
+}