Example #1
0
function get_config()
{
    $db = get_connection();
    $conf = $db->config->find();
    if ($conf->count() == 0) {
        return null;
    } else {
        $values = $conf->getNext();
        $config = new Config();
        $config->setValues($values);
        $config->id = $values["_id"];
        return $config;
    }
}