database_deltree
Brought to you by:
masham
/** Delete a family from the asterisk database
* @param string $family The family name to use
* @return bool True if successful
*/
function database_deltree($family) {
$r = $this->command("database deltree ".str_replace("
","/",$family));
return (bool)strstr($r["data"], "removed");
}
Logged In: YES
user_id=1019629
for php-asmanager.php. Thanks!