Skip to content

Commit

Permalink
Adds required abstract methods to Scripto_Adapter_Example.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimsafley committed Oct 4, 2011
1 parent 09c3113 commit aa45d76
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/Scripto/Adapter/Example.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,16 @@ public function getDocumentPageName($documentId, $pageId)
return $this->_documents[$documentId]['document_pages'][$pageId]['page_name'];
}

public function documentTranscriptionIsImported($documentId)
{
return false;
}

public function documentPageTranscriptionIsImported($documentId, $pageId)
{
return false;
}

public function importDocumentPageTranscription($documentId, $pageId, $text)
{
return false;
Expand Down

0 comments on commit aa45d76

Please sign in to comment.