DataConverters
4 years ago
Exceptions
4 years ago
Importers
4 years ago
Logger
4 years ago
Config.php
4 years ago
Geoip2.php
4 years ago
Importer.php
4 years ago
RecordInserter.php
4 years ago
Config.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WpMatomo\WpStatistics; |
| 4 | |
| 5 | /** |
| 6 | * @package WpMatomo |
| 7 | * @subpackage WpStatisticsImport |
| 8 | */ |
| 9 | class Config { |
| 10 | |
| 11 | const WP_STATISTICS_DATE_FORMAT = 'Y-m-d'; |
| 12 | |
| 13 | public static function get_importers() { |
| 14 | return [ |
| 15 | 'WpMatomo\WpStatistics\Importers\Actions\PagesImporter', |
| 16 | 'WpMatomo\WpStatistics\Importers\Actions\ReferrersImporter', |
| 17 | 'WpMatomo\WpStatistics\Importers\Actions\UserCountryImporter', |
| 18 | 'WpMatomo\WpStatistics\Importers\Actions\DeviceDetectionImporter', |
| 19 | 'WpMatomo\WpStatistics\Importers\Actions\VisitorsImporter', |
| 20 | 'WpMatomo\WpStatistics\Importers\Actions\VisitsTimeImporter', |
| 21 | ]; |
| 22 | } |
| 23 | } |
| 24 |