1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-16 03:34:33 +02:00

Various updates primarily related to functions API and profiler support.

This commit is contained in:
Ryan Cramer
2016-10-28 05:41:45 -04:00
parent 5542b77440
commit b4f2dda5fa
17 changed files with 1216 additions and 85 deletions

View File

@@ -111,9 +111,22 @@ $config->advanced = false;
*
* If true, disables save functions in Process modules (admin).
*
* @var bool
*
*/
$config->demo = false;
/**
* Enable core API variables to be accessed as function calls?
*
* Benefits are better type hinting, always in scope, and potentially shorter API calls.
* See the file /wire/core/FunctionsAPI.php for details on these functions.
*
* @var bool
*
*/
$config->useFunctionsAPI = false;
/*** 2. DATES & TIMES *************************************************************************/