Subversion Repositories general

Rev

Rev 1281 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1278 dev 1
<?php
2
####################################################
3
# AstWeb - Asterisk PBX Dynamic config environment #
4
#                                                  #
5
# Written by: Jamie Carl                           #
6
#             jazz@funkynerd.com                   #
7
#                                                  #
8
# Copyright (C) 2006 Achieve Corp                  #
9
#                                                  #
10
# Licence: This software is licenced under the     #
11
#          GNU/GPL.  Please see licence.txt for    #
12
#          more information.                       #
13
####################################################
14
 
15
/* Do NOT touch this! */
16
if ( !defined('IN_ASTWEB') ) {
17
        die("Hacking attempt");
18
}
19
 
20
/* Configuration settings */
21
 
22
$tpl_dir = 'templates';
23
$img_dir = 'images';
24
 
25
$site_title = 'Asterisk Web Interface';
26
$site_style = 'astweb.css';
27
 
28
$includes = 'includes';
29
 
30
$db_type = 'PGSQL';
31
$db_host = 'localhost';
32
$db_user = 'astweb';
33
$db_password = 'password';
34
$db_database = 'asterisk';
35
 
1366 dev 36
// any local specific query
37
function BaseQuery()
38
{
39
	return " dstchannel != ''";
40
}
1278 dev 41
 
42
?>