Ring Group - Edit: Consistency updates for Greeting selection code.
This commit is contained in:
parent
c649b9d7b0
commit
d04343043e
|
|
@ -600,7 +600,7 @@
|
|||
|
||||
//get the sounds
|
||||
$sounds = new sounds;
|
||||
$sounds = $sounds->get();
|
||||
$audio_files = $sounds->get();
|
||||
|
||||
//create token
|
||||
$object = new token;
|
||||
|
|
@ -613,22 +613,22 @@
|
|||
//show the content
|
||||
if (permission_exists('recording_play') || permission_exists('recording_download')) {
|
||||
echo "<script type='text/javascript' language='JavaScript'>\n";
|
||||
echo " function set_playable(id, greeting_selected, greeting_type) {\n";
|
||||
echo " file_ext = greeting_selected.split('.').pop();\n";
|
||||
echo " var audio_file_type = '';\n";
|
||||
echo " function set_playable(id, audio_selected, audio_type) {\n";
|
||||
echo " file_ext = audio_selected.split('.').pop();\n";
|
||||
echo " var mime_type = '';\n";
|
||||
echo " switch (file_ext) {\n";
|
||||
echo " case 'wav': audio_file_type = 'audio/wav'; break;\n";
|
||||
echo " case 'mp3': audio_file_type = 'audio/mpeg'; break;\n";
|
||||
echo " case 'ogg': audio_file_type = 'audio/ogg'; break;\n";
|
||||
echo " case 'wav': mime_type = 'audio/wav'; break;\n";
|
||||
echo " case 'mp3': mime_type = 'audio/mpeg'; break;\n";
|
||||
echo " case 'ogg': mime_type = 'audio/ogg'; break;\n";
|
||||
echo " }\n";
|
||||
echo " if (audio_file_type != '' && (greeting_type == 'recordings' || greeting_type == 'sounds')) {\n";
|
||||
echo " if (greeting_type == 'recordings') {\n";
|
||||
echo " $('#recording_audio_' + id).attr('src', '../recordings/recordings.php?action=download&type=rec&filename=' + greeting_selected);\n";
|
||||
echo " if (mime_type != '' && (audio_type == 'recordings' || audio_type == 'sounds')) {\n";
|
||||
echo " if (audio_type == 'recordings') {\n";
|
||||
echo " $('#recording_audio_' + id).attr('src', '../recordings/recordings.php?action=download&type=rec&filename=' + audio_selected);\n";
|
||||
echo " }\n";
|
||||
echo " else if (greeting_type == 'sounds') {\n";
|
||||
echo " $('#recording_audio_' + id).attr('src', '../switch/sounds.php?action=download&filename=' + greeting_selected);\n";
|
||||
echo " else if (audio_type == 'sounds') {\n";
|
||||
echo " $('#recording_audio_' + id).attr('src', '../switch/sounds.php?action=download&filename=' + audio_selected);\n";
|
||||
echo " }\n";
|
||||
echo " $('#recording_audio_' + id).attr('type', audio_file_type);\n";
|
||||
echo " $('#recording_audio_' + id).attr('type', mime_type);\n";
|
||||
echo " $('#recording_button_' + id).show();\n";
|
||||
echo " }\n";
|
||||
echo " else {\n";
|
||||
|
|
@ -638,6 +638,45 @@
|
|||
echo " }\n";
|
||||
echo "</script>\n";
|
||||
}
|
||||
if (if_group("superadmin")) {
|
||||
echo "<script type='text/javascript' language='JavaScript'>\n";
|
||||
echo " var objs;\n";
|
||||
echo " function toggle_select_input(obj, instance_id){\n";
|
||||
echo " tb=document.createElement('INPUT');\n";
|
||||
echo " tb.type='text';\n";
|
||||
echo " tb.name=obj.name;\n";
|
||||
echo " tb.className='formfld';\n";
|
||||
echo " tb.setAttribute('id', instance_id);\n";
|
||||
echo " tb.setAttribute('style', 'width: ' + obj.offsetWidth + 'px;');\n";
|
||||
if (!empty($on_change)) {
|
||||
echo " tb.setAttribute('onchange', \"".$on_change."\");\n";
|
||||
echo " tb.setAttribute('onkeyup', \"".$on_change."\");\n";
|
||||
}
|
||||
echo " tb.value=obj.options[obj.selectedIndex].value;\n";
|
||||
echo " document.getElementById('btn_select_to_input_' + instance_id).style.display = 'none';\n";
|
||||
echo " tbb=document.createElement('INPUT');\n";
|
||||
echo " tbb.setAttribute('class', 'btn');\n";
|
||||
echo " tbb.setAttribute('style', 'margin-left: 4px;');\n";
|
||||
echo " tbb.type='button';\n";
|
||||
echo " tbb.value=$('<div />').html('◁').text();\n";
|
||||
echo " tbb.objs=[obj,tb,tbb];\n";
|
||||
echo " tbb.onclick=function(){ replace_element(this.objs, instance_id); }\n";
|
||||
echo " obj.parentNode.insertBefore(tb,obj);\n";
|
||||
echo " obj.parentNode.insertBefore(tbb,obj);\n";
|
||||
echo " obj.parentNode.removeChild(obj);\n";
|
||||
echo " replace_element(this.objs, instance_id);\n";
|
||||
echo " }\n";
|
||||
echo " function replace_element(obj, instance_id){\n";
|
||||
echo " obj[2].parentNode.insertBefore(obj[0],obj[2]);\n";
|
||||
echo " obj[0].parentNode.removeChild(obj[1]);\n";
|
||||
echo " obj[0].parentNode.removeChild(obj[2]);\n";
|
||||
echo " document.getElementById('btn_select_to_input_' + instance_id).style.display = 'inline';\n";
|
||||
if (!empty($on_change)) {
|
||||
echo " ".$on_change.";\n";
|
||||
}
|
||||
echo " }\n";
|
||||
echo "</script>\n";
|
||||
}
|
||||
|
||||
echo "<form method='post' name='frm' id='frm'>\n";
|
||||
|
||||
|
|
@ -697,72 +736,31 @@
|
|||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
$instance_id = 'ring_group_greeting';
|
||||
$instance_label = 'greeting';
|
||||
$instance_value = $ring_group_greeting;
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vncell' rowspan='2' valign='top' align='left' nowrap='nowrap'>\n";
|
||||
echo " ".$text['label-greeting']."\n";
|
||||
echo " ".$text['label-'.$instance_label]."\n";
|
||||
echo "</td>\n";
|
||||
echo "<td class='vtable playback_progress_bar_background' id='recording_progress_bar_greeting' style='display: none; border-bottom: none; padding-top: 0 !important; padding-bottom: 0 !important;' align='left'><span class='playback_progress_bar' id='recording_progress_greeting'></span></td>\n";
|
||||
echo "<td class='vtable playback_progress_bar_background' id='recording_progress_bar_".$instance_id."' style='display: none; border-bottom: none; padding-top: 0 !important; padding-bottom: 0 !important;' align='left'><span class='playback_progress_bar' id='recording_progress_".$instance_id."'></span></td>\n";
|
||||
echo "</tr>\n";
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vtable' align='left'>\n";
|
||||
if (if_group("superadmin")) {
|
||||
$destination_id = "ring_group_greeting";
|
||||
$script = "<script>\n";
|
||||
$script .= "var objs;\n";
|
||||
$script .= "\n";
|
||||
$script .= "function changeToInput".$destination_id."(obj){\n";
|
||||
$script .= " tb=document.createElement('INPUT');\n";
|
||||
$script .= " tb.type='text';\n";
|
||||
$script .= " tb.name=obj.name;\n";
|
||||
$script .= " tb.className='formfld';\n";
|
||||
$script .= " tb.setAttribute('id', '".$destination_id."');\n";
|
||||
$script .= " tb.setAttribute('style', 'width: ' + obj.offsetWidth + 'px;');\n";
|
||||
if (!empty($on_change)) {
|
||||
$script .= " tb.setAttribute('onchange', \"".$on_change."\");\n";
|
||||
$script .= " tb.setAttribute('onkeyup', \"".$on_change."\");\n";
|
||||
}
|
||||
$script .= " tb.value=obj.options[obj.selectedIndex].value;\n";
|
||||
$script .= " document.getElementById('btn_select_to_input_".$destination_id."').style.display = 'none';\n";
|
||||
$script .= " tbb=document.createElement('INPUT');\n";
|
||||
$script .= " tbb.setAttribute('class', 'btn');\n";
|
||||
$script .= " tbb.setAttribute('style', 'margin-left: 4px;');\n";
|
||||
$script .= " tbb.type='button';\n";
|
||||
$script .= " tbb.value=$('<div />').html('◁').text();\n";
|
||||
$script .= " tbb.objs=[obj,tb,tbb];\n";
|
||||
$script .= " tbb.onclick=function(){ Replace".$destination_id."(this.objs); }\n";
|
||||
$script .= " obj.parentNode.insertBefore(tb,obj);\n";
|
||||
$script .= " obj.parentNode.insertBefore(tbb,obj);\n";
|
||||
$script .= " obj.parentNode.removeChild(obj);\n";
|
||||
$script .= " Replace".$destination_id."(this.objs);\n";
|
||||
$script .= "}\n";
|
||||
$script .= "\n";
|
||||
$script .= "function Replace".$destination_id."(obj){\n";
|
||||
$script .= " obj[2].parentNode.insertBefore(obj[0],obj[2]);\n";
|
||||
$script .= " obj[0].parentNode.removeChild(obj[1]);\n";
|
||||
$script .= " obj[0].parentNode.removeChild(obj[2]);\n";
|
||||
$script .= " document.getElementById('btn_select_to_input_".$destination_id."').style.display = 'inline';\n";
|
||||
if (!empty($on_change)) {
|
||||
$script .= " ".$on_change.";\n";
|
||||
}
|
||||
$script .= "}\n";
|
||||
$script .= "</script>\n";
|
||||
$script .= "\n";
|
||||
echo $script;
|
||||
}
|
||||
echo "<select name='ring_group_greeting' id='ring_group_greeting' class='formfld' style='width: 200px;' ".(permission_exists('recording_play') || permission_exists('recording_download') ? "onchange=\"recording_reset('greeting'); set_playable('greeting', this.value, this.options[this.selectedIndex].parentNode.getAttribute('data-type'));\"" : null).">\n";
|
||||
echo "<select name='".$instance_id."' id='".$instance_id."' class='formfld' ".(permission_exists('recording_play') || permission_exists('recording_download') ? "onchange=\"recording_reset('".$instance_id."'); set_playable('".$instance_id."', this.value, this.options[this.selectedIndex].parentNode.getAttribute('data-type'));\"" : null).">\n";
|
||||
echo " <option value=''></option>\n";
|
||||
$found = $playable_greeting = false;
|
||||
if (!empty($sounds) && is_array($sounds) && @sizeof($sounds) != 0) {
|
||||
foreach ($sounds as $key => $value) {
|
||||
$found = $playable = false;
|
||||
if (!empty($audio_files) && is_array($audio_files) && @sizeof($audio_files) != 0) {
|
||||
foreach ($audio_files as $key => $value) {
|
||||
echo "<optgroup label=".$text['label-'.$key]." data-type='".$key."'>\n";
|
||||
foreach ($value as $row) {
|
||||
if (!empty($ring_group_greeting) && $ring_group_greeting == $row["value"]) {
|
||||
if (!empty($instance_value) && $instance_value == $row["value"]) {
|
||||
$selected = "selected='selected'";
|
||||
if ($key == 'recordings') {
|
||||
$playable_greeting = '../recordings/recordings.php?action=download&type=rec&filename='.$row["value"];
|
||||
$playable = '../recordings/recordings.php?action=download&type=rec&filename='.$row["value"];
|
||||
}
|
||||
else if ($key == 'sounds') {
|
||||
$playable_greeting = '../switch/sounds.php?action=download&filename='.$row["value"];
|
||||
$playable = '../switch/sounds.php?action=download&filename='.$row["value"];
|
||||
}
|
||||
$found = true;
|
||||
}
|
||||
|
|
@ -774,27 +772,26 @@
|
|||
echo "</optgroup>\n";
|
||||
}
|
||||
}
|
||||
if (if_group("superadmin") && !empty($ring_group_greeting) && !$found) {
|
||||
echo " <option value='".escape($ring_group_greeting)."' selected='selected'>".escape($ring_group_greeting)."</option>\n";
|
||||
if (if_group("superadmin") && !empty($instance_value) && !$found) {
|
||||
echo " <option value='".escape($instance_value)."' selected='selected'>".escape($instance_value)."</option>\n";
|
||||
}
|
||||
unset($selected);
|
||||
echo " </select>\n";
|
||||
if (if_group("superadmin")) {
|
||||
echo "<input type='button' id='btn_select_to_input_".escape($destination_id)."' class='btn' name='' alt='back' onclick='changeToInput".escape($destination_id)."(document.getElementById(\"".escape($destination_id)."\")); this.style.visibility=\"hidden\";' value='◁'>";
|
||||
unset($destination_id);
|
||||
echo "<input type='button' id='btn_select_to_input_".$instance_id."' class='btn' name='' alt='back' onclick='toggle_select_input(document.getElementById(\"".$instance_id."\"), \"".$instance_id."\"); this.style.visibility=\"hidden\";' value='◁'>";
|
||||
}
|
||||
if ((permission_exists('recording_play') || permission_exists('recording_download')) && !empty($playable_greeting)) {
|
||||
switch (pathinfo($playable_greeting, PATHINFO_EXTENSION)) {
|
||||
case 'wav' : $audio_file_type = 'audio/wav'; break;
|
||||
case 'mp3' : $audio_file_type = 'audio/mpeg'; break;
|
||||
case 'ogg' : $audio_file_type = 'audio/ogg'; break;
|
||||
if ((permission_exists('recording_play') || permission_exists('recording_download')) && !empty($playable)) {
|
||||
switch (pathinfo($playable, PATHINFO_EXTENSION)) {
|
||||
case 'wav' : $mime_type = 'audio/wav'; break;
|
||||
case 'mp3' : $mime_type = 'audio/mpeg'; break;
|
||||
case 'ogg' : $mime_type = 'audio/ogg'; break;
|
||||
}
|
||||
}
|
||||
echo "<audio id='recording_audio_greeting' style='display: none;' preload='none' ontimeupdate=\"update_progress('greeting')\" onended=\"recording_reset('greeting');\" src='".($playable_greeting ?? '')."' type='".($audio_file_type ?? '')."'></audio>";
|
||||
echo button::create(['type'=>'button','title'=>$text['label-play'].' / '.$text['label-pause'],'icon'=>$_SESSION['theme']['button_icon_play'],'id'=>'recording_button_greeting','style'=>'display: '.(!empty($audio_file_type) ? 'inline' : 'none'),'onclick'=>"recording_play('greeting')"]);
|
||||
unset($playable_greeting, $audio_file_type);
|
||||
echo "<audio id='recording_audio_".$instance_id."' style='display: none;' preload='none' ontimeupdate=\"update_progress('".$instance_id."')\" onended=\"recording_reset('".$instance_id."');\" src='".($playable ?? '')."' type='".($mime_type ?? '')."'></audio>";
|
||||
echo button::create(['type'=>'button','title'=>$text['label-play'].' / '.$text['label-pause'],'icon'=>$_SESSION['theme']['button_icon_play'],'id'=>'recording_button_'.$instance_id,'style'=>'display: '.(!empty($mime_type) ? 'inline' : 'none'),'onclick'=>"recording_play('".$instance_id."')"]);
|
||||
unset($playable, $mime_type);
|
||||
echo "<br />\n";
|
||||
echo $text['description-greeting']."\n";
|
||||
echo $text['description-'.$instance_label]."\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue