You are here

function _linkit_sort_plugins_by_weight in Linkit 7.2

Sort plugins by weight.

1 string reference to '_linkit_sort_plugins_by_weight'
_linkit_build_plugin_form_fields in plugins/export_ui/linkit_profiles.inc
Append plugin form element to the setttings form.

File

plugins/export_ui/linkit_profiles.inc, line 163

Code

function _linkit_sort_plugins_by_weight($a, $b) {
  return $a["weight"]['#default_value'] >= $b["weight"]['#default_value'];
}