78 lines
2.9 KiB
PHP
78 lines
2.9 KiB
PHP
<?php
|
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# This file is part of Plume Framework, a simple PHP Application Framework.
|
|
# Copyright (C) 2001-2007 Loic d'Anterroches and contributors.
|
|
#
|
|
# Plume Framework is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Plume Framework 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 Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
# ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
$cfg = array();
|
|
$cfg['test'] = false;
|
|
$cfg['timezone'] = 'Europe/Berlin';
|
|
// Set the debug variable to true to force the recompilation of all
|
|
// the templates each time during development
|
|
$cfg['debug'] = true;
|
|
$cfg['installed_apps'] = array('Pluf');
|
|
// Temporary folder where the script is writing the compiled templates,
|
|
// cached data and other temporary resources.
|
|
// It must be writeable by your webserver instance.
|
|
// It is mandatory if you are using the template system.
|
|
$cfg['tmp_folder'] = '/tmp';
|
|
|
|
// The folder in which the templates of the application are located.
|
|
$cfg['template_folders'] = array(dirname(__FILE__).'/../templates');
|
|
|
|
$cfg['pluf_use_rowpermission'] = true;
|
|
|
|
// Default mimetype of the document your application is sending.
|
|
// It can be overwritten for a given response if needed.
|
|
$cfg['mimetype'] = 'text/html';
|
|
|
|
// Some views for testing.
|
|
$cfg['app_views'] = dirname(__FILE__).'/../app-views.php';
|
|
|
|
// Default database configuration. The database defined here will be
|
|
// directly accessible from Pluf::db() of course it is still possible
|
|
// to open any other number of database connections through Pluf_DB
|
|
$cfg['db_login'] = 'testpluf';
|
|
$cfg['db_password'] = 'testpluf';
|
|
$cfg['db_server'] = 'localhost';
|
|
$cfg['db_database'] = ':memory:';
|
|
|
|
$cfg['app_base'] = '/testapp';
|
|
$cfg['url_format'] = 'simple';
|
|
|
|
$cfg['template_tags'] = array(
|
|
'mytag' => 'Pluf_Template_Tag_Mytag',
|
|
);
|
|
|
|
// Must be shared by all the installed_apps and the core framework.
|
|
// That way you can have several installations of the core framework.
|
|
$cfg['db_table_prefix'] = 'pluf_unit_tests_';
|
|
|
|
// Starting version 4.1 of MySQL the utf-8 support is "correct".
|
|
// The reason of the db_version for MySQL is only for that.
|
|
$cfg['db_version'] = '5.0';
|
|
$cfg['db_engine'] = 'SQLite';
|
|
$cfg['pluf_ab_mongo_db'] = 'pluf_ab_test';
|
|
$cfg['simple_test_path'] = '/home/loa/Vendors/simpletest';
|
|
$cfg['cache_engine'] = 'Pluf_Cache_Memcached';
|
|
return $cfg;
|
|
|