We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55c31d commit 37a9a93Copy full SHA for 37a9a93
modules/electrophysiology_browser/php/sessions.class.inc
@@ -461,6 +461,15 @@ class Sessions extends \NDB_Page
461
$fileSummary['downloads'] = $this->getDownloadLinks($physioFileObj);
462
$fileSummary['chunks_urls'] = $physioFileObj->getChunksURLs();
463
464
+ $fileOutput = $db->pselectone(
465
+ 'SELECT pot.OutputTypeName
466
+ FROM physiological_output_type pot
467
+ INNER JOIN physiological_file AS pf
468
+ ON pf.PhysiologicalFileID=:PFID
469
+ AND pf.PhysiologicalOutputTypeID=pot.PhysiologicalOutputTypeID',
470
+ ['PFID' => $physioFileID]
471
+ );
472
+
473
//Get the annotation data
474
$annotations = new ElectrophysioAnnotations(
475
intval($physioFileID)
0 commit comments