You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
PHTML
46 lines
1.2 KiB
PHTML
7 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* ProcessWire Configuration File
|
||
|
*
|
||
|
* Site-specific configuration for ProcessWire.
|
||
|
* This config.php file was generated by the ProcessExportProfile module.
|
||
|
*
|
||
|
* Please see the file /wire/config.php which contains all configuration options you may
|
||
|
* specify here. Simply copy any of the configuration options from that file and paste
|
||
|
* them into this file in order to modify them.
|
||
|
*
|
||
|
* ProcessWire
|
||
|
* Copyright (C) 2017 by Ryan Cramer
|
||
|
* Licensed under MPL 2.0
|
||
|
*
|
||
|
* https://processwire.com
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
if(!defined("PROCESSWIRE")) die();
|
||
|
|
||
|
/*** SITE CONFIG *************************************************************************/
|
||
|
|
||
|
/**
|
||
|
* Enable debug mode?
|
||
|
*
|
||
|
* Debug mode causes additional info to appear for use during dev and debugging.
|
||
|
* This is almost always recommended for sites in development. However, you should
|
||
|
* always have this disabled for live/production sites.
|
||
|
*
|
||
|
* @var bool
|
||
|
*
|
||
|
*/
|
||
|
$config->debug = false;
|
||
|
|
||
|
$config->prependTemplateFile = '_init.inc';
|
||
|
$config->appendTemplateFile = '_main.inc';
|
||
|
$config->dateFormat = 'd-m-Y H:i:s';
|
||
|
$config->defaultAdminTheme = 'Reno';
|
||
|
|
||
|
|
||
|
/*** INSTALLER CONFIG ********************************************************************/
|
||
|
|
||
|
|