Skip to content

Instantly share code, notes, and snippets.

@cgi-caesar
Last active March 24, 2022 14:29
Show Gist options
  • Save cgi-caesar/ccb7be0f46b500eac10f02b0f5dc6004 to your computer and use it in GitHub Desktop.
Save cgi-caesar/ccb7be0f46b500eac10f02b0f5dc6004 to your computer and use it in GitHub Desktop.
aMember (site.php): Sort Items in Active Resources Widget Alphabetically
<?php
Am_Di::getInstance()->hook->add(Am_Event::BEFORE_RENDER, function (Am_Event $e) {
if (stripos($e->getTemplateName(), 'blocks/member-main-resources.phtml') !== false) {
usort($e->getView()->resources, function ($a, $b) {return strtolower($a->title) <=> strtolower($b->title);});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment