Merge pull request #18437 from colemanw/api4Perms
[civicrm-core.git] / ext / eventcart / eventcart.php
index 41a32d244919e814ed7f90722e74f415d5d95359..9fac71ca9847e27b6fb7c668f2a725c48b602047 100644 (file)
@@ -11,6 +11,15 @@ use CRM_Eventcart_ExtensionUtil as E;
  * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
  */
 function eventcart_civicrm_config(&$config) {
+  if (isset(Civi::$statics[__FUNCTION__])) {
+    return;
+  }
+  Civi::$statics[__FUNCTION__] = 1;
+  // Since as a hidden extension it's always enabled, until this is a "real" extension you can turn off we need to check the legacy setting.
+  if ((bool) Civi::settings()->get('enable_cart')) {
+    Civi::dispatcher()->addListener('hook_civicrm_pageRun', 'CRM_Event_Cart_PageCallback::run');
+  }
+
   _eventcart_civix_civicrm_config($config);
 }
 
@@ -89,19 +98,6 @@ function eventcart_civicrm_managed(&$entities) {
   _eventcart_civix_civicrm_managed($entities);
 }
 
-/**
- * Implements hook_civicrm_caseTypes().
- *
- * Generate a list of case-types.
- *
- * Note: This hook only runs in CiviCRM 4.4+.
- *
- * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_caseTypes
- */
-function eventcart_civicrm_caseTypes(&$caseTypes) {
-  _eventcart_civix_civicrm_caseTypes($caseTypes);
-}
-
 /**
  * Implements hook_civicrm_angularModules().
  *
@@ -135,38 +131,3 @@ function eventcart_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
 function eventcart_civicrm_entityTypes(&$entityTypes) {
   _eventcart_civix_civicrm_entityTypes($entityTypes);
 }
-
-/**
- * Implements hook_civicrm_thems().
- */
-function eventcart_civicrm_themes(&$themes) {
-  _eventcart_civix_civicrm_themes($themes);
-}
-
-// --- Functions below this ship commented out. Uncomment as required. ---
-
-/**
- * Implements hook_civicrm_preProcess().
- *
- * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_preProcess
- */
-//function eventcart_civicrm_preProcess($formName, &$form) {
-//
-//}
-
-/**
- * Implements hook_civicrm_navigationMenu().
- *
- * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_navigationMenu
- */
-//function eventcart_civicrm_navigationMenu(&$menu) {
-//  _eventcart_civix_insert_navigation_menu($menu, 'Mailings', array(
-//    'label' => E::ts('New subliminal message'),
-//    'name' => 'mailing_subliminal_message',
-//    'url' => 'civicrm/mailing/subliminal',
-//    'permission' => 'access CiviMail',
-//    'operator' => 'OR',
-//    'separator' => 0,
-//  ));
-//  _eventcart_civix_navigationMenu($menu);
-//}