group-8.x-1.x-dev/src/Plugin/Group/Relation/GroupRelationCollection.php
src/Plugin/Group/Relation/GroupRelationCollection.php
<?php
namespace Drupal\group\Plugin\Group\Relation;
use Drupal\Core\Plugin\DefaultLazyPluginCollection;
/**
* A collection of group relations.
*/
class GroupRelationCollection extends DefaultLazyPluginCollection {
/**
* {@inheritdoc}
*
* Sorts plugins by provider.
*/
public function sortHelper($aID, $bID) {
$a_provider = $this->get($aID)->getRelationType()->getProvider();
$b_provider = $this->get($bID)->getRelationType()->getProvider();
if ($a_provider != $b_provider) {
return strnatcasecmp($a_provider, $b_provider);
}
return parent::sortHelper($aID, $bID);
}
}
