plugins/content/data_handlers/tips.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return function ($params = []) {
    $data = [];
    foreach ((array) db()->from('tips')->get_all() as $a) {
        $data[$a['name']][$a['locale']] = $a;
    }
    return $data;
};