Files
ViciDialSVN/agc_2-X/trunk/extras/crm_iframe/crm_settings.php
T
mattf aac543d410 Added example code for a CRM Iframe agent screen skin(extras/crm_iframe)
git-svn-id: svn://192.168.202.10@2444 3d104415-ff17-0410-8863-d5cf3c621b8a
2015-12-29 20:19:59 +00:00

45 lines
1.1 KiB
PHP

<?php
# crm_settings.php - settings for crm_example.php and front.php to use
#
# Copyright (C) 2015 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
#
#
# CHANGELOG
# 151229-1556 - First Build
#
# The full URL to the Vicidial Agent Screen, (usually something like "http://server/agc/vicidial.php")
$agent_screen_url = '';
# The full URL to the Vicidial Agent API, (usually something like "http://server/agc/api.php")
$api_url = '';
# The user and pass of a level 8 user that has API and modify lead permissions
$api_user = '';
$api_pass = '';
# The name of the CRM IFRAME that will be used for the CRM portion(default is 'crmagent')
$frame_id = 'crmagent';
# The URL of the CRM welcome page (Don't forget to also set the Start Call URL in your campaign!)
$crm_url = './crm_example.php?stage=welcome';
# The URL of the front page (the page that loads the CRM and Vicidial IFRAMEs)
$front_url = './front.php';
##### interface size parameters #####
# vicidial screen width and height
$agent_screen_width = 1000;
$agent_screen_height = 550;
# vicidial screen width and height
$crm_screen_width = 1100;
$crm_screen_height = 600;
?>