You are here

function message_order_text_weight in Message 8

Usort callback; Order the form elements by their weight.

File

./message.module, line 126
API functions to manipulate messages.

Code

function message_order_text_weight($a, $b) {
  if ($a['_weight'] == $b['_weight']) {
    return 0;
  }
  return $a['_weight'] < $b['_weight'] ? -1 : 1;
}