| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Class for providing data for JS |
| 5 |
*/ |
| 6 |
|
| 7 |
namespace WPSynchro\Utilities\JSData; |
| 8 |
|
| 9 |
class LoadJSData |
| 10 |
{ |
| 11 |
/** |
| 12 |
* Load the standard JS data that we use one multiple pages |
| 13 |
*/ |
| 14 |
public function load() |
| 15 |
{ |
| 16 |
(new OnboardingData())->load(); |
| 17 |
(new UsageReportingData())->load(); |
| 18 |
(new HealthCheckData())->load(); |
| 19 |
(new PageHeaderData())->load(); |
| 20 |
(new AddMigrationWizard())->load(); |
| 21 |
} |
| 22 |
} |
| 23 |
|