Changeset 3443066
- Timestamp:
- 01/20/2026 09:01:26 AM (2 months ago)
- File:
-
- 1 edited
-
wp-bannerize-pro/trunk/config/plugin.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-bannerize-pro/trunk/config/plugin.php
r3127458 r3443066 2 2 3 3 return [ 4 /*4 /* 5 5 |-------------------------------------------------------------------------- 6 6 | Logging Configuration … … 15 15 */ 16 16 17 'log' => 'errorlog',17 'log' => 'errorlog', 18 18 19 'log_level' => 'debug',19 'log_level' => 'debug', 20 20 21 /*21 /* 22 22 |-------------------------------------------------------------------------- 23 23 | Screen options … … 28 28 */ 29 29 30 'screen_options' => [],30 'screen_options' => [], 31 31 32 /*32 /* 33 33 |-------------------------------------------------------------------------- 34 34 | Custom Post Types … … 39 39 */ 40 40 41 'custom_post_types' => ['\WPBannerize\CustomPostTypes\WPBannerizeCustomPostType'],41 'custom_post_types' => ['\WPBannerize\CustomPostTypes\WPBannerizeCustomPostType'], 42 42 43 /*43 /* 44 44 |-------------------------------------------------------------------------- 45 45 | Custom Taxonomies … … 50 50 */ 51 51 52 'custom_taxonomy_types' => ['\WPBannerize\CustomTaxonomyTypes\WPBannerizeCustomTaxonomyType'],52 'custom_taxonomy_types' => ['\WPBannerize\CustomTaxonomyTypes\WPBannerizeCustomTaxonomyType'], 53 53 54 55 /* 54 /* 56 55 |-------------------------------------------------------------------------- 57 56 | Shortcodes … … 62 61 */ 63 62 64 'shortcodes' => ['\WPBannerize\Shortcodes\WPBannerizeShortcode'],63 'shortcodes' => ['\WPBannerize\Shortcodes\WPBannerizeShortcode'], 65 64 66 /*65 /* 67 66 |-------------------------------------------------------------------------- 68 67 | Widgets … … 73 72 */ 74 73 75 'widgets' => ['\WPBannerize\Widgets\WPBannerizeWidget'],74 'widgets' => ['\WPBannerize\Widgets\WPBannerizeWidget'], 76 75 77 78 /* 76 /* 79 77 |-------------------------------------------------------------------------- 80 78 | Ajax … … 85 83 */ 86 84 87 'ajax' => [88 '\WPBannerize\Ajax\WPBannerizeAjax',89 '\WPBannerize\Ajax\WPBannerizeAnalyticsAjaxServiceProvider',90 '\WPBannerize\Ajax\OptionsAjaxServiceProvider',91 '\WPBannerize\Ajax\GeoAjaxServiceProvider',92 ],85 'ajax' => [ 86 '\WPBannerize\Ajax\WPBannerizeAjax', 87 '\WPBannerize\Ajax\WPBannerizeAnalyticsAjaxServiceProvider', 88 '\WPBannerize\Ajax\OptionsAjaxServiceProvider', 89 '\WPBannerize\Ajax\GeoAjaxServiceProvider', 90 ], 93 91 94 /*92 /* 95 93 |-------------------------------------------------------------------------- 96 94 | Autoloader Service Providers … … 103 101 */ 104 102 105 'providers' => [ 106 '\WPBannerize\Providers\WPBannerizeServiceProvider', 107 '\WPBannerize\Providers\WPBannerizeFrontendServiceProvider' 108 ] 109 103 'providers' => [ 104 '\WPBannerize\Providers\WPBannerizeServiceProvider', 105 '\WPBannerize\Providers\WPBannerizeFrontendServiceProvider', 106 ], 110 107 ];
Note: See TracChangeset
for help on using the changeset viewer.