| @@ -99,8 +99,26 @@ | ||
| 99 | 99 | public static $classMap = array ( |
| 100 | 100 | 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
| 101 | 101 | 'Disco\\Ajax\\Ajax' => __DIR__ . '/../..' . '/ajax/Ajax.php', |
| 102 | 102 | 'Disco\\Ajax\\Ajax_Admin' => __DIR__ . '/../..' . '/ajax/Ajax_Admin.php', |
| 103 | + 'Disco\\App\\Analytics\\Controllers\\BaseController' => __DIR__ . '/../..' . '/app/Analytics/Controllers/BaseController.php', | |
| 104 | + 'Disco\\App\\Analytics\\Controllers\\IntentPerformanceController' => __DIR__ . '/../..' . '/app/Analytics/Controllers/IntentPerformanceController.php', | |
| 105 | + 'Disco\\App\\Analytics\\Controllers\\RevenueController' => __DIR__ . '/../..' . '/app/Analytics/Controllers/RevenueController.php', | |
| 106 | + 'Disco\\App\\Analytics\\Controllers\\SummaryController' => __DIR__ . '/../..' . '/app/Analytics/Controllers/SummaryController.php', | |
| 107 | + 'Disco\\App\\Analytics\\Queries\\BaseQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/BaseQuery.php', | |
| 108 | + 'Disco\\App\\Analytics\\Queries\\CampaignQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/CampaignQuery.php', | |
| 109 | + 'Disco\\App\\Analytics\\Queries\\CustomerQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/CustomerQuery.php', | |
| 110 | + 'Disco\\App\\Analytics\\Queries\\IntentQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/IntentQuery.php', | |
| 111 | + 'Disco\\App\\Analytics\\Queries\\OrderQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/OrderQuery.php', | |
| 112 | + 'Disco\\App\\Analytics\\Queries\\ProductQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/ProductQuery.php', | |
| 113 | + 'Disco\\App\\Analytics\\Queries\\RevenueQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/RevenueQuery.php', | |
| 114 | + 'Disco\\App\\Analytics\\Queries\\SummaryQuery' => __DIR__ . '/../..' . '/app/Analytics/Queries/SummaryQuery.php', | |
| 115 | + 'Disco\\App\\Analytics\\Services\\BaseService' => __DIR__ . '/../..' . '/app/Analytics/Services/BaseService.php', | |
| 116 | + 'Disco\\App\\Analytics\\Services\\CampaignService' => __DIR__ . '/../..' . '/app/Analytics/Services/CampaignService.php', | |
| 117 | + 'Disco\\App\\Analytics\\Services\\CustomerService' => __DIR__ . '/../..' . '/app/Analytics/Services/CustomerService.php', | |
| 118 | + 'Disco\\App\\Analytics\\Services\\OrderService' => __DIR__ . '/../..' . '/app/Analytics/Services/OrderService.php', | |
| 119 | + 'Disco\\App\\Analytics\\Services\\ProductService' => __DIR__ . '/../..' . '/app/Analytics/Services/ProductService.php', | |
| 120 | + 'Disco\\App\\Analytics\\Services\\SummaryService' => __DIR__ . '/../..' . '/app/Analytics/Services/SummaryService.php', | |
| 103 | 121 | 'Disco\\App\\Attributes\\AttributeFactory' => __DIR__ . '/../..' . '/app/Attributes/AttributeFactory.php', |
| 104 | 122 | 'Disco\\App\\Attributes\\Cart' => __DIR__ . '/../..' . '/app/Attributes/Cart.php', |
| 105 | 123 | 'Disco\\App\\Attributes\\Customer' => __DIR__ . '/../..' . '/app/Attributes/Customer.php', |
| 106 | 124 | 'Disco\\App\\Attributes\\CustomerHistory' => __DIR__ . '/../..' . '/app/Attributes/CustomerHistory.php', |
| @@ -127,8 +145,11 @@ | ||
| 127 | 145 | 'Disco\\App\\Intents\\BundleIntent' => __DIR__ . '/../..' . '/app/Intents/BundleIntent.php', |
| 128 | 146 | 'Disco\\App\\Intents\\BuyXGetXIntent' => __DIR__ . '/../..' . '/app/Intents/BuyXGetXIntent.php', |
| 129 | 147 | 'Disco\\App\\Intents\\BuyXGetYIntent' => __DIR__ . '/../..' . '/app/Intents/BuyXGetYIntent.php', |
| 130 | 148 | 'Disco\\App\\Intents\\CartIntent' => __DIR__ . '/../..' . '/app/Intents/CartIntent.php', |
| 149 | + 'Disco\\App\\Intents\\CategoryBogo\\CategoryBogo' => __DIR__ . '/../..' . '/app/Intents/CategoryBogo/CategoryBogo.php', | |
| 150 | + 'Disco\\App\\Intents\\CategoryBogo\\CategoryBogoCart' => __DIR__ . '/../..' . '/app/Intents/CategoryBogo/CategoryBogoCart.php', | |
| 151 | + 'Disco\\App\\Intents\\CategoryBogo\\CategoryBogoRules' => __DIR__ . '/../..' . '/app/Intents/CategoryBogo/CategoryBogoRules.php', | |
| 131 | 152 | 'Disco\\App\\Intents\\Intent' => __DIR__ . '/../..' . '/app/Intents/Intent.php', |
| 132 | 153 | 'Disco\\App\\Intents\\IntentFactory' => __DIR__ . '/../..' . '/app/Intents/IntentFactory.php', |
| 133 | 154 | 'Disco\\App\\Intents\\IntentHelper' => __DIR__ . '/../..' . '/app/Intents/IntentHelper.php', |
| 134 | 155 | 'Disco\\App\\Intents\\ProductIntent' => __DIR__ . '/../..' . '/app/Intents/ProductIntent.php', |
| @@ -142,10 +163,12 @@ | ||
| 142 | 163 | 'Disco\\App\\Utility\\Helper' => __DIR__ . '/../..' . '/app/Utility/Helper.php', |
| 143 | 164 | 'Disco\\App\\Utility\\Import' => __DIR__ . '/../..' . '/app/Utility/Import.php', |
| 144 | 165 | 'Disco\\App\\Utility\\Log' => __DIR__ . '/../..' . '/app/Utility/Log.php', |
| 145 | 166 | 'Disco\\App\\Utility\\Model' => __DIR__ . '/../..' . '/app/Utility/Model.php', |
| 167 | + 'Disco\\App\\Utility\\QuantityCounter' => __DIR__ . '/../..' . '/app/Utility/QuantityCounter.php', | |
| 146 | 168 | 'Disco\\App\\Utility\\Search' => __DIR__ . '/../..' . '/app/Utility/Search.php', |
| 147 | 169 | 'Disco\\App\\Utility\\Settings' => __DIR__ . '/../..' . '/app/Utility/Settings.php', |
| 170 | + 'Disco\\App\\Utility\\Value' => __DIR__ . '/../..' . '/app/Utility/Value.php', | |
| 148 | 171 | 'Disco\\Backend\\ActDeact' => __DIR__ . '/../..' . '/backend/ActDeact.php', |
| 149 | 172 | 'Disco\\Backend\\DashboardWidget' => __DIR__ . '/../..' . '/backend/DashboardWidget.php', |
| 150 | 173 | 'Disco\\Backend\\Enqueue' => __DIR__ . '/../..' . '/backend/Enqueue.php', |
| 151 | 174 | 'Disco\\Backend\\Settings_Page' => __DIR__ . '/../..' . '/backend/Settings_Page.php', |
| @@ -157,8 +180,17 @@ | ||
| 157 | 180 | 'Disco\\Frontend\\Extras\\Body_Class' => __DIR__ . '/../..' . '/frontend/Extras/Body_Class.php', |
| 158 | 181 | 'Disco\\Notice\\CompatiblePluginNotice' => __DIR__ . '/../..' . '/notice/CompatiblePluginNotice.php', |
| 159 | 182 | 'Disco\\Notice\\PromotionalNotice' => __DIR__ . '/../..' . '/notice/PromotionalNotice.php', |
| 160 | 183 | 'Disco\\Notice\\ReviewNotice' => __DIR__ . '/../..' . '/notice/ReviewNotice.php', |
| 184 | + 'Disco\\Rest\\AnalyticsApi' => __DIR__ . '/../..' . '/rest/AnalyticsApi.php', | |
| 185 | + 'Disco\\Rest\\Analytics\\Base' => __DIR__ . '/../..' . '/rest/Analytics/Base.php', | |
| 186 | + 'Disco\\Rest\\Analytics\\CampaignsApi' => __DIR__ . '/../..' . '/rest/Analytics/CampaignsApi.php', | |
| 187 | + 'Disco\\Rest\\Analytics\\CustomersApi' => __DIR__ . '/../..' . '/rest/Analytics/CustomersApi.php', | |
| 188 | + 'Disco\\Rest\\Analytics\\IntentApi' => __DIR__ . '/../..' . '/rest/Analytics/IntentApi.php', | |
| 189 | + 'Disco\\Rest\\Analytics\\OrdersApi' => __DIR__ . '/../..' . '/rest/Analytics/OrdersApi.php', | |
| 190 | + 'Disco\\Rest\\Analytics\\ProductsApi' => __DIR__ . '/../..' . '/rest/Analytics/ProductsApi.php', | |
| 191 | + 'Disco\\Rest\\Analytics\\RevenueChartApi' => __DIR__ . '/../..' . '/rest/Analytics/RevenueChartApi.php', | |
| 192 | + 'Disco\\Rest\\Analytics\\SummaryApi' => __DIR__ . '/../..' . '/rest/Analytics/SummaryApi.php', | |
| 161 | 193 | 'Disco\\Rest\\Api' => __DIR__ . '/../..' . '/rest/Api.php', |
| 162 | 194 | 'Disco\\Rest\\CampaignApi' => __DIR__ . '/../..' . '/rest/CampaignApi.php', |
| 163 | 195 | 'Disco\\Rest\\DropDownApi' => __DIR__ . '/../..' . '/rest/DropDownApi.php', |
| 164 | 196 | 'Disco\\Rest\\ImageUploadApi' => __DIR__ . '/../..' . '/rest/ImageUploadApi.php', |