PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 7.8.14.2
Hustle – Email Marketing, Lead Generation, Optins, Popups v7.8.14.2
7.8.14.2 7.8.14 7.8.14.1 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 / sshare / wizard.php
wordpress-popup / views / admin / sshare Last commit date
appearance 2 days ago display-options 2 days ago services 2 days ago dashboard.php 2 days ago listing.php 2 days ago wizard.php 2 days ago
wizard.php
86 lines
1 <?php
2 /**
3 * Social sharing wizard.
4 *
5 * @var Opt_In $this
6 *
7 * @package Hustle
8 * @since 4.0.0
9 */
10
11 $module_type = $module->module_type;
12 $module_name = $module->module_name;
13 $appearance_settings = $module->get_design()->to_array();
14 $display_settings = $module->get_display()->to_array();
15 $content_settings = $module->get_content()->to_array();
16 $visibility_settings = $module->get_visibility()->to_array();
17
18 $capitalize_singular = esc_html__( 'Social Share', 'hustle' );
19 $capitalize_plural = esc_html__( 'Social Shares', 'hustle' );
20 $smallcaps_singular = esc_html__( 'social share', 'hustle' );
21 $smallcaps_plural = esc_html__( 'social shares', 'hustle' );
22
23 $this->render(
24 'admin/commons/sui-wizard/wizard',
25 array(
26 'page_id' => 'hustle-module-wizard-view',
27 'page_tab' => $section,
28 'module' => $module,
29 'module_id' => $module_id,
30 'module_name' => $module->module_name,
31 'module_status' => $is_active,
32 'module_type' => $module_type,
33 'capitalize_singular' => $capitalize_singular,
34 'smallcaps_singular' => $smallcaps_singular,
35 'wizard_tabs' => array(
36 'services' => array(
37 'name' => esc_html__( 'Services', 'hustle' ),
38 'template' => 'admin/sshare/services/template',
39 'support' => array(
40 'settings' => $content_settings,
41 'section' => $section,
42 ),
43 ),
44 'display' => array(
45 'name' => esc_html__( 'Display Options', 'hustle' ),
46 'template' => 'admin/sshare/display-options/template',
47 'support' => array(
48 'section' => $section,
49 'shortcode_id' => $module->get_shortcode_id(),
50 'settings' => $display_settings,
51 ),
52 ),
53 'appearance' => array(
54 'name' => esc_html__( 'Appearance', 'hustle' ),
55 'template' => 'admin/sshare/appearance/template',
56 'support' => array(
57 'section' => $section,
58 'module_type' => $module_type,
59 'capitalize_singular' => $capitalize_singular,
60 'smallcaps_singular' => $smallcaps_singular,
61 'display_settings' => $display_settings,
62 'settings' => $appearance_settings,
63 'module' => $module,
64 ),
65 ),
66 'visibility' => array(
67 'name' => esc_html__( 'Visibility', 'hustle' ),
68 'template' => 'admin/commons/sui-wizard/templates/tab-visibility',
69 'support' => array(
70 'section' => $section,
71 'is_active' => $is_active,
72 'module_type' => $module_type,
73 'settings' => $visibility_settings,
74 'smallcaps_singular' => $smallcaps_singular,
75 ),
76 ),
77 ),
78 )
79 );
80
81 // Row: Platform row template.
82 $this->render( 'admin/sshare/services/platform-row', array() );
83
84 // Row: Platform item template.
85 $this->render( 'admin/commons/sui-wizard/dialogs/add-platform-li', array() );
86