This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<thead> | |
<tr> | |
<th scope="col">user_id</th> | |
<th scope="col">display_order</th> | |
<th scope="col">todo</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Profile users are in multiple groups. | |
* | |
* The expected $sortedArray should be grouped by group_id (which is the key) to array of users who are in that group. | |
* | |
* The only groups that should be in $sortedArray should be ones that exist in $statuses. | |
*/ |