Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1382 → Rev 1383

/asterisk-stats/trunk/includes/config.php-dist
1,25 → 1,5
<?php
####################################################
# AstWeb - Asterisk PBX Dynamic config environment #
# #
# Written by: Jamie Carl #
# jazz@funkynerd.com #
# #
# Copyright (C) 2006 Achieve Corp #
# #
# Licence: This software is licenced under the #
# GNU/GPL. Please see licence.txt for #
# more information. #
####################################################
 
/* Configuration settings */
 
$tpl_dir = 'templates';
$img_dir = 'images';
 
$site_title = 'Asterisk Web Interface';
$site_style = 'astweb.css';
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
/asterisk-stats/trunk/includes/defaults.php
0,0 → 1,15
<?php
 
$tpl_dir = 'templates';
$img_dir = 'images';
 
$site_title = 'Asterisk Web Interface';
$site_style = 'style.css';
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
$db_password = 'password';
$db_database = 'asterisk';
 
?>
/asterisk-stats/trunk/includes/common.php
0,0 → 1,9
<?
 
include_once('includes/defaults.php');
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
 
?>