Skip to content

Commit

Permalink
Fixed issue #18737: Missing response action: View response as queXML …
Browse files Browse the repository at this point in the history
…PDF (#3042)

* Fixed issue #17298: queXML PDF Export: 500: Internal Server Error

* Fixed issue #17578: PSPP reports warnings when opening SPSS SAV file using Export to SAV

* Fixed issue #14370: QueXML export (Print answers) of a ranking question showing name of available options instead of "Rank #"

* Fixed issue #18737:  Missing response action: View response as queXML PDF
  • Loading branch information
adamzammit committed Jun 1, 2023
1 parent 95fe7ad commit 5b1fbb7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions application/models/SurveyDynamic.php
Expand Up @@ -295,6 +295,18 @@ public function getGridButtons()
]
),
];
$dropdownItems[] = [
'title' => gT('View response details as queXML PDF'),
'iconClass' => 'ri-file-pdf-line',
'url' => App()->createUrl(
"responses/viewquexmlpdf",
[
"surveyId" => self::$sid,
"id" => $this->id,
"browseLang" => $sBrowseLanguage
]
),
];
$dropdownItems[] = [
'title' => gT('Edit this response'),
'iconClass' => 'ri-pencil-fill text-success',
Expand Down

0 comments on commit 5b1fbb7

Please sign in to comment.