From: Mathieu Lutfy Date: Mon, 13 Dec 2021 12:07:17 +0000 (-0500) Subject: Standalone: Towards Gencode support (findConfigTemplate, based on code by DaveD) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0957abf3b9fbaab58bec80b857b93864807cf360;p=civicrm-core.git Standalone: Towards Gencode support (findConfigTemplate, based on code by DaveD) --- diff --git a/CRM/Core/CodeGen/Config.php b/CRM/Core/CodeGen/Config.php index 7170330425..6f6f442f17 100644 --- a/CRM/Core/CodeGen/Config.php +++ b/CRM/Core/CodeGen/Config.php @@ -65,6 +65,10 @@ class CRM_Core_CodeGen_Config extends CRM_Core_CodeGen_BaseTask { $candidates[] = "../../../modules/civicrm-drupal/civicrm.config.php.drupal"; break; + case 'standalone': + $candidates[] = "../../../../civicrm.config.php.standalone"; + break; + case 'wordpress': $candidates[] = "../../civicrm.config.php.wordpress"; $candidates[] = "../WordPress/civicrm.config.php.wordpress";