<?php

$prog_name = 'flowmon-web';
$prog_vers = '0.9';

# Database
$database = 'mysql';
$db_host = 'localhost';
$db_user = 'flowmon';
$db_pass = 'flowmon';
$db_name = 'flowstorage';

# Date formatstring
$date_fmt_str = '%Y-%m-%d %T+%Z';
$date_fmt = ('Y-m-d T');

# Chart Styles we support
# Format is Name => filename
# Name is the name of the chart as it appears in the selection menu,
# filename is the name of the plugin defining this chart.
$chart_styles = array(
			'Top Sources' => 'top-src.inc.php',
			'Top Destinations' => 'top-dst.inc.php',
			'Top Source Ports' => 'top-ports-src.inc.php',
			'Top Destination Ports' => 'top-ports-dst.inc.php',
			'Protocol Distribution' => 'proto-dist.inc.php',
	);
