You are here

protected function CrmCoreUserSyncRelationRules::weightCmp in CRM Core 8.3

Same name and namespace in other branches
  1. 8 modules/crm_core_user_sync/src/CrmCoreUserSyncRelationRules.php \Drupal\crm_core_user_sync\CrmCoreUserSyncRelationRules::weightCmp()

Rules weight comparison function.

File

modules/crm_core_user_sync/src/CrmCoreUserSyncRelationRules.php, line 71

Class

CrmCoreUserSyncRelationRules
CrmCoreUserSyncRelation service.

Namespace

Drupal\crm_core_user_sync

Code

protected function weightCmp(array $a, array $b) {
  if ($a['weight'] == $b['weight']) {
    return 0;
  }
  return $a['weight'] < $b['weight'] ? -1 : 1;
}