PluginTrackerIf
Related: PluginTrackerToggle and PluginTrackerItemField
New in Tiki7
Test a tracker field value
Required parameters are in bold
Preferences required: wikiplugin_trackerif, feature_trackers, wikiplugin_tracker
| Parameters | Accepted Values | Description | Default | Since |
| test | Test | |||
| ignore | Ignore test in edit mode | y |
Usage:
copied from source code, not tested
{TRACKERIF(test="(...)")}{ELSE}{TRACKERIF}
test can be for example :
- (1=1)
- (1!=2)
- (2>1)
- (1<2)
- (3>=2)
- (2<=4)
- (f_xx=some_value) where xx is a field id in the tracker
- (f_xx=*value) f_xx must ends with value
- (f_xx=value*) f_xx must starts with value
- (f_xx=*value*) f_xx must contain value
- (&(f_xx=value)(f_yy=other_value)) test A and test B
- (|(f_xx=value)(f_yy=other_value)) test A or test B