1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 17:24:46 +02:00

A few updates in support of new AdminThemeFramework and bump version to 3.0.57

This commit is contained in:
Ryan Cramer
2017-03-24 13:23:36 -04:00
parent 722b504273
commit ec4726b3df
7 changed files with 45 additions and 21 deletions

View File

@@ -1003,6 +1003,7 @@ $config->pageList = array(
* #property bool confirm Notify user if they attempt to navigate away from unsaved changes?
* #property bool ajaxChildren Whether to load the 'children' tab via ajax
* #property bool ajaxParent Whether to load the 'parent' field via ajax
* #property bool editCrumbs Whether or not breadcrumbs load page editor (false=load page list).
*
* @var array
*
@@ -1012,6 +1013,7 @@ $config->pageEdit = array(
'confirm' => true,
'ajaxChildren' => true,
'ajaxParent' => true,
'editCrumbs' => false,
);
@@ -1194,6 +1196,12 @@ $config->https = null;
*/
$config->ajax = false;
/**
* modal: This is automatically set to TRUE when request is in a modal window.
*
*/
$config->modal = false;
/**
* external: This is automatically set to TRUE when PW is externally bootstrapped.
*