<?php
/*
simpleQuizz made Quizzs simple
Copyright (C) 2008 Mathieu Lory <hide@address.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package simpleQuizz
* @subpackage Settings
* @author Mathieu Lory <hide@address.com>
*/
if (basename($_SERVER["SCRIPT_NAME"])==basename(__FILE__))die();
/**
*
* @package simpleQuizz
*
* @final
*/
final class Settings
{
public static $page_templates_path = "/templates/";
public static $page_templates_path_c = "/cache/";
public static $mail_templates_path = "/templates/mail/";
public static $TXTSQL_DATAS_PREFIX = TXTSQL_DATAS_PREFIX;
public static $DB_HOST = DB_HOST;
public static $DB_NAME = DB_NAME;
public static $DB_USER = DB_USER;
public static $DB_PASS = DB_PASS;
public static $SCORE_GOOD_ANSWER = SCORE_GOOD_ANSWER;
public static $SCORE_BAD_ANSWER = SCORE_BAD_ANSWER;
}
?>