Merge pull request #17187 from alexymik/recur_contribution_source
[civicrm-core.git] / setup / plugins / installDatabase / FlushWordPress.civi-setup.php
1 <?php
2 /**
3 * @file
4 *
5 * Configure settings on the newly populated database.
6 */
7
8 if (!defined('CIVI_SETUP')) {
9 exit("Installation plugins must only be loaded by the installer.\n");
10 }
11
12 \Civi\Setup::dispatcher()
13 ->addListener('civi.setup.installDatabase', function (\Civi\Setup\Event\InstallDatabaseEvent $e) {
14 if ($e->getModel()->cms !== 'WordPress') {
15 return;
16 }
17 \Civi\Setup::log()->info(sprintf('[%s] Flush CMS metadata', basename(__FILE__)));
18
19 // Should we set the default permissions -- like in Drupal?
20 }, \Civi\Setup::PRIORITY_LATE + 50);