taxList
A function which returns an array of Tax objects.
value = taxList( )
- value - A Tax array result.
Example
Section titled “Example”Get a list of all Tax objects:
<?phpinclude 'taxes.php';$all = taxList();foreach ($all as $tax){ print "$tax->name\n";}?>