| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) or die(); |
| 4 |
|
| 5 |
/** @var \Gianism\UI\SettingScreen $this */ |
| 6 |
|
| 7 |
foreach ( $this->service->all_services() as $service ) { |
| 8 |
/** @var \Gianism\Service\AbstractService $instance */ |
| 9 |
$instance = $this->service->get( $service ); |
| 10 |
$path = $instance->get_admin_template( 'setup' ); |
| 11 |
if ( $path && file_exists( $path ) ) { |
| 12 |
include $path; |
| 13 |
} |
| 14 |
} |
| 15 |
|