Wiki source code of RemoveTracking
Version 4.2 by Outhman Moustaghfir on 2024/02/26 17:12
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | == Overview == | ||
2 | |||
3 | The RemoveTracking function is designed to remove a tracking entry from the database based on its trkID and trackingType. | ||
4 | |||
5 | == Syntax == | ||
6 | |||
7 | |||
8 | {{code language="XML"}} | ||
9 | <TEST> <xsl:value-of select="ixf:RemoveTracking('trackingType','trkID')"></xsl:value-of> </TEST> | ||
10 | {{/code}} | ||
11 | |||
12 | * trackingType: The type of tracking to be removed. | ||
13 | * trkID: The unique identifier of the tracking entry. | ||
14 | |||
15 | === Example : Remove Tracking === | ||
16 | |||
17 | {{code language="XML"}} | ||
18 | <TEST> <xsl:value-of select="ixf:RemoveTracking('Product', '65d35436310db513395b30b7')"></xsl:value-of> </TEST> | ||
19 | {{/code}} | ||
20 | |||
21 | This example removes a tracking entry with the type 'Product' and the ID '65d35436310db513395b30b7'. | ||
22 | |||
23 | == Note == | ||
24 | |||
25 | * Ensure that the provided trackingType and trkID values match an existing entry in the database. |