You are here

function _draggableviews_check_order in DraggableViews 7

Same name and namespace in other branches
  1. 6.3 draggableviews.inc \_draggableviews_check_order()

Detect and Repair Order Values

The nodes order value has to equal with the parents order value.

Parameters

$info: The structured information array. Look at _draggableviews_info(..) to learn more.

1 call to _draggableviews_check_order()
_draggableviews_rebuild_hierarchy in ./draggableviews.inc
Rebuild hierarchy

File

./draggableviews.inc, line 940
Draggableviews processing functions. Rough summary of what functions in this file do:

Code

function _draggableviews_check_order(&$info) {
  foreach ($info['nodes'] as $nid => $prop) {
    _draggableviews_check_node_order($nid, $info);
  }
}