Merge pull request #22096 from yashodha/dev-2962
[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_themes().
19 */
20 function greenwich_civicrm_themes(&$themes) {
21 $themes['greenwich'] = [
22 'ext' => 'civicrm',
23 'title' => 'Greenwich',
24 'help' => ts('CiviCRM 4.x look-and-feel'),
25 ];
26 }
27
28 /**
29 * Implements hook_civicrm_alterBundle().
30 */
31 function greenwich_civicrm_alterBundle(CRM_Core_Resources_Bundle $bundle) {
32 $theme = Civi::service('themes')->getActiveThemeKey();
33 switch ($theme . ':' . $bundle->name) {
34 case 'greenwich:bootstrap3':
35 $bundle->clear();
36 $bundle->addStyleFile('greenwich', 'dist/bootstrap3.css');
37 $bundle->addScriptFile('greenwich', 'extern/bootstrap3/assets/javascripts/bootstrap.min.js', [
38 'translate' => FALSE,
39 ]);
40 $bundle->addScriptFile('greenwich', 'js/noConflict.js', [
41 'translate' => FALSE,
42 ]);
43 break;
44 }
45 }