CMS  Version 3.9
reorder_site_map.inc File Reference

Go to the source code of this file.

Variables

 $tx = new DataTransaction()
 
 try
 

Variable Documentation

◆ $tx

$tx = new DataTransaction()

Definition at line 38 of file reorder_site_map.inc.

◆ try

try
Initial value:
{
foreach($_GET["site_map_id"] as $id => $sort_order)
{
checkNumeric($id);
checkNumeric($sort_order);
$siteMap = new SiteMap();
$siteMap->joinTransaction($tx);
$siteMap->filter = new InclusionFilter("site_map_id", "sort_order");
$siteMap->load($id);
$siteMap->sort_order = $sort_order;
$siteMap->save();
}
$tx->commit()

Definition at line 40 of file reorder_site_map.inc.