Fax Server: Send faxes to multiple recipients at once, customizable 'Subject Tag' for Remote Inbox viewing, preparations for Email-to-Fax functionality.

This commit is contained in:
Nate Jones
2014-11-29 13:32:42 +00:00
parent 3ec3f8ca2e
commit c3f0a450c2
7 changed files with 870 additions and 668 deletions
@@ -0,0 +1,9 @@
<?php
function object_to_array($obj) {
if (!is_object($obj) && !is_array($obj)) { return $obj; }
if (is_object($obj)) { $obj = get_object_vars($obj); }
return array_map('object_to_array', $obj);
}
?>