edit-field.php
6 years ago
final-integration-form-delete.php
7 years ago
modal-integration.php
7 years ago
modal-migrate-ctct.php
6 years ago
modal-settings-edit-palette.php
6 years ago
optin-fields.php
6 years ago
preview-dialog.php
7 years ago
remove-active-integration.php
7 years ago
remove-active-integration.php
118 lines
| 1 | <div |
| 2 | id="hustle-dialog--remove-active" |
| 3 | class="sui-dialog sui-dialog-alt sui-dialog-sm" |
| 4 | aria-hidden="true" |
| 5 | tabindex="-1" |
| 6 | > |
| 7 | |
| 8 | <div class="sui-dialog-overlay sui-fade-out" data-a11y-dialog-hide="hustle-dialog--remove-active-integration"></div> |
| 9 | |
| 10 | <div |
| 11 | class="sui-dialog-content sui-bounce-out" |
| 12 | aria-labelledby="dialogTitle" |
| 13 | aria-describedby="dialogDescription" |
| 14 | role="dialog" |
| 15 | > |
| 16 | |
| 17 | <div class="sui-box" role="document"> |
| 18 | |
| 19 | <div class="sui-box-header sui-block-content-center"> |
| 20 | |
| 21 | <button class="sui-dialog-back hustle-remove-active-integration-back" aria-label="Back"></button> |
| 22 | |
| 23 | <div id="sui-box-modal-header"></div> |
| 24 | |
| 25 | <div class="sui-dialog-image" aria-hidden="true"></div> |
| 26 | |
| 27 | <button class="sui-dialog-close" data-a11y-dialog-hide="hustle-dialog--remove-active-integration"> |
| 28 | <span class="sui-screen-reader-text"><?php esc_html_e( 'Close this dialog window', 'wordpress-popup' ); ?></span> |
| 29 | </button> |
| 30 | |
| 31 | </div> |
| 32 | |
| 33 | <div class="sui-box-body sui-box-body-slim sui-block-content-center"> |
| 34 | |
| 35 | <div id="sui-box-modal-content"></div> |
| 36 | |
| 37 | <div id="hustle-integration-active-modules" class="hustle-active-module-list"> |
| 38 | |
| 39 | <span class="sui-label" style="padding-left: 10px;"><?php esc_html_e( 'Modules', 'wordpress-popup' ); ?></span> |
| 40 | |
| 41 | <table class="sui-table hui-table--apps-off"> |
| 42 | |
| 43 | <tbody></tbody> |
| 44 | |
| 45 | </table> |
| 46 | |
| 47 | </div> |
| 48 | |
| 49 | </div> |
| 50 | |
| 51 | <div class="sui-box-footer sui-box-footer-center"> |
| 52 | |
| 53 | <button class="sui-button sui-button-ghost " |
| 54 | data-a11y-dialog-hide="hustle-dialog--remove-active-integration-cancel" |
| 55 | id="hustle-remove-active-button-cancel"> |
| 56 | <?php esc_html_e( 'Cancel', 'wordpress-popup' ); ?> |
| 57 | </button> |
| 58 | |
| 59 | <button |
| 60 | id="hustle-remove-active-button" |
| 61 | class="sui-button sui-button-ghost sui-button-red" |
| 62 | > |
| 63 | <span class="sui-loading-text"><?php esc_html_e( 'DISCONNECT ANYWAY', 'wordpress-popup' ); ?><i class="sui-icon-loader sui-loading" aria-hidden="true"></i></span> |
| 64 | </button> |
| 65 | </div> |
| 66 | |
| 67 | </div> |
| 68 | |
| 69 | </div> |
| 70 | |
| 71 | </div> |
| 72 | |
| 73 | <script id="hustle-modules-active-integration-tpl" type="text/template"> |
| 74 | |
| 75 | <tr> |
| 76 | |
| 77 | <td class="sui-table-item-title"> |
| 78 | |
| 79 | <span class="hui-app--wrap"> |
| 80 | <span class="hui-app--title"><i class="sui-icon-{{type}}" aria-hidden="true"></i> {{name}}</span> |
| 81 | <span class="hui-app--link"><a href="{{editUrl}}" target="_blank" class="sui-button-icon"> |
| 82 | <i class="sui-icon-pencil" aria-hidden="true"></i> |
| 83 | <span class="sui-screen-reader-text"><?php esc_html_e( 'Edit your module integrations', 'wordpress-popup' ); ?></span> |
| 84 | </a></span> |
| 85 | </span> |
| 86 | |
| 87 | </td> |
| 88 | |
| 89 | </tr> |
| 90 | |
| 91 | </script> |
| 92 | |
| 93 | <script id="hustle-modules-active-integration-img-tpl" type="text/template"> |
| 94 | |
| 95 | <?php //Image ?> |
| 96 | |
| 97 | <img |
| 98 | src="{{ image }}" |
| 99 | alt="{{ title }}" |
| 100 | class="sui-image sui-image-center" |
| 101 | /> |
| 102 | |
| 103 | </script> |
| 104 | |
| 105 | <script id="hustle-modules-active-integration-header-tpl" type="text/template"> |
| 106 | |
| 107 | <?php // Title ?> |
| 108 | <h3 id="dialogTitle" class="sui-box-title"> <?php esc_html_e( 'Disconnect ', 'wordpress-popup' ); ?> {{ title }}</h3> |
| 109 | |
| 110 | </script> |
| 111 | |
| 112 | <script id="hustle-modules-active-integration-desc-tpl" type="text/template"> |
| 113 | |
| 114 | <?php // Title ?> |
| 115 | <p class="sui-description">{{title}}<?php esc_html_e( " is active (collecting data) on the following modules. Are you sure you wish to disconnect it? Note that if disconnecting this app results into modules without an active app, we'll activate the Hustle's Local List for those modules.", 'wordpress-popup' ); ?></p> |
| 116 | |
| 117 | </script> |
| 118 |