function _signup_cmp_weight in Signup 6.2
Helper function to sort signup panes by their weight key.
1 string reference to '_signup_cmp_weight'
- signup_node_settings_form in includes/
node_settings.inc - Returns the form for the per-node signup settings.
File
- includes/
node_settings.inc, line 239 - Code related to the per-node signup settings form.
Code
function _signup_cmp_weight($a, $b) {
return $a['weight'] - $b['weight'];
}