ip-address.php
6 years ago
ip-delete.php
6 years ago
ip-retention.php
5 years ago
ip-tracking.php
5 years ago
submissions-account-erasure.php
5 years ago
submissions-privacy.php
6 years ago
submissions-retention.php
5 years ago
tracking-data.php
5 years ago
ip-address.php
43 lines
| 1 | <?php |
| 2 | /** |
| 3 | * IP addresses handling section under the "privacy" tab. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.0.0 |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div class="sui-box-settings-row"> |
| 11 | |
| 12 | <div class="sui-box-settings-col-1"> |
| 13 | <span class="sui-settings-label"><?php esc_html_e( 'IP Address', 'hustle' ); ?></span> |
| 14 | <span class="sui-description"><?php esc_html_e( 'Choose how you want to handle the IP address of your visitors.', 'hustle' ); ?></span> |
| 15 | </div> |
| 16 | |
| 17 | <div class="sui-box-settings-col-2"> |
| 18 | |
| 19 | <?php |
| 20 | // Submission retention. |
| 21 | $this->render( |
| 22 | 'admin/settings/privacy/ip-tracking', |
| 23 | array( 'settings' => $settings ) |
| 24 | ); |
| 25 | ?> |
| 26 | |
| 27 | <?php |
| 28 | // Submission retention. |
| 29 | $this->render( |
| 30 | 'admin/settings/privacy/ip-retention', |
| 31 | array( 'settings' => $settings ) |
| 32 | ); |
| 33 | ?> |
| 34 | |
| 35 | <?php |
| 36 | // Remove IPs From Database. |
| 37 | $this->render( 'admin/settings/privacy/ip-delete' ); |
| 38 | ?> |
| 39 | |
| 40 | </div> |
| 41 | |
| 42 | </div> |
| 43 |