Merge pull request #18447 from mlutfy/inheritLocaleRegression
[civicrm-core.git] / ext / greenwich / greenwich.php
1 <?php
2
3 require_once 'greenwich.civix.php';
4 // phpcs:disable
5 use CRM_Greenwich_ExtensionUtil as E;
6 // phpcs:enable
7
8 /**
9 * Implements hook_civicrm_config().
10 *
11 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
12 */
13 function greenwich_civicrm_config(&$config) {
14 _greenwich_civix_civicrm_config($config);
15 }
16
17 ///**
18 // * Implements hook_civicrm_xmlMenu().
19 // *
20 // * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
21 // */
22 //function greenwich_civicrm_xmlMenu(&$files) {
23 // _greenwich_civix_civicrm_xmlMenu($files);
24 //}
25
26 /**
27 * Implements hook_civicrm_alterSettingsFolders().
28 *
29 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
30 */
31 function greenwich_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
32 _greenwich_civix_civicrm_alterSettingsFolders($metaDataFolders);
33 }
34
35 /**
36 * Implements hook_civicrm_themes().
37 */
38 function greenwich_civicrm_themes(&$themes) {
39 // _greenwich_civix_civicrm_themes($themes);
40 $themes['greenwich'] = [
41 'ext' => 'civicrm',
42 'title' => 'Greenwich',
43 'help' => ts('CiviCRM 4.x look-and-feel'),
44 ];
45 }
46
47 /**
48 * Implements hook_civicrm_alterBundle().
49 */
50 function greenwich_civicrm_alterBundle(CRM_Core_Resources_Bundle $bundle) {
51 $theme = Civi::service('themes')->getActiveThemeKey();
52 switch ($theme . ':' . $bundle->name) {
53 case 'greenwich:bootstrap3':
54 $bundle->clear();
55 $bundle->addStyleFile('greenwich', 'dist/bootstrap3.css');
56 $bundle->addScriptFile('greenwich', 'extern/bootstrap3/assets/javascripts/bootstrap.min.js', [
57 'translate' => FALSE,
58 ]);
59 break;
60 }
61 }