Subversion Repositories general

Rev

Rev 1366 | Blame | Last modification | View Log | RSS feed

<?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.                       #
####################################################

/* Do NOT touch this! */
if ( !defined('IN_ASTWEB') ) {
        die("Hacking attempt");
}

/* Configuration settings */

$tpl_dir = 'templates';
$img_dir = 'images';

$site_title = 'Asterisk Web Interface';
$site_style = 'astweb.css';

$includes = 'includes';

$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
$db_password = 'password';
$db_database = 'asterisk';

// any local specific query
function BaseQuery()
{
        return " (dstchannel is null or dstchannel != '')";
}

?>