ShowPerQueueInstructions

From Request Tracker Wiki
Revision as of 13:06, 20 August 2017 by Barton (talk | contribs) (Code formatting cleanup)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Specify Per-Queue instructions before message box

For certain queues, I like to have additional messages for users, telling them exactly what information is needed.

You can create /opt/rt3/local/html/Callbacks/MyCallbacks/Ticket/Create.html/BeforeMessageBox with the following contents:

   % if ( $QueueObj->Name eq 'MyQueue' ) {
        MyQueue Specific Info Here 
   % }
   <%ARGS>
       $QueueObj => undef
   

--Jim Perrin

See Also

CustomizingWithCallbacks