PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 6.0
Hustle – Email Marketing, Lead Generation, Optins, Popups v6.0
7.8.13 7.8.13.1 trunk 3.0 3.1 3.1.1 3.1.2 3.1.3 3.1.4 4.3.2 4.4.4 4.4.5 4.4.5.1 4.4.5.4 4.6 4.6.1.1 4.6.1.4 4.7.0.2 4.7.0.3 4.7.0.7 4.7.0.9 4.7.1.0 4.7.1.1 4.8.0.0 5.0.0 5.0.1 5.0.1.1 5.0.1.2 5.1 5.1.1 5.1.2 5.1.3 5.1.3.1 5.1.3.2 5.1.4 5.1.5 6.0 6.0.1 6.0.2 6.0.3 6.0.4.2 6.0.5 6.0.6.1 6.0.7 6.0.8.1 6.0.9 7.0.0.1 7.0.2 7.0.3 7.0.4 7.1.0 7.1.1 7.2.0 7.2.1 7.3.0 7.3.1 7.3.3 7.3.5 7.3.6 7.3.7 7.4.0 7.4.1 7.4.11 7.4.13 7.4.13.1 7.4.2 7.4.3 7.4.4 7.4.5 7.4.5.1 7.4.5.2 7.4.6 7.4.7 7.5.0 7.6.0 7.6.1 7.6.3 7.6.4 7.6.6 7.7.0 7.7.1 7.8.0 7.8.1 7.8.10 7.8.10.1 7.8.10.2 7.8.11 7.8.12 7.8.12.1 7.8.2 7.8.3 7.8.4 7.8.5 7.8.6 7.8.7 7.8.8 7.8.9 7.8.9.1 7.8.9.2 7.8.9.3
wordpress-popup / views / admin / settings.php
wordpress-popup / views / admin Last commit date
common 8 years ago commons 8 years ago dashboard 8 years ago embedded 8 years ago popup 8 years ago provider 8 years ago settings 8 years ago slidein 8 years ago sshare 8 years ago dashboard.php 8 years ago new-free-info.php 8 years ago new-optin_success.php 8 years ago new-social-group.php 8 years ago new-welcome.php 8 years ago settings.php 8 years ago
settings.php
63 lines
1 <?php
2 /**
3 * @var Opt_In_Admin $this
4 */
5 ?>
6
7 <?php if ( count( $modules ) == 0 ) : ?>
8
9 <?php $this->render( "admin/settings/welcome", array( 'user_name' => $user_name ) ); ?>
10
11 <?php else : ?>
12
13 <main id="wpmudev-hustle" class="wpmudev-ui wpmudev-hustle-popup-wizard-view">
14
15 <header id="wpmudev-hustle-title">
16
17 <h1><?php _e( "Settings", Opt_In::TEXT_DOMAIN ); ?></h1>
18
19 </header>
20
21 <section id="wpmudev-hustle-content" class="wpmudev-container">
22
23 <div class="wpmudev-row">
24
25 <div id="wpmudev-settings-activity" class="wpmudev-col col-12 col-sm-6">
26
27 <?php $this->render( "admin/settings/widget-modules", array(
28 "modules" => $modules,
29 "modules_state_toggle_nonce" => $modules_state_toggle_nonce
30 ) ); ?>
31
32 </div><?php // #wpmudev-settings-activity ?>
33
34 <?php if ( $is_e_newsletter_active ){ ?>
35
36 <div id="wpmudev-settings-enews" class="wpmudev-col col-12 col-sm-6">
37
38 <div id="wpmudev-settings-widget-enews" class="wpmudev-box wpmudev-box-close">
39
40 <?php $this->render( "admin/settings/widget-enews", array(
41 "modules" => $modules,
42 "enews_sync_state_toggle_nonce" => $enews_sync_state_toggle_nonce,
43 "enews_sync_setup_nonce" => $enews_sync_setup_nonce,
44 "enews_double_optin_state_toggle_nonce" => $enews_double_optin_state_toggle_nonce
45 ) ); ?>
46
47 <?php $this->render("admin/settings/widget-enews_sync"); ?>
48
49 </div>
50
51 </div>
52
53 <?php } ?>
54
55 </div><?php // .wpmudev-row ?>
56
57 </section>
58
59 <?php $this->render( "admin/commons/footer", array() ); ?>
60
61 </main>
62
63 <?php endif; ?>