BrowsersConverter.php
4 years ago
DataConverterInterface.php
4 years ago
FilterConverter.php
2 years ago
NumberConverter.php
4 years ago
PagesTitleConverter.php
4 years ago
PagesUrlConverter.php
4 years ago
PlatformConverter.php
4 years ago
ReferrersConverter.php
4 years ago
SearchEngineConverter.php
4 years ago
SearchKeywordConverter.php
4 years ago
SearchQueryConverter.php
4 years ago
SubtableConverter.php
4 years ago
UserCityConverter.php
4 years ago
UserCountryConverter.php
4 years ago
UserRegionConverter.php
4 years ago
VisitorsConverter.php
4 years ago
VisitsTimeConverter.php
4 years ago
DataConverterInterface.php
17 lines
| 1 | <?php |
| 2 | namespace WpMatomo\WpStatistics\DataConverters; |
| 3 | |
| 4 | use Piwik\DataTable; |
| 5 | /** |
| 6 | * @package WpMatomo |
| 7 | * @subpackage WpStatisticsImport |
| 8 | */ |
| 9 | interface DataConverterInterface { |
| 10 | /** |
| 11 | * @param [] $wp_statistics_data |
| 12 | * |
| 13 | * @return DataTable |
| 14 | */ |
| 15 | public static function convert( array $wp_statistics_data); |
| 16 | } |
| 17 |