本文整理汇总了PHP中FreePBX::Fax方法的典型用法代码示例。如果您正苦于以下问题:PHP FreePBX::Fax方法的具体用法?PHP FreePBX::Fax怎么用?PHP FreePBX::Fax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FreePBX
的用法示例。
在下文中一共展示了FreePBX::Fax方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fax_save_user
function fax_save_user($faxext, $faxenabled, $faxemail = '', $faxattachformat = 'pdf')
{
return FreePBX::Fax()->saveUser($faxext, $faxenabled, $faxemail, $faxattachformat);
}
示例2: catch
$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);
}