Plugin Tracker | |
Overview | |
Use this wiki plugin to create a form for inputting an item into a tracker. You can specify what fields will be included in the form. Since Tiki6, this plugin can also be used as a simple way to create custom forms which output the result as pre-formatted wiki pages instead of tracker items. |
Parameters | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Embed a form to populate a tracker
Note The overwrite parameter is only to overwrite tracker items (not wiki pages) - not useful when discarditem="y" Note 2 When using outputwiki as template you cannot use Smarty syntax programmatically because the resulting output is static wiki page (not computed against an existing Tracker Item like with Pretty Trackers and TrackerLists) - you can use only {$f_XX} to indicate the fields values or Argument variables. |
Administration | |
Warning This plugin can not be used on a cached wiki page. |
Examples | |
Copy to clipboard
|
How to pre-fill some fields | |
In some situation you want to go to a TRACKER page (in our example named SubmitOrder) where fields are automatically pre-filled. In this case you can use an URL like this: When in the page SubmitOrder, you click on Save, and the field 1 will be filled with the value Tip: You could also use the url parameter "prefills" with the corresponding "values". See more information here: See also PluginTrackerList to see how to use the parameter |
How to fill an item in more than one step | |
If you want to fill some fields of an item in a page and to fill some other ones in another page, you need to use the param url with the itemId option. Copy to clipboard
Page2 Copy to clipboard
Page3 - the final one that will display the currently submitted itemId: Copy to clipboard
It is also possible to use tabs and link to each tab using "cookietab". Copy to clipboard
|
How to put multiple tracker plugins into a single transaction? | |
New in Tiki15
The registration and the tracker records of |
How to write a template to display the form elements on the wiki page where the plugin is saved | |
As mentioned, in a template, use the It is also possible to insert the ItemId itself, which is useful to create new wiki pages with tracker plugins inside. To do this you'll have to add an Auto-Increment Field to your tracker, with the appropriate options to auto-fill it with the itemId. This new field content (itemId value) can then be inserted in the template with the syntax seen above. Since Tiki 15.1, wiki page templates can be (optionally) used for email notifications using the "wiki:page name tpl" format instead of Mind: |
How to go from TRACKERLIST to TRACKER on this item | |
Copy to clipboard
|
How to send email to a recipient when new tracker item is created | |
You can use the parameter Important From Tiki15 onwards, you need to have:
The format for the email parameter is: from|to|template.
Since Tiki 15 .1, Tracker plugin allows Items List fields to be used as the to or from fields in the email parameter. They will be shown in the form as read only labels. This might be useful in cases such as:
Since Tiki 16.3, email recipients option allows to set fieldId of a UserSelector (including multiple users selected) and GroupSelector. |
Basic plugin usage | |
single recipient, single template Copy to clipboard
single recipient (creator), default site sender, basic default template (for quick proof of concept) Copy to clipboard
single recipient (creator), custom sender, custom template for body, default basic subject Copy to clipboard
single recipient (creator), custom sender, custom template for body, custom subject template Copy to clipboard
|
Advanced plugin usage | |
multiple recipients, single template Copy to clipboard
In this case it will send the same notification to recipient_1, recipient_2 and recipient_3. multiple recipients, multiple templates Copy to clipboard
In this case each recipient will receive a different notification. The recipient_1 will receive email using template_a, recipient_2 will receive email using template_b and recipient_3 will receive email using template_3. creator plus second recipient, two different body templates and two different subjects Copy to clipboard
single recipient (field), custom sender, custom template to fill the tracker plugin, custom template for body, custom subject template Wiki page Copy to clipboard
Template page Copy to clipboard
When filling the form (using the template) the email address from the field 12 will be used as recipient. |
Templates (to create the email subject and email body) | |
Each template needs two files, one for the subject one for the body. All the templates must be in the templates/mail directory or (since Tiki15.1) in wiki pages and specified as "wiki:page name tpl" (you have to include the "tpl" exact word in the name without a dot, and place it, for instance, at the end). Email body and subject naming conventionsThe naming of these files needs to be slightly different depending on whether you use template files on disk or wiki pages as templates. Template files on diskIf you want to use smarty template files on disk:
Example: Copy to clipboard
Note that you don't specify the subject template in the tracker plugin call, but the subject needs to exist with the corresponding name ("mytemplate_subject.tpl" in this case) if you want to have the subject message customized. Wiki pages as Smarty templatesIf you want to use wiki pages as smarty templates:
Example: Copy to clipboard
Note that you don't specify the subject template in the tracker plugin call, but the subject needs to exist with the corresponding name ("page name subject tpl" in this case) if you want to have the subject message customized. Subject templateCopy to clipboard
Where {$f_name} will be the content of the field name, {$server_name} is the domain name and {$mail_trackerName} is the tracker name. Body templateCopy to clipboard
Template - variable listNot all wiki variables work (pretty tracker syntax won’t work).
|
Related pages | |
See also:
|