/**
  * Get the base path for file storage.
  */
 function getBasePath()
 {
     $dirNames = Application::getFileDirectories();
     return parent::getBasePath() . $dirNames['submission'] . $this->_submissionId . '/';
 }
Example #2
0
 /**
  * Get the base path for file storage
  * @return string
  */
 function getBasePath()
 {
     $dirNames = Application::getFileDirectories();
     return parent::getBasePath() . $dirNames['context'] . $this->contextId . '/';
 }