Tips and Tricks to show AgentTicketFreeText

Moderator: crythias

Locked
jovemfelix
Znuny newbie
Posts: 5
Joined: 04 May 2012, 21:43
Znuny Version: 2.4.7
Real Name: Renato Alves Felix
Company: DPF

Tips and Tricks to show AgentTicketFreeText

Post by jovemfelix »

After trying to show on menu the AgentTicketFreeText (although I try to use the checkbox on SysConfig - but didn't work!) so I replaced the old info about it as bellow:

Go to SysConfig and export the configuration, find at the code :
$Self->xxx {
'Action' => 'AgentTicketFreeText',
};
And replace it with this code

Code: Select all

$Self->{'Ticket::Frontend::MenuModule'}->{'310-FreeText'} =  {
  'Action' => 'AgentTicketFreeText',
  'Description' => 'Change the free fields for this ticket',
  'Link' => 'Action=AgentTicketFreeText;TicketID=$QData{"TicketID"}',
  'Module' => 'Kernel::Output::HTML::TicketMenuGeneric',
  'Name' => 'Free Fields',
  'PopupType' => 'TicketAction',
  'Target' => ''
};
Than you import the File again, go back to SysConfig and mark it as checked!
Locked