Пример #1
0
function fax_save_user($faxext, $faxenabled, $faxemail = '', $faxattachformat = 'pdf')
{
    return FreePBX::Fax()->saveUser($faxext, $faxenabled, $faxemail, $faxattachformat);
}
Пример #2
0
        $sql = "UPDATE fax_users SET user = ? WHERE user = ?";
        $sth = \FreePBX::Database()->prepare($sql);
        try {
            $sth->execute(array("a" . $o['id'], $res['user']));
        } catch (\Exception $e) {
            out(sprintf(_("Unable to migrate %s, because [%s]. Please check your 'Fax Recipients' destinations"), $res['user'], $e->getMessage()));
            continue;
        }
        $ma[$res['user']] = $o['id'];
        $sql = "UPDATE fax_incoming SET destination = ? WHERE destination = ?";
        $sth = \FreePBX::Database()->prepare($sql);
        try {
            $sth->execute(array("ext-fax," . $o['id'] . ",1", "ext-fax," . $res['user'] . ",1"));
        } catch (\Exception $e) {
            out(sprintf(_("Unable to migrate %s, because [%s]. Please check your 'Fax Recipients' destinations"), $res['user'], $e->getMessage()));
            continue;
        }
    }
    foreach ($ma as $faxuser => $usermanuser) {
        $sql = "UPDATE fax_users SET user = ? WHERE user = ?";
        $sth = \FreePBX::Database()->prepare($sql);
        $sth->execute(array($usermanuser, "a" . $usermanuser));
    }
    if (!empty($results)) {
        out(_("Finished Migrating fax users to usermanager"));
        $nt = notifications::create();
        $nt->add_critical("fax", "usermanMigrate", _("Inbound Fax Destination Change"), _("Inbound faxes now use User Manager users. Therefore you will need to re-assign all of your destinations that used 'Fax Recipients' to point to User Manager users. You may see broken destinations until this is resolved"), "", true, true);
    }
    \FreePBX::Fax()->setConfig("usermanMigrateArray", $ma);
    \FreePBX::Fax()->setConfig("usermanMigrate", true);
}