Record the conference call using the option from conference center.
This commit is contained in:
parent
499bce0486
commit
d92d1e06b5
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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> \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> \n";
|
||||
}
|
||||
if ($recording == "true") {
|
||||
echo " ".$text['label-recording']." ";
|
||||
}
|
||||
else {
|
||||
if ($recording == "true") {
|
||||
echo " ".$text['label-recording']." ";
|
||||
}
|
||||
else {
|
||||
echo " ".$text['label-not-recording']." ";
|
||||
}
|
||||
echo " ".$text['label-not-recording']." ";
|
||||
}
|
||||
if (permission_exists('conferences_active_lock')) {
|
||||
if ($locked == "true") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue