Loads menu link entities from the database.
array $mlids: (optional) An array of entity IDs. If omitted, all entities are loaded.
bool $reset: (optional) Whether to reset the internal cache.
array<\Drupal\menu_link\Plugin\Core\Entity\MenuLink> An array of menu link entities indexed by entity IDs.
function menu_link_load_multiple(array $mlids = NULL, $reset = FALSE) {
return entity_load_multiple('menu_link', $mlids, $reset);
}