Beispiel #1
0
function callback_list()
{
    $results = sql("SELECT * FROM callback", "getAll", DB_FETCHMODE_ASSOC);
    if (is_array($results)) {
        foreach ($results as $result) {
            // check to see if we have a dept match for the current AMP User.
            if (checkDept($result['deptname'])) {
                // return this item's dialplan destination, and the description
                $allowed[] = $result;
            }
        }
    }
    if (isset($allowed)) {
        return $allowed;
    } else {
        return null;
    }
}
Beispiel #2
0
function cidlookup_list($all = false)
{
    $allowed = array(array('cidlookup_id' => 0, 'description' => _("None"), 'sourcetype' => null));
    $results = sql("SELECT * FROM cidlookup", "getAll", DB_FETCHMODE_ASSOC);
    if (is_array($results)) {
        foreach ($results as $result) {
            // check to see if we have a dept match for the current AMP User.
            if ($all || checkDept($result['deptname'])) {
                // return this item
                $allowed[] = $result;
            }
        }
    }
    return isset($allowed) ? $allowed : null;
}