PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 2.4.0
Fluent Support – Helpdesk & Customer Support Ticket System v2.4.0
2.4.0 2.3.2 2.3.1 2.3.0 2.2.1 2.2.0 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.4.0 1.4.1 1.4.2 1.4.5 1.4.6 1.4.7 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 68 releases
← All changes | app/Services/Parser/ShortcodeParser.php +4 -0 1.10.22.4.0 View file →
@@ -101,8 +101,12 @@
101 101 if($valueKey == 'admin_url') {
102 102 return Helper::getTicketAdminUrl($ticket);
103 103 }
104 104
105 + if($valueKey == 'public_id') {
106 + return $ticket->display_ticket_number;
107 + }
108 +
105 109 $accesors = ['id', 'title', 'content', 'priority', 'client_priority', 'status', 'created_at'];
106 110 if(in_array($valueKey, $accesors)) {
107 111 return $ticket->{$valueKey};
108 112 }