33 lines
824 B
PHP
33 lines
824 B
PHP
<?php
|
|
# options.php - manually defined options for vicidial admin scripts
|
|
#
|
|
# Copyright (C) 2010 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
|
#
|
|
# rename this file to options.php for the settings here to go into effect
|
|
#
|
|
# CHANGELOG
|
|
# 101216-1043 - First Build
|
|
#
|
|
|
|
# used by the realtime_report.php script
|
|
$webphone_width = '460';
|
|
$webphone_height = '500';
|
|
$webphone_left = '600';
|
|
$webphone_top = '27';
|
|
$webphone_bufw = '250';
|
|
$webphone_bufh = '1';
|
|
$webphone_pad = '10';
|
|
$webphone_clpos = '<BR>';
|
|
|
|
# example using thin webphone
|
|
#$webphone_width = '1135';
|
|
#$webphone_height = '36';
|
|
#$webphone_left = '0';
|
|
#$webphone_top = '50';
|
|
#$webphone_bufw = '1300';
|
|
#$webphone_bufh = '37';
|
|
#$webphone_pad = '0';
|
|
#$webphone_clpos = ' ';
|
|
|
|
?>
|