mirror of
https://github.com/processwire/processwire.git
synced 2025-08-18 12:31:17 +02:00
Add the “Regular” site profile to the core as another installation profile option
This commit is contained in:
44
site-regular/config.php
Normal file
44
site-regular/config.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?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 3.x
|
||||
* Copyright (C) 2018 by Ryan Cramer
|
||||
*
|
||||
* 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 = true;
|
||||
|
||||
$config->prependTemplateFile = '_init.php';
|
||||
$config->appendTemplateFile = '_main.php';
|
||||
$config->useMarkupRegions = true;
|
||||
$config->useFunctionsAPI = true;
|
||||
|
||||
|
||||
/*** INSTALLER CONFIG ********************************************************************/
|
||||
|
||||
|
Reference in New Issue
Block a user