CRM-19782 - Don't show 'View' link on printed Participant Listing reports
authorJon goldberg <jon@palantetech.coop>
Thu, 15 Dec 2016 19:21:10 +0000 (14:21 -0500)
committerJon goldberg <jon@palantetech.coop>
Thu, 15 Dec 2016 19:21:10 +0000 (14:21 -0500)
CRM/Report/Form/Event/ParticipantListing.php

index 4917c7f27da92aea7f34a333f810435e0143eaec..8c0909b1f725182139de98f99b8b8d64dee97aa8 100644 (file)
@@ -758,7 +758,8 @@ ORDER BY  cv.label
         $participantTitle = ts('View Participant Record');
 
         $rows[$rowNum]['civicrm_contact_sort_name_linked'] = "<a title='$contactTitle' href=$url>$displayName</a>";
-        if ($this->_outputMode !== 'csv') {
+        // Add a "View" link to the participant record if this isn't a CSV/PDF/printed document.
+        if ($this->_outputMode !== 'csv' && $this->_outputMode !== 'pdf' && $this->_outputMode !== 'print') {
           $rows[$rowNum]['civicrm_contact_sort_name_linked'] .=
             "<span style='float: right;'><a title='$participantTitle' href=$viewUrl>" .
             ts('View') . "</a></span>";