From a06ffc2b04f232f1f121eb9bc1fc6497659929c9 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Mon, 14 Sep 2015 17:09:28 -0700 Subject: [PATCH] settings/ - Add comment about critical/bootstrap settings. --- settings/Directory.setting.php | 7 ++++++- settings/Url.setting.php | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/settings/Directory.setting.php b/settings/Directory.setting.php index d7efcda29a..7296bce7c9 100644 --- a/settings/Directory.setting.php +++ b/settings/Directory.setting.php @@ -38,6 +38,7 @@ return array( 'uploadDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'uploadDir', @@ -53,6 +54,7 @@ return array( 'help_text' => 'File system path where temporary CiviCRM files - such as import data files - are uploaded.', ), 'imageUploadDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'imageUploadDir', @@ -68,6 +70,7 @@ return array( 'help_text' => NULL, ), 'customFileUploadDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'customFileUploadDir', @@ -83,6 +86,7 @@ return array( 'help_text' => NULL, ), 'customTemplateDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'customTemplateDir', @@ -98,6 +102,7 @@ return array( 'help_text' => NULL, ), 'customPHPPathDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'customPHPPathDir', @@ -113,6 +118,7 @@ return array( 'help_text' => NULL, ), 'extensionsDir' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group_name' => 'Directory Preferences', 'group' => 'directory', 'name' => 'extensionsDir', @@ -128,5 +134,4 @@ return array( 'help_text' => NULL, ), - ); diff --git a/settings/Url.setting.php b/settings/Url.setting.php index c81fb99be2..21db6495ca 100644 --- a/settings/Url.setting.php +++ b/settings/Url.setting.php @@ -37,6 +37,7 @@ */ return array( 'userFrameworkResourceURL' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group' => 'url', 'group_name' => 'URL Preferences', 'name' => 'userFrameworkResourceURL', @@ -53,6 +54,7 @@ return array( 'validate_callback' => 'CRM_Utils_Rule::urlish', ), 'imageUploadURL' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group' => 'url', 'group_name' => 'URL Preferences', 'title' => 'Image Upload URL', @@ -69,6 +71,7 @@ return array( 'validate_callback' => 'CRM_Utils_Rule::urlish', ), 'customCSSURL' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group' => 'url', 'group_name' => 'URL Preferences', 'name' => 'customCSSURL', @@ -85,6 +88,7 @@ return array( 'validate_callback' => 'CRM_Utils_Rule::urlish', ), 'extensionsURL' => array( + 'bootstrap_comment' => 'This is a boot setting which may be loaded during bootstrap. Defaults and other metadata may not be available during bootstrap.', 'group' => 'url', 'group_name' => 'URL Preferences', 'title' => 'Extension Resource URL', -- 2.25.1