commons
6 years ago
dashboard
6 years ago
dialogs
6 years ago
elements
6 years ago
email-lists
6 years ago
embedded
6 years ago
footer
6 years ago
integrations
6 years ago
integrations-page
6 years ago
notices
6 years ago
popup
6 years ago
settings
6 years ago
slidein
6 years ago
sshare
6 years ago
dashboard.php
6 years ago
entries.php
6 years ago
integrations.php
6 years ago
new-optin_success.php
6 years ago
new-social-group.php
6 years ago
settings.php
6 years ago
integrations.php
56 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var Opt_In $this |
| 4 | */ |
| 5 | ?> |
| 6 | |
| 7 | <main class="<?php echo implode( ' ', apply_filters( 'hustle_sui_wrap_class', null ) ); ?>"> |
| 8 | |
| 9 | <div class="sui-header"> |
| 10 | |
| 11 | <h1 class="sui-header-title"><?php esc_html_e( 'Integrations', 'wordpress-popup' ); ?></h1> |
| 12 | <?php self::static_render( 'admin/commons/view-documentation' ); ?> |
| 13 | </div> |
| 14 | |
| 15 | <!-- BOX: Summary --> |
| 16 | <?php self::static_render( 'admin/integrations-page/summary', array( 'sui' => $sui ) ); ?> |
| 17 | |
| 18 | <div class="sui-row"> |
| 19 | |
| 20 | <!-- BOX: Connected Apps --> |
| 21 | <div class="sui-col-md-6"> |
| 22 | |
| 23 | <?php self::static_render( 'admin/integrations-page/connected-apps' ); ?> |
| 24 | |
| 25 | </div> |
| 26 | |
| 27 | <!-- BOX: Available Apps --> |
| 28 | <div class="sui-col-md-6"> |
| 29 | |
| 30 | <?php self::static_render( 'admin/integrations-page/available-apps' ); ?> |
| 31 | |
| 32 | </div> |
| 33 | |
| 34 | </div> |
| 35 | |
| 36 | <!-- Integrations modal --> |
| 37 | <?php self::static_render( 'admin/dialogs/modal-integration' ); ?> |
| 38 | |
| 39 | <!-- Active integration remove modal --> |
| 40 | <?php self::static_render( 'admin/dialogs/remove-active-integration' ); ?> |
| 41 | |
| 42 | <!-- CTCT integration migration modal --> |
| 43 | <?php self::static_render( 'admin/dialogs/modal-migrate-ctct' ); ?> |
| 44 | |
| 45 | <?php |
| 46 | // Global Footer |
| 47 | $this->render( 'admin/footer/footer' ); ?> |
| 48 | |
| 49 | <?php |
| 50 | // DIALOG: Dissmiss migrate tracking notice modal confirmation. |
| 51 | if ( Hustle_Module_Admin::is_show_migrate_tracking_notice() ) { |
| 52 | self::static_render( 'admin/dashboard/dialogs/migrate-dismiss-confirmation' ); |
| 53 | } |
| 54 | ?> |
| 55 | </main> |
| 56 |