You are here

protected function BookEventSubscriber::getExportDirectory in Tome 8

Gets the export directory for book outlines.

Return value

string The book export directory.

2 calls to BookEventSubscriber::getExportDirectory()
BookEventSubscriber::exportBookOutlines in modules/tome_sync/src/EventSubscriber/BookEventSubscriber.php
Exports all book outlines.
BookEventSubscriber::importBookOutlines in modules/tome_sync/src/EventSubscriber/BookEventSubscriber.php
Imports all book outlines.

File

modules/tome_sync/src/EventSubscriber/BookEventSubscriber.php, line 128

Class

BookEventSubscriber
Event subscriber that keep book outlines in sync with content changes.

Namespace

Drupal\tome_sync\EventSubscriber

Code

protected function getExportDirectory() {
  return Settings::get('tome_book_outline_directory', '../extra');
}