mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-04 06:59:19 +00:00
Add conference recording to CDR page.
Tested and works with regular dialplan conference.
This commit is contained in:
@@ -608,6 +608,13 @@ if (!class_exists('xml_cdr')) {
|
||||
$record_length = urldecode($xml->variables->duration);
|
||||
}
|
||||
}
|
||||
elseif (strlen($xml->variables->conference_recording) > 0) {
|
||||
$conference_recording = urldecode($xml->variables->conference_recording);
|
||||
$record_path = dirname($conference_recording);
|
||||
$record_name = basename($conference_recording);
|
||||
$record_length = urldecode($xml->variables->duration);
|
||||
}
|
||||
|
||||
elseif (strlen($xml->variables->current_application_data) > 0) {
|
||||
$commands = explode(",", urldecode($xml->variables->current_application_data));
|
||||
foreach ($commands as $command) {
|
||||
|
||||
Reference in New Issue
Block a user