integration-row.php
5 years ago
page-table-connected.php
5 years ago
page-table-not-connected.php
6 years ago
wizard-table-connected.php
5 years ago
wizard-table-not-connected.php
5 years ago
page-table-not-connected.php
30 lines
| 1 | <?php |
| 2 | /** |
| 3 | * List of the providers that aren't globally connected. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.0.0 |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <table class="sui-table hui-table--apps"> |
| 11 | |
| 12 | <tbody> |
| 13 | |
| 14 | <?php foreach ( $providers as $provider ) : ?> |
| 15 | |
| 16 | <?php |
| 17 | $this->render( |
| 18 | 'admin/integrations/integration-row', |
| 19 | array( |
| 20 | 'provider' => $provider, |
| 21 | ) |
| 22 | ); |
| 23 | ?> |
| 24 | |
| 25 | <?php endforeach; ?> |
| 26 | |
| 27 | </tbody> |
| 28 | |
| 29 | </table> |
| 30 |