protected function fcIncomplete::sortInstances in Field Complete 7
File
- fc_incomplete/
fc_incomplete.inc, line 81 - Field Incomplete - Provides a block displaying of what's currently incomplete on an entity - support.
Class
Code
protected function sortInstances($a, $b) {
$p = $a['widget']['weight'];
$q = $b['widget']['weight'];
return $p == $q ? 0 : ($p > $q ? 1 : -1);
}