LICENSE: AGPLv2
#
# CHANGES
# 90310-0709 - First Build
# 90508-0542 - Added Call Menu option, changed script to use long PHP tags
# 90514-0605 - Added audio prompt selection functions
# 90530-1206 - Changed List Mix to allow for 40 mixes and a default populate option
# 90531-2339 - Added Dynamic options for Call Menu
# 90612-0852 - Changed relative links
# 90635-0943 - Added javascript for dynamic menus in In-Groups
# 90627-0548 - Added no-agent-no-queue options
# 90628-1016 - Added Text-to-speech options
# 90830-2213 - Added Music On Hold options
# 90904-1534 - Added launch_moh_chooser
# 90916-2334 - Added Voicemail options
# 91223-1030 - Added VIDPROMPT options for in-group routing in Call Menus
# 100311-2210 - Added callcard_enabled Admin element
# 100428-1039 - Added custom fields display
# 100507-1339 - Added copy carrier submenu
# 100616-2350 - Added VIDPROMPT call menu options
# 100728-0904 - Changed Lead Loader link to the new 3rd gen lead loader
# 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
# 101107-1133 - Added auto-refresh code
# 110215-1720 - Added the Add a new lead link
# 110322-1228 - Added user ID logged in as next to Logout link
# 110624-1439 - Added Screen Labels sub-section to Admin
# 110831-2048 - Added AC-CID to campaign submenu
# 110922-1707 - Added RA-EXTEN to campaign submenu
# 111015-2305 - Added Contacts menu to Admin
# 111106-0939 - Changes for user group restrictions
# 111116-0208 - Added ALT and ADDR3 in-group handle methods
# 120402-2134 - Changed lead loader link to fourth gen
# 121116-1412 - Added QC functionality
# 121123-0911 - Added Call Times Holidays Inbound functionality
# 121214-2238 - Added email menus
# 130221-1830 - Added Level 8 disable add option
# 130610-1040 - Finalized changing of all ereg instances to preg
# 130615-2314 - Changed Reports only and QC only headers
# 130824-2324 - Changed to mysqli PHP functions
# 140126-1022 - Added VMAIL_NO_INST option
# 140706-0828 - Incorporated QC includes into code
# 141001-2200 - Finalized adding QXZ translation to all admin files
# 141128-1009 - Added code for languages section
# 141230-0927 - Changed single-quote QXZ arguments to double-quotes
# 150227-1614 - Formatting issue #831
# 150307-0915 - Fixes for QXZ
# 150806-1023 - Added code for Admin -> Settings Containers
# 150808-2043 - Added compatibility for custom fields data option
# 151020-0654 - Added Status Groups
# 151203-1922 - Fix for javascript timezone issues in editing of timeclock entries
# 151212-0858 - Added Chat link at top of page
# 160312-1656 - Added FORM_selectall javascript, also used it to replace IGU_selectall
# 160325-1428 - Changed layout of sidebar links
# 160327-0146 - Changes to design
# 160328-1930 - Fixed display bugs
# 160330-1600 - Redesign of Admin sub-menu and added icons
# 160404-0934 - design changes
# 160429-1014 - Added admin_row_click option
# 160507-2324 - Added screen colors section
# 160611-2229 - Added style for diff on admin changes
# 160617-1426 - Added link from screen colors to system settings screen color settings
#
$stmt="SELECT admin_home_url,enable_tts_integration,callcard_enabled,custom_fields_enabled,allow_emails,level_8_disable_add,allow_chats,enable_languages,admin_row_click,admin_screen_colors from system_settings;";
$rslt=mysql_to_mysqli($stmt, $link);
$row=mysqli_fetch_row($rslt);
$admin_home_url_LU = $row[0];
$SSenable_tts_integration = $row[1];
$SScallcard_enabled = $row[2];
$SScustom_fields_enabled = $row[3];
$SSemail_enabled = $row[4];
$SSlevel_8_disable_add = $row[5];
$SSchat_enabled = $row[6];
$SSenable_languages = $row[7];
$SSadmin_row_click = $row[8];
$SSadmin_screen_colors = $row[9];
$SSmenu_background='015B91';
$SSframe_background='D9E6FE';
$SSstd_row1_background='9BB9FB';
$SSstd_row2_background='B9CBFD';
$SSstd_row3_background='8EBCFD';
$SSstd_row4_background='B6D3FC';
$SSstd_row5_background='A3C3D6';
$SSalt_row1_background='BDFFBD';
$SSalt_row2_background='99FF99';
$SSalt_row3_background='CCFFCC';
if ($SSadmin_screen_colors != 'default')
{
$stmt = "SELECT menu_background,frame_background,std_row1_background,std_row2_background,std_row3_background,std_row4_background,std_row5_background,alt_row1_background,alt_row2_background,alt_row3_background,web_logo FROM vicidial_screen_colors where colors_id='$SSadmin_screen_colors';";
$rslt=mysql_to_mysqli($stmt, $link);
if ($DB) {echo "$stmt\n";}
$colors_ct = mysqli_num_rows($rslt);
if ($colors_ct > 0)
{
$row=mysqli_fetch_row($rslt);
$SSmenu_background = $row[0];
$SSframe_background = $row[1];
$SSstd_row1_background = $row[2];
$SSstd_row2_background = $row[3];
$SSstd_row3_background = $row[4];
$SSstd_row4_background = $row[5];
$SSstd_row5_background = $row[6];
$SSalt_row1_background = $row[7];
$SSalt_row2_background = $row[8];
$SSalt_row3_background = $row[9];
$SSweb_logo = $row[10];
}
}
$Mhead_color = $SSstd_row5_background;
$Mmain_bgcolor = $SSmenu_background;
$Mhead_color = $SSstd_row5_background;
$selected_logo = "./images/vicidial_admin_web_logo.png";
$selected_small_logo = "./images/vicidial_admin_web_logo.png";
$logo_new=0;
$logo_old=0;
$logo_small_old=0;
if (file_exists('./images/vicidial_admin_web_logo.png')) {$logo_new++;}
if (file_exists('vicidial_admin_web_logo_small.gif')) {$logo_small_old++;}
if (file_exists('vicidial_admin_web_logo.gif')) {$logo_old++;}
if ($SSweb_logo=='default_new')
{
$selected_logo = "./images/vicidial_admin_web_logo.png";
$selected_small_logo = "./images/vicidial_admin_web_logo.png";
}
if ( ($SSweb_logo=='default_old') and ($logo_old > 0) )
{
$selected_logo = "./vicidial_admin_web_logo.gif";
$selected_small_logo = "./vicidial_admin_web_logo_small.gif";
}
if ( ($SSweb_logo!='default_new') and ($SSweb_logo!='default_old') )
{
if (file_exists("./images/vicidial_admin_web_logo$SSweb_logo"))
{
$selected_logo = "./images/vicidial_admin_web_logo$SSweb_logo";
$selected_small_logo = "./images/vicidial_admin_web_logo$SSweb_logo";
}
}
##### BEGIN populate dynamic header content #####
if ($hh=='users')
{
$users_hh="CLASS=\"head_style_selected\""; $users_fc="$users_font"; $users_bold="$header_selected_bold";
$users_icon="
";
}
else
{
$users_hh="CLASS=\"head_style\""; $users_fc='WHITE'; $users_bold="$header_nonselected_bold";
$users_icon="
";
}
if ($hh=='campaigns')
{
$campaigns_hh="CLASS=\"head_style_selected\""; $campaigns_fc="$campaigns_font"; $campaigns_bold="$header_selected_bold";
$campaigns_icon="
";
}
else
{
$campaigns_hh="CLASS=\"head_style\""; $campaigns_fc='WHITE'; $campaigns_bold="$header_nonselected_bold";
$campaigns_icon="
";
}
if ($hh=='lists')
{
$lists_hh="CLASS=\"head_style_selected\""; $lists_fc="$lists_font"; $lists_bold="$header_selected_bold";
$lists_icon="
";
}
else
{
$lists_hh="CLASS=\"head_style\""; $lists_fc='WHITE'; $lists_bold="$header_nonselected_bold";
$lists_icon="
";
}
if ($hh=='ingroups')
{
$ingroups_hh="CLASS=\"head_style_selected\""; $ingroups_fc="$ingroups_font"; $ingroups_bold="$header_selected_bold";
$inbound_icon="
";
}
else
{
$ingroups_hh="CLASS=\"head_style\""; $ingroups_fc='WHITE'; $ingroups_bold="$header_nonselected_bold";
$inbound_icon="
";
}
if ($hh=='remoteagent')
{
$remoteagent_hh="CLASS=\"head_style_selected\""; $remoteagent_fc="$remoteagent_font"; $remoteagent_bold="$header_selected_bold";
$remoteagents_icon="
";
}
else
{
$remoteagent_hh="CLASS=\"head_style\""; $remoteagent_fc='WHITE'; $remoteagent_bold="$header_nonselected_bold";
$remoteagents_icon="
";
}
if ($hh=='usergroups')
{
$usergroups_hh="CLASS=\"head_style_selected\""; $usergroups_fc="$usergroups_font"; $usergroups_bold="$header_selected_bold";
$usergroups_icon="
";
}
else
{
$usergroups_hh="CLASS=\"head_style\""; $usergroups_fc='WHITE'; $usergroups_bold="$header_nonselected_bold";
$usergroups_icon="
";
}
if ($hh=='scripts')
{
$scripts_hh="CLASS=\"head_style_selected\""; $scripts_fc="$scripts_font"; $scripts_bold="$header_selected_bold";
$scripts_icon="
";
}
else
{
$scripts_hh="CLASS=\"head_style\""; $scripts_fc='WHITE'; $scripts_bold="$header_nonselected_bold";
$scripts_icon="
";
}
if ($hh=='filters')
{
$filters_hh="CLASS=\"head_style_selected\""; $filters_fc="$filters_font"; $filters_bold="$header_selected_bold";
$filters_icon="
";
}
else
{
$filters_hh="CLASS=\"head_style\""; $filters_fc='WHITE'; $filters_bold="$header_nonselected_bold";
$filters_icon="
";
}
if ($hh=='admin')
{
$admin_hh="CLASS=\"head_style_selected\""; $admin_fc="$admin_font"; $admin_bold="$header_selected_bold";
$admin_icon="
";
}
else
{
$admin_hh="CLASS=\"head_style\""; $admin_fc='WHITE'; $admin_bold="$header_nonselected_bold";
$admin_icon="
";
}
if ($hh=='reports')
{
$reports_hh="CLASS=\"head_style_selected\""; $reports_fc="$reports_font"; $reports_bold="$header_selected_bold";
$reports_icon="
";
}
else
{
$reports_hh="CLASS=\"head_style\""; $reports_fc='WHITE'; $reports_bold="$header_nonselected_bold";
$reports_icon="
";
}
if ($hh=='qc')
{
$qc_hh="CLASS=\"head_style_selected\""; $qc_fc="$qc_font"; $qc_bold="$header_selected_bold";
$qc_icon="
";
}
else
{
$qc_hh="CLASS=\"head_style\""; $qc_fc='WHITE'; $qc_bold="$header_nonselected_bold";
$qc_icon="
";
}
##### END populate dynamic header content #####
######################### SMALL HTML HEADER BEGIN #######################################
if($short_header)
{
?>
>
|
|
|
|
|
|
|
|
|
|
|
|
|
0)
{
?>
|
|
\n";
echo "\n";
##### BEGIN - bar chart CSS style #####
?>
\n";
if ( ($SSadmin_modify_refresh > 1) and (preg_match("/^3|^4/",$ADD)) )
{
echo "\n";
}
else
{
echo "\n";
}
echo "\n";
if ($header_font_size < 4) {$header_font_size='12';}
if ($subheader_font_size < 4) {$subheader_font_size='11';}
if ($subcamp_font_size < 4) {$subcamp_font_size='11';}
?>
ALIGN=CENTER VALIGN=MIDDLE>
WIDTH=160>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=999999';\"";} ?>>| >
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=0A';\"";} ?>>| WIDTH=160>
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
$copy_sh="CLASS=\"subhead_style\"";
$search_sh="CLASS=\"subhead_style\"";
$stats_sh="CLASS=\"subhead_style\"";
$status_sh="CLASS=\"subhead_style\"";
$sheet_sh="CLASS=\"subhead_style\"";
$territory_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copy') {$copy_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='search') {$search_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='stats') {$stats_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='status') {$status_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='sheet') {$sheet_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='territory') {$territory_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=0A';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1A';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=550';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='./user_stats.php?user=$user';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='./user_status.php?user=$user';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='./AST_agent_time_sheet.php?agent=$user';\"";} ?>>|
|
0) or ($user_territories_active > 0) )
{ ?>
0) {echo " onclick=\"window.document.location='./user_territories.php?agent=$user';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10';\"";} ?>>| >
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$status_sh="CLASS=\"subhead_style\"";
$hotkey_sh="CLASS=\"subhead_style\"";
$recycle_sh="CLASS=\"subhead_style\"";
$autoalt_sh="CLASS=\"subhead_style\"";
$pause_sh="CLASS=\"subhead_style\"";
$listmix_sh="CLASS=\"subhead_style\"";
$preset_sh="CLASS=\"subhead_style\"";
$accid_sh="CLASS=\"subhead_style\"";
if ($sh=='basic') {$sh='list';}
if ($sh=='detail') {$sh='list';}
if ($sh=='dialstat') {$sh='list';}
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='status') {$status_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='hotkey') {$hotkey_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='recycle') {$recycle_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='autoalt') {$autoalt_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='pause') {$pause_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listmix') {$listmix_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='preset') {$preset_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='accid') {$accid_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=32';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=33';\"";} ?>>
| > |
0)
{
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=35';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=36';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=39';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=37';\"";} ?>>
| > |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=301';\"";} ?>>
| > |
0)
{
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=302';\"";} ?>>
| > |
0)
{
?>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100';\"";} ?>>| > |
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
$search_sh="CLASS=\"subhead_style\"";
$lead_sh="CLASS=\"subhead_style\"";
$load_sh="CLASS=\"subhead_style\"";
$dnc_sh="CLASS=\"subhead_style\"";
$custom_sh="CLASS=\"subhead_style\"";
$cpcust_sh="CLASS=\"subhead_style\"";
if ($LOGdelete_from_dnc > 0) {$DNClink = _QXZ("Add-Delete DNC Number");}
else {$DNClink = _QXZ("Add DNC Number");}
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='search') {$search_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='lead') {$lead_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='load') {$load_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='dnc') {$dnc_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='custom') {$custom_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='cpcust') {$cpcust_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=111';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='admin_search_lead.php';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='admin_modify_lead.php';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=121';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='admin_listloader_fourth_gen.php';\"";} ?>>|
0)
{
$admin_lists_custom = 'admin_lists_custom.php';
if (preg_match("/cf_encrypt/",$SSactive_modules))
{$admin_lists_custom = 'admin_lists_custom_encrypt.php';}
?>
| 0) {echo " onclick=\"window.document.location='$admin_lists_custom ?>';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$admin_lists_custom?action=COPY_FIELDS_FORM';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000000000';\"";} ?>>
| >
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$enter_sh="CLASS=\"subhead_style\"";
$modify_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='enter') {$enter_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='modify') {$modify_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000000000';\"";} ?>>
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000000000';\"";} ?>>
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=341111111111111';\"";} ?>>
|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1000000';\"";} ?>>| >
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1000000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1111111';\"";} ?>>|
|
0)
{
?>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10000000';\"";} ?>>| > |
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10000000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=11111111';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1000';\"";} ?>>| >
|
25)
{
$listIG_sh="CLASS=\"subhead_style\"";
$newIG_sh="CLASS=\"subhead_style\"";
$copyIG_sh="CLASS=\"subhead_style\"";
$listEG_sh="CLASS=\"subhead_style\"";
$newEG_sh="CLASS=\"subhead_style\"";
$copyEG_sh="CLASS=\"subhead_style\"";
$listCG_sh="CLASS=\"subhead_style\"";
$newCG_sh="CLASS=\"subhead_style\"";
$copyCG_sh="CLASS=\"subhead_style\"";
$listDID_sh="CLASS=\"subhead_style\"";
$newDID_sh="CLASS=\"subhead_style\"";
$copyDID_sh="CLASS=\"subhead_style\"";
$didRA_sh="CLASS=\"subhead_style\"";
$listCM_sh="CLASS=\"subhead_style\"";
$newCM_sh="CLASS=\"subhead_style\"";
$copyCM_sh="CLASS=\"subhead_style\"";
$listFPG_sh="CLASS=\"subhead_style\"";
$newFPG_sh="CLASS=\"subhead_style\"";
$addFPG_sh="CLASS=\"subhead_style\"";
if ($sh=='listIG') {$listIG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newIG') {$newIG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copyIG') {$copyIG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listEG') {$listEG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newEG') {$newEG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copyEG') {$copyEG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listCG') {$listCG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newCG') {$newCG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copyCG') {$copyCG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listDID') {$listDID_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newDID') {$newDID_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copyDID') {$copyDID_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='didRA') {$didRA_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listCM') {$listCM_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newCM') {$newCM_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='copyCM') {$copyCM_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listFPG') {$listFPG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newFPG') {$newFPG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='addFPG') {$addFPG_sh="CLASS=\"subhead_style_selected\"";}
if ($LOGdelete_from_dnc > 0) {$FPGlink = _QXZ("Add-Delete FPG Number");}
else {$FPGlink = _QXZ("Add FPG Number");}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1111';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1211';\"";} ?>>|
| |
0)
{
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1800';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1811';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1911';\"";} ?>>|
| |
0)
{
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1900';\"";} ?>>|
Show Chat Groups
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=18111';\"";} ?>>|
Add New Chat Group
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=19111';\"";} ?>>|
Copy Chat Group
| |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1300';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1311';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1411';\"";} ?>>|
0)
{
?>
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1320';\"";} ?>>|
| |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1500';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1511';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1611';\"";} ?>>|
| |
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1700';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1711';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=171';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000';\"";} ?>>| >
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
$hour_sh="CLASS=\"subhead_style\"";
$bulk_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='hour') {$hour_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='bulk') {$bulk_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=111111';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='group_hourly_stats.php';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='user_group_bulk_change.php';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10000';\"";} ?>>| >
|
25)
{
$list_sh="CLASS=\"subhead_style\"";
$new_sh="CLASS=\"subhead_style\"";
$listEG_sh="CLASS=\"subhead_style\"";
$newEG_sh="CLASS=\"subhead_style\"";
if ($sh=='list') {$list_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='new') {$new_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='listEG') {$listEG_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='newEG') {$newEG_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=11111';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=12000';\"";} ?>>|
| 0) {echo " onclick=\"window.document.location='$ADMIN?ADD=12111';\"";} ?>>|
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=999998';\"";} ?>>| >
|
25)
{
$times_sh="CLASS=\"subhead_style\"";
$shifts_sh="CLASS=\"subhead_style\"";
$templates_sh="CLASS=\"subhead_style\"";
$carriers_sh="CLASS=\"subhead_style\"";
$phones_sh="CLASS=\"subhead_style\"";
$server_sh="CLASS=\"subhead_style\"";
$conference_sh="CLASS=\"subhead_style\"";
$settings_sh="CLASS=\"subhead_style\"";
$label_sh="CLASS=\"subhead_style\"";
$colors_sh="CLASS=\"subhead_style\"";
$status_sh="CLASS=\"subhead_style\"";
$audio_sh="CLASS=\"subhead_style\"";
$moh_sh="CLASS=\"subhead_style\"";
$languages_sh="CLASS=\"subhead_style\"";
$soundboard_sh="CLASS=\"subhead_style\"";
$vm_sh="CLASS=\"subhead_style\"";
$tts_sh="CLASS=\"subhead_style\"";
$cc_sh="CLASS=\"subhead_style\"";
$cts_sh="CLASS=\"subhead_style\"";
$sc_sh="CLASS=\"subhead_style\"";
$sg_sh="CLASS=\"subhead_style\"";
$emails_sh="CLASS=\"subhead_style\"";
if ($sh=='times') {$times_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='shifts') {$shifts_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='templates') {$templates_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='carriers') {$carriers_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='phones') {$phones_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='server') {$server_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='conference') {$conference_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='settings') {$settings_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='label') {$label_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='colors') {$colors_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='status') {$status_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='audio') {$audio_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='moh') {$moh_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='languages') {$languages_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='soundboard') {$soundboard_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='vm') {$vm_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='tts') {$tts_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='cc') {$cc_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='cts') {$cts_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='sc') {$sc_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='sg') {$sg_sh="CLASS=\"subhead_style_selected\"";}
if ($sh=='emails') {$emails_sh="CLASS=\"subhead_style_selected\"";}
?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000';\"";} ?>>
COLSPAN=2>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=130000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=10000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=130000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=140000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=1000000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=311111111111111';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=180000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=182000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=321111111111111';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=193000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=170000000000';\"";} ?>>>
|
0)
{ ?>
0) {echo " onclick=\"window.document.location='admin_email_accounts.php';\"";} ?>>>
|
0) or ($SSsounds_central_control_active > 0) )
{ ?>
0) {echo " onclick=\"window.document.location='audio_store.php';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=160000000000';\"";} ?>>>
|
0)
{ ?>
0) {echo " onclick=\"window.document.location='admin_languages.php?ADD=163000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='admin_soundboard.php?ADD=162000000000';\"";} ?>>>
|
0)
{ ?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=150000000000';\"";} ?>>>
|
0)
{ ?>
0) {echo " onclick=\"window.document.location='callcard_admin.php';\"";} ?>>>
|
0)
{ ?>
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=190000000000';\"";} ?>>>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=192000000000';\"";} ?>>>
|
0)
{
?>
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=999999';\"";} ?>>| >
|
|
0) {echo " onclick=\"window.document.location='$ADMIN?ADD=100000000000000';\"";} ?>>
| >
|
25)
{
?>
>
|
|
>
|
|
>
|
|
|
| BGCOLOR=#>
cellpadding=2 cellspacing=0 WIDTH= HEIGHT=15>
>| > | | | ()
"._QXZ("Change language")."";
}
?>
| |
>
25) and (strlen($campaigns_hh) > 25) ) {
?>
>| |
| | |
25) {
?>
>| |
| | | | |
25) {
?>
>| | |
25) {
?>
>| | | | | | |
25) {
?>
>| | | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | | | | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | |
25) and (strlen($admin_hh) > 25) and ($SSenable_languages > 0) ) {
?>
>| | | | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | | |
25) and (strlen($admin_hh) > 25) ) {
?>
>| | |
25) {
?>
>| |
25) {
?>
>| | |
25) {
?>
>| | | |
25) {
?>
>| | |
25) {
?>
>| | |
25) {
?>
>| | |
25) and (!preg_match('/campaign|user/i',$hh) ) ) {
?>
>| | | |
>| | | | |
25) {
?>
>| |
| > |
|
| |