Added ability to change users' in-group settings from the in-group modification screen in bulk.

Added Agent Average time stats option to the real-time screen. Must enable realtime_agent_time_stats option in campaign screen.
Added customer park time counter to the agent screen when customer is on park. Also, added logging of parked calls to park_log table
Added agents in Dispo count to real-time screen
Fixed backward compatibility issue with QM recording retrieval and live monitoring
Added new 855 toll free code to example dialplan(commented out)
Fixed missing variables in Start and Dispo call url functions

git-svn-id: svn://192.168.202.10@1539 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2010-10-25 01:17:14 +00:00
parent e0ac785e72
commit f110dced3c
21 changed files with 568 additions and 105 deletions
@@ -26,6 +26,7 @@
# 100802-2127 - Changed Admin to point to links page instead of Phones listings
# 100831-2255 - Added password strength checking function
# 100914-1311 - Removed other links for reports-only users
# 101022-1323 - Added IGU_selectall function
#
@@ -573,6 +574,31 @@ if ( ($ADD==131111111) or ($ADD==331111111) or ($ADD==431111111) )
}
### Javascript for shift end-time calculation and display
if ( ($ADD==3111) or ($ADD==4111) or ($ADD==5111) )
{
?>
function IGU_selectall(temp_count,temp_fields)
{
var fields_array=temp_fields.split('|');
var inc=0;
while (temp_count >= inc)
{
if (fields_array[inc].length > 0)
{
document.getElementById(fields_array[inc]).checked=true;
// document.admin_form.fields_array[inc].checked=true;
}
inc++;
}
}
<?php
}
### select list contents generation for dynamic route displays in call menu and in-group screens
if ( ($ADD==3511) or ($ADD==2511) or ($ADD==2611) or ($ADD==4511) or ($ADD==5511) or ($ADD==3111) or ($ADD==2111) or ($ADD==2011) or ($ADD==4111) or ($ADD==5111) )
{