Record the conference call using the option from conference center.

This commit is contained in:
Mark Crane 2013-01-23 14:48:47 +00:00
parent 499bce0486
commit d92d1e06b5
2 changed files with 3 additions and 18 deletions

View File

@ -42,11 +42,6 @@
$apps[$x]['permissions'][0]['groups'][] = 'admin';
$apps[$x]['permissions'][0]['groups'][] = 'superadmin';
$apps[$x]['permissions'][1]['name'] = 'conferences_active_record';
$apps[$x]['permissions'][1]['groups'][] = 'user';
$apps[$x]['permissions'][1]['groups'][] = 'admin';
$apps[$x]['permissions'][1]['groups'][] = 'superadmin';
$apps[$x]['permissions'][2]['name'] = 'conferences_active_lock';
$apps[$x]['permissions'][2]['groups'][] = 'user';
$apps[$x]['permissions'][2]['groups'][] = 'admin';

View File

@ -143,21 +143,11 @@ else {
$recording_name = $session_uuid.".mp3";
}
if (permission_exists('conferences_active_record')) {
if ($recording == "true") {
echo " <a href='javascript:void(0);' onclick=\"send_cmd('conference_exec.php?cmd=conference&name=".$conference_name."&uuid=".$session_uuid."&data=norecord');\">".$text['button-stop-rec']."</a>&nbsp;\n";
}
else {
echo " <a href='javascript:void(0);' onclick=\"send_cmd('conference_exec.php?cmd=conference&name=".$conference_name."&uuid=".$session_uuid."&data=record');\">".$text['button-start-rec']."</a>&nbsp;\n";
}
if ($recording == "true") {
echo " ".$text['label-recording']." &nbsp;";
}
else {
if ($recording == "true") {
echo " ".$text['label-recording']." &nbsp;";
}
else {
echo " ".$text['label-not-recording']." &nbsp;";
}
echo " ".$text['label-not-recording']." &nbsp;";
}
if (permission_exists('conferences_active_lock')) {
if ($locked == "true") {