Completed
Branch dev (68dcfc)
by
unknown
04:58 queued 02:19
created
admin_pages/events/help_tours/Event_Import_Help_Tour.class.php 2 patches
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -15,60 +15,60 @@
 block discarded – undo
15 15
 class Event_Import_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Import Tour', 'event_espresso');
21
-        $this->_slug = 'event-import-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Import Tour', 'event_espresso');
21
+		$this->_slug = 'event-import-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_stop_one(),
30
-            ),
31
-            20 => array(
32
-                'content' => $this->_stop_two(),
33
-            ),
34
-            30 => array(
35
-                'content' => $this->_stop_three(),
36
-            ),
37
-            40 => array(
38
-                'content' => $this->_stop_four(),
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_stop_one(),
30
+			),
31
+			20 => array(
32
+				'content' => $this->_stop_two(),
33
+			),
34
+			30 => array(
35
+				'content' => $this->_stop_three(),
36
+			),
37
+			40 => array(
38
+				'content' => $this->_stop_four(),
39 39
 
40
-            ),
41
-        );
42
-    }
40
+			),
41
+		);
42
+	}
43 43
 
44 44
 
45
-    protected function _stop_one()
46
-    {
47
-        $content = '<h3>' . __('Import', 'event_espresso') . '</h3>';
48
-        $content .= '<p>' . __('Learn how to import information into Event Espresso.', 'event_espresso') . '</p>';
49
-        return $content;
50
-    }
45
+	protected function _stop_one()
46
+	{
47
+		$content = '<h3>' . __('Import', 'event_espresso') . '</h3>';
48
+		$content .= '<p>' . __('Learn how to import information into Event Espresso.', 'event_espresso') . '</p>';
49
+		return $content;
50
+	}
51 51
 
52
-    protected function _stop_two()
53
-    {
54
-        return '<p>'
55
-               . __(
56
-                   'A sample CSV file can be downloaded by creating an event through the Event Editor and then saving that event. Then return to the Event Overview screen and hover of the name of the event and click on Export.',
57
-                   'event_espresso'
58
-               ) . '</p>';
59
-    }
52
+	protected function _stop_two()
53
+	{
54
+		return '<p>'
55
+			   . __(
56
+				   'A sample CSV file can be downloaded by creating an event through the Event Editor and then saving that event. Then return to the Event Overview screen and hover of the name of the event and click on Export.',
57
+				   'event_espresso'
58
+			   ) . '</p>';
59
+	}
60 60
 
61
-    protected function _stop_three()
62
-    {
63
-        return '<p>'
64
-               . __(
65
-                   'Click on Choose File and browse to the location of your CSV file on your computer.',
66
-                   'event_espresso'
67
-               ) . '</p>';
68
-    }
61
+	protected function _stop_three()
62
+	{
63
+		return '<p>'
64
+			   . __(
65
+				   'Click on Choose File and browse to the location of your CSV file on your computer.',
66
+				   'event_espresso'
67
+			   ) . '</p>';
68
+	}
69 69
 
70
-    protected function _stop_four()
71
-    {
72
-        return '<p>' . __('Click on Upload File.', 'event_espresso') . '</p>';
73
-    }
70
+	protected function _stop_four()
71
+	{
72
+		return '<p>' . __('Click on Upload File.', 'event_espresso') . '</p>';
73
+	}
74 74
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 
45 45
     protected function _stop_one()
46 46
     {
47
-        $content = '<h3>' . __('Import', 'event_espresso') . '</h3>';
48
-        $content .= '<p>' . __('Learn how to import information into Event Espresso.', 'event_espresso') . '</p>';
47
+        $content = '<h3>'.__('Import', 'event_espresso').'</h3>';
48
+        $content .= '<p>'.__('Learn how to import information into Event Espresso.', 'event_espresso').'</p>';
49 49
         return $content;
50 50
     }
51 51
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                . __(
56 56
                    'A sample CSV file can be downloaded by creating an event through the Event Editor and then saving that event. Then return to the Event Overview screen and hover of the name of the event and click on Export.',
57 57
                    'event_espresso'
58
-               ) . '</p>';
58
+               ).'</p>';
59 59
     }
60 60
 
61 61
     protected function _stop_three()
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
                . __(
65 65
                    'Click on Choose File and browse to the location of your CSV file on your computer.',
66 66
                    'event_espresso'
67
-               ) . '</p>';
67
+               ).'</p>';
68 68
     }
69 69
 
70 70
     protected function _stop_four()
71 71
     {
72
-        return '<p>' . __('Click on Upload File.', 'event_espresso') . '</p>';
72
+        return '<p>'.__('Click on Upload File.', 'event_espresso').'</p>';
73 73
     }
74 74
 }
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Default_Settings_Help_Tour.class.php 2 patches
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -15,55 +15,55 @@
 block discarded – undo
15 15
 class Event_Default_Settings_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Default Settings Tour', 'event_espresso');
21
-        $this->_slug = $this->_is_caf ? 'event-default-settings-caf-joyride' : 'event-default-settings-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Default Settings Tour', 'event_espresso');
21
+		$this->_slug = $this->_is_caf ? 'event-default-settings-caf-joyride' : 'event-default-settings-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_stop_one(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'default_reg_status',
33
-                'content' => $this->_stop_two(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'right',
36
-                    'tipAdjustmentY' => -50,
37
-                    'tipAdjustmentX' => 15,
38
-                ),
39
-            ),
40
-        );
41
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_stop_one(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'default_reg_status',
33
+				'content' => $this->_stop_two(),
34
+				'options' => array(
35
+					'tipLocation'    => 'right',
36
+					'tipAdjustmentY' => -50,
37
+					'tipAdjustmentX' => 15,
38
+				),
39
+			),
40
+		);
41
+	}
42 42
 
43 43
 
44
-    protected function _stop_one()
45
-    {
46
-        $content = '<h3>' . __('Event Default Settings', 'event_espresso') . '</h3>';
47
-        $content .= '<p>'
48
-                    . __(
49
-                        'This tour of the Default Settings page will go over different areas of the screen to help you understand what they are used for.',
50
-                        'event_espresso'
51
-                    ) . '</p>';
52
-        return $content;
53
-    }
44
+	protected function _stop_one()
45
+	{
46
+		$content = '<h3>' . __('Event Default Settings', 'event_espresso') . '</h3>';
47
+		$content .= '<p>'
48
+					. __(
49
+						'This tour of the Default Settings page will go over different areas of the screen to help you understand what they are used for.',
50
+						'event_espresso'
51
+					) . '</p>';
52
+		return $content;
53
+	}
54 54
 
55
-    // Options below are showing in full caps. Manually adding statuses and leaving code as is.
56
-    protected function _stop_two()
57
-    {
58
-        return '<p>'
59
-               . sprintf(
60
-                   __(
61
-                       'Specify whether the default registration status be set to Approved, Not Approved, or Pending Payment.',
62
-                       'event_espresso'
63
-                   ),
64
-                   EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, 'lowercase'),
65
-                   EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, 'lowercase'),
66
-                   EEH_Template::pretty_status(EEM_Registration::status_id_approved, 'lowercase')
67
-               ) . '</p>';
68
-    }
55
+	// Options below are showing in full caps. Manually adding statuses and leaving code as is.
56
+	protected function _stop_two()
57
+	{
58
+		return '<p>'
59
+			   . sprintf(
60
+				   __(
61
+					   'Specify whether the default registration status be set to Approved, Not Approved, or Pending Payment.',
62
+					   'event_espresso'
63
+				   ),
64
+				   EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, 'lowercase'),
65
+				   EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, 'lowercase'),
66
+				   EEH_Template::pretty_status(EEM_Registration::status_id_approved, 'lowercase')
67
+			   ) . '</p>';
68
+	}
69 69
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
 
44 44
     protected function _stop_one()
45 45
     {
46
-        $content = '<h3>' . __('Event Default Settings', 'event_espresso') . '</h3>';
46
+        $content = '<h3>'.__('Event Default Settings', 'event_espresso').'</h3>';
47 47
         $content .= '<p>'
48 48
                     . __(
49 49
                         'This tour of the Default Settings page will go over different areas of the screen to help you understand what they are used for.',
50 50
                         'event_espresso'
51
-                    ) . '</p>';
51
+                    ).'</p>';
52 52
         return $content;
53 53
     }
54 54
 
@@ -64,6 +64,6 @@  discard block
 block discarded – undo
64 64
                    EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, 'lowercase'),
65 65
                    EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, 'lowercase'),
66 66
                    EEH_Template::pretty_status(EEM_Registration::status_id_approved, 'lowercase')
67
-               ) . '</p>';
67
+               ).'</p>';
68 68
     }
69 69
 }
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Categories_Help_Tour.class.php 2 patches
Indentation   +134 added lines, -134 removed lines patch added patch discarded remove patch
@@ -16,148 +16,148 @@
 block discarded – undo
16 16
 class Event_Categories_Help_Tour extends EE_Help_Tour
17 17
 {
18 18
 
19
-    protected function _set_tour_properties()
20
-    {
21
-        $this->_label = __('Event Categories Tour', 'event_espresso');
22
-        $this->_slug = 'event-categories-joyride';
23
-    }
19
+	protected function _set_tour_properties()
20
+	{
21
+		$this->_label = __('Event Categories Tour', 'event_espresso');
22
+		$this->_slug = 'event-categories-joyride';
23
+	}
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'id',
33
-                'content' => $this->_id_stop(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentX' => -20,
37
-                    'tipAdjustmentY' => -30,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'name',
42
-                'content' => $this->_name_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentX' => -5,
46
-                    'tipAdjustmentY' => -30,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                'id'      => 'shortcode',
51
-                'content' => $this->_shortcode_stop(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentX' => 5,
55
-                    'tipAdjustmentY' => -30,
56
-                ),
57
-            ),
58
-            50 => array(
59
-                'id'      => 'count',
60
-                'content' => $this->_count_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentX' => 5,
64
-                    'tipAdjustmentY' => -30,
65
-                ),
66
-            ),
67
-            60 => array(
68
-                'class'   => 'bulkactions',
69
-                'content' => $this->_bulk_actions_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentX' => 25,
73
-                    'tipAdjustmentY' => -35,
74
-                ),
75
-            ),
76
-            70 => array(
77
-                'id'      => 'event-espresso_page_espresso_categories-search-input',
78
-                'content' => $this->_search_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'left',
81
-                    'tipAdjustmentY' => -50,
82
-                    'tipAdjustmentX' => -15,
83
-                ),
84
-            ),
85
-            80 => array(
86
-                'id'      => 'add-new-category',
87
-                'content' => $this->_new_category_stop(),
88
-                'options' => array(
89
-                    'tipLocation'    => 'right',
90
-                    'tipAdjustmentY' => -50,
91
-                    'tipAdjustmentX' => 10,
92
-                ),
93
-            ),
94
-        );
95
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'id',
33
+				'content' => $this->_id_stop(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentX' => -20,
37
+					'tipAdjustmentY' => -30,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'name',
42
+				'content' => $this->_name_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentX' => -5,
46
+					'tipAdjustmentY' => -30,
47
+				),
48
+			),
49
+			40 => array(
50
+				'id'      => 'shortcode',
51
+				'content' => $this->_shortcode_stop(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentX' => 5,
55
+					'tipAdjustmentY' => -30,
56
+				),
57
+			),
58
+			50 => array(
59
+				'id'      => 'count',
60
+				'content' => $this->_count_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentX' => 5,
64
+					'tipAdjustmentY' => -30,
65
+				),
66
+			),
67
+			60 => array(
68
+				'class'   => 'bulkactions',
69
+				'content' => $this->_bulk_actions_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentX' => 25,
73
+					'tipAdjustmentY' => -35,
74
+				),
75
+			),
76
+			70 => array(
77
+				'id'      => 'event-espresso_page_espresso_categories-search-input',
78
+				'content' => $this->_search_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'left',
81
+					'tipAdjustmentY' => -50,
82
+					'tipAdjustmentX' => -15,
83
+				),
84
+			),
85
+			80 => array(
86
+				'id'      => 'add-new-category',
87
+				'content' => $this->_new_category_stop(),
88
+				'options' => array(
89
+					'tipLocation'    => 'right',
90
+					'tipAdjustmentY' => -50,
91
+					'tipAdjustmentX' => 10,
92
+				),
93
+			),
94
+		);
95
+	}
96 96
 
97 97
 
98
-    protected function _start()
99
-    {
100
-        $content = '<h3>' . __('Event Categories', 'event_espresso') . '</h3>';
101
-        $content .= '<p>'
102
-                    . __(
103
-                        'This tour of the Event Categories page will provide an overview of the different areas of the screen to help you understand what they are used for.',
104
-                        'event_espresso'
105
-                    ) . '</p>';
106
-        return $content;
107
-    }
98
+	protected function _start()
99
+	{
100
+		$content = '<h3>' . __('Event Categories', 'event_espresso') . '</h3>';
101
+		$content .= '<p>'
102
+					. __(
103
+						'This tour of the Event Categories page will provide an overview of the different areas of the screen to help you understand what they are used for.',
104
+						'event_espresso'
105
+					) . '</p>';
106
+		return $content;
107
+	}
108 108
 
109
-    protected function _id_stop()
110
-    {
111
-        return '<p>'
112
-               . __(
113
-                   'View the event category ID. Can be sorted by ascending or descending order.',
114
-                   'event_espresso'
115
-               ) . '</p>';
116
-    }
109
+	protected function _id_stop()
110
+	{
111
+		return '<p>'
112
+			   . __(
113
+				   'View the event category ID. Can be sorted by ascending or descending order.',
114
+				   'event_espresso'
115
+			   ) . '</p>';
116
+	}
117 117
 
118
-    protected function _name_stop()
119
-    {
120
-        return '<p>'
121
-               . __(
122
-                   'View the name of each event category. Can be sorted by ascending or descending order.',
123
-                   'event_espresso'
124
-               ) . '</p>';
125
-    }
118
+	protected function _name_stop()
119
+	{
120
+		return '<p>'
121
+			   . __(
122
+				   'View the name of each event category. Can be sorted by ascending or descending order.',
123
+				   'event_espresso'
124
+			   ) . '</p>';
125
+	}
126 126
 
127
-    protected function _shortcode_stop()
128
-    {
129
-        return '<p>'
130
-               . __(
131
-                   'View the shortcode for an event. This shortcode can be added to a WordPress post or WordPress page. ',
132
-                   'event_espresso'
133
-               ) . '</p>';
134
-    }
127
+	protected function _shortcode_stop()
128
+	{
129
+		return '<p>'
130
+			   . __(
131
+				   'View the shortcode for an event. This shortcode can be added to a WordPress post or WordPress page. ',
132
+				   'event_espresso'
133
+			   ) . '</p>';
134
+	}
135 135
 
136
-    protected function _count_stop()
137
-    {
138
-        return '<p>'
139
-               . __(
140
-                   'View the number of events that are associated with an event category.',
141
-                   'event_espresso'
142
-               ) . '</p>';
143
-    }
136
+	protected function _count_stop()
137
+	{
138
+		return '<p>'
139
+			   . __(
140
+				   'View the number of events that are associated with an event category.',
141
+				   'event_espresso'
142
+			   ) . '</p>';
143
+	}
144 144
 
145
-    protected function _bulk_actions_stop()
146
-    {
147
-        return '<p>' . __('Perform bulk actions to multiple event categories.', 'event_espresso') . '</p>';
148
-    }
145
+	protected function _bulk_actions_stop()
146
+	{
147
+		return '<p>' . __('Perform bulk actions to multiple event categories.', 'event_espresso') . '</p>';
148
+	}
149 149
 
150
-    protected function _search_stop()
151
-    {
152
-        return '<p>'
153
-               . __(
154
-                   'Search through event categories. The following sources will be searched: Event Category Name, Event Category Description.',
155
-                   'event_espresso'
156
-               ) . '</p>';
157
-    }
150
+	protected function _search_stop()
151
+	{
152
+		return '<p>'
153
+			   . __(
154
+				   'Search through event categories. The following sources will be searched: Event Category Name, Event Category Description.',
155
+				   'event_espresso'
156
+			   ) . '</p>';
157
+	}
158 158
 
159
-    protected function _new_category_stop()
160
-    {
161
-        return '<p>' . __('Click here to add a new event category.', 'event_espresso') . '</p>';
162
-    }
159
+	protected function _new_category_stop()
160
+	{
161
+		return '<p>' . __('Click here to add a new event category.', 'event_espresso') . '</p>';
162
+	}
163 163
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -97,12 +97,12 @@  discard block
 block discarded – undo
97 97
 
98 98
     protected function _start()
99 99
     {
100
-        $content = '<h3>' . __('Event Categories', 'event_espresso') . '</h3>';
100
+        $content = '<h3>'.__('Event Categories', 'event_espresso').'</h3>';
101 101
         $content .= '<p>'
102 102
                     . __(
103 103
                         'This tour of the Event Categories page will provide an overview of the different areas of the screen to help you understand what they are used for.',
104 104
                         'event_espresso'
105
-                    ) . '</p>';
105
+                    ).'</p>';
106 106
         return $content;
107 107
     }
108 108
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
                . __(
113 113
                    'View the event category ID. Can be sorted by ascending or descending order.',
114 114
                    'event_espresso'
115
-               ) . '</p>';
115
+               ).'</p>';
116 116
     }
117 117
 
118 118
     protected function _name_stop()
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                . __(
122 122
                    'View the name of each event category. Can be sorted by ascending or descending order.',
123 123
                    'event_espresso'
124
-               ) . '</p>';
124
+               ).'</p>';
125 125
     }
126 126
 
127 127
     protected function _shortcode_stop()
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                . __(
131 131
                    'View the shortcode for an event. This shortcode can be added to a WordPress post or WordPress page. ',
132 132
                    'event_espresso'
133
-               ) . '</p>';
133
+               ).'</p>';
134 134
     }
135 135
 
136 136
     protected function _count_stop()
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
                . __(
140 140
                    'View the number of events that are associated with an event category.',
141 141
                    'event_espresso'
142
-               ) . '</p>';
142
+               ).'</p>';
143 143
     }
144 144
 
145 145
     protected function _bulk_actions_stop()
146 146
     {
147
-        return '<p>' . __('Perform bulk actions to multiple event categories.', 'event_espresso') . '</p>';
147
+        return '<p>'.__('Perform bulk actions to multiple event categories.', 'event_espresso').'</p>';
148 148
     }
149 149
 
150 150
     protected function _search_stop()
@@ -153,11 +153,11 @@  discard block
 block discarded – undo
153 153
                . __(
154 154
                    'Search through event categories. The following sources will be searched: Event Category Name, Event Category Description.',
155 155
                    'event_espresso'
156
-               ) . '</p>';
156
+               ).'</p>';
157 157
     }
158 158
 
159 159
     protected function _new_category_stop()
160 160
     {
161
-        return '<p>' . __('Click here to add a new event category.', 'event_espresso') . '</p>';
161
+        return '<p>'.__('Click here to add a new event category.', 'event_espresso').'</p>';
162 162
     }
163 163
 }
Please login to merge, or discard this patch.
admin_pages/events/help_tours/New_Features_Test_Help_Tour.class.php 2 patches
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -15,37 +15,37 @@
 block discarded – undo
15 15
 class New_Features_Test_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('New Features Test', 'event_espresso');
21
-        $this->_slug = 'new-features-test';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('New Features Test', 'event_espresso');
21
+		$this->_slug = 'new-features-test';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content'     => $this->_end(),
30
-                'button_text' => __('Quit', 'event_espresso'),
31
-                'options'     => array(
32
-                    'tipLocation'    => 'left',
33
-                    'tipAdjustmentY' => -20,
34
-                    'tipAdjustmentX' => 10,
35
-                ),
36
-            ),
37
-        );
38
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content'     => $this->_end(),
30
+				'button_text' => __('Quit', 'event_espresso'),
31
+				'options'     => array(
32
+					'tipLocation'    => 'left',
33
+					'tipAdjustmentY' => -20,
34
+					'tipAdjustmentX' => 10,
35
+				),
36
+			),
37
+		);
38
+	}
39 39
 
40 40
 
41
-    /**
42
-     * This is the default last stop for all tours that is displayed at the end of a tour OR when a tour is exited for
43
-     * the first time.
44
-     *
45
-     * @return string
46
-     */
47
-    protected function _end()
48
-    {
49
-        return '<p>' . 'This is just testing that multiple tours still work' . '</p>';
50
-    }
41
+	/**
42
+	 * This is the default last stop for all tours that is displayed at the end of a tour OR when a tour is exited for
43
+	 * the first time.
44
+	 *
45
+	 * @return string
46
+	 */
47
+	protected function _end()
48
+	{
49
+		return '<p>' . 'This is just testing that multiple tours still work' . '</p>';
50
+	}
51 51
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,6 +46,6 @@
 block discarded – undo
46 46
      */
47 47
     protected function _end()
48 48
     {
49
-        return '<p>' . 'This is just testing that multiple tours still work' . '</p>';
49
+        return '<p>'.'This is just testing that multiple tours still work'.'</p>';
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Overview_Help_Tour.class.php 2 patches
Indentation   +241 added lines, -241 removed lines patch added patch discarded remove patch
@@ -15,263 +15,263 @@
 block discarded – undo
15 15
 class Event_Overview_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Event Overview Tour', 'event_espresso');
21
-        $this->_slug = $this->_is_caf ? 'event-overview-caf-joyride' : 'event-overview-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Event Overview Tour', 'event_espresso');
21
+		$this->_slug = $this->_is_caf ? 'event-overview-caf-joyride' : 'event-overview-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10  => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20  => array(
32
-                'id'      => 'id',
33
-                'content' => $this->_event_id_stop(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentX' => -20,
37
-                    'tipAdjustmentY' => -30,
38
-                ),
39
-            ),
40
-            30  => array(
41
-                'id'      => 'name',
42
-                'content' => $this->_event_name_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentX' => -5,
46
-                    'tipAdjustmentY' => -30,
47
-                ),
48
-            ),
49
-            40  => array(
50
-                'id'      => 'venue',
51
-                'content' => $this->_event_venue_stop(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentX' => -5,
55
-                    'tipAdjustmentY' => -30,
56
-                ),
57
-            ),
58
-            50  => array(
59
-                'id'      => 'start_date_time',
60
-                'content' => $this->_event_start_date_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentX' => 5,
64
-                    'tipAdjustmentY' => -30,
65
-                ),
66
-            ),
67
-            60  => array(
68
-                'id'      => 'reg_begins',
69
-                'content' => $this->_event_onsale_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentX' => -5,
73
-                    'tipAdjustmentY' => -30,
74
-                ),
75
-            ),
76
-            70  => array(
77
-                'id'      => 'attendees',
78
-                'content' => $this->_event_registrations_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'left',
81
-                    'tipAdjustmentX' => -5,
82
-                    'tipAdjustmentY' => -50,
83
-                ),
84
-            ),
85
-            80  => array(
86
-                'id'      => 'actions',
87
-                'content' => $this->_actions_stop(),
88
-                'options' => array(
89
-                    'tipLocation'    => 'left',
90
-                    'tipAdjustmentX' => 0,
91
-                    'tipAdjustmentY' => -50,
92
-                ),
93
-            ),
94
-            90  => array(
95
-                'class'   => 'ee-list-table-legend-container',
96
-                'content' => $this->_legend_stop(),
97
-                'options' => array(
98
-                    'tipLocation'    => 'top',
99
-                    'tipAdjustmentX' => 15,
100
-                    'tipAdjustmentY' => -30,
101
-                ),
102
-            ),
103
-            100 => array(
104
-                'id'      => 'view-event-archive-page',
105
-                'content' => $this->_stop_archive_button(),
106
-                'options' => array(
107
-                    'tipLocation'    => 'right',
108
-                    'tipAdjustmentY' => -50,
109
-                    'tipAdjustmentX' => 10,
110
-                ),
111
-            ),
112
-            110 => array(
113
-                'class'   => 'subsubsub',
114
-                'content' => $this->_views_stop(),
115
-                'options' => array(
116
-                    'tipLocation'    => 'right',
117
-                    'tipAdjustmentY' => -50,
118
-                    'tipAdjustmentX' => 15,
119
-                ),
120
-            ),
121
-            120 => array(
122
-                'class'   => 'bulkactions',
123
-                'content' => $this->_bulkactions_stop(),
124
-                'options' => array(
125
-                    'tipLocation'    => 'bottom',
126
-                    'tipAdjustmentY' => -30,
127
-                    'tipAdjustmentX' => 15,
128
-                ),
129
-            ),
130
-            130 => array(
131
-                'id'      => 'EVT_CAT',
132
-                'content' => $this->_stop_about_filters(),
133
-                'options' => array(
134
-                    'tipLocation'    => 'top',
135
-                    'tipAdjustmentY' => -40,
136
-                    'tipAdjustmentX' => -5,
137
-                ),
138
-            ),
139
-            140 => array(
140
-                'id'      => 'toplevel_page_espresso_events-search-input',
141
-                'content' => $this->_search_stop(),
142
-                'options' => array(
143
-                    'tipLocation'    => 'left',
144
-                    'tipAdjustmentY' => -50,
145
-                    'tipAdjustmentX' => -15,
146
-                ),
147
-            ),
148
-            150 => array(
149
-                'id'      => 'add-new-event',
150
-                'content' => $this->_add_new_event_stop(),
151
-                'options' => array(
152
-                    'tipLocation'    => 'right',
153
-                    'tipAdjustmentY' => -50,
154
-                    'tipAdjustmentX' => 20,
155
-                ),
156
-            ),
157
-        );
158
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10  => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20  => array(
32
+				'id'      => 'id',
33
+				'content' => $this->_event_id_stop(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentX' => -20,
37
+					'tipAdjustmentY' => -30,
38
+				),
39
+			),
40
+			30  => array(
41
+				'id'      => 'name',
42
+				'content' => $this->_event_name_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentX' => -5,
46
+					'tipAdjustmentY' => -30,
47
+				),
48
+			),
49
+			40  => array(
50
+				'id'      => 'venue',
51
+				'content' => $this->_event_venue_stop(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentX' => -5,
55
+					'tipAdjustmentY' => -30,
56
+				),
57
+			),
58
+			50  => array(
59
+				'id'      => 'start_date_time',
60
+				'content' => $this->_event_start_date_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentX' => 5,
64
+					'tipAdjustmentY' => -30,
65
+				),
66
+			),
67
+			60  => array(
68
+				'id'      => 'reg_begins',
69
+				'content' => $this->_event_onsale_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentX' => -5,
73
+					'tipAdjustmentY' => -30,
74
+				),
75
+			),
76
+			70  => array(
77
+				'id'      => 'attendees',
78
+				'content' => $this->_event_registrations_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'left',
81
+					'tipAdjustmentX' => -5,
82
+					'tipAdjustmentY' => -50,
83
+				),
84
+			),
85
+			80  => array(
86
+				'id'      => 'actions',
87
+				'content' => $this->_actions_stop(),
88
+				'options' => array(
89
+					'tipLocation'    => 'left',
90
+					'tipAdjustmentX' => 0,
91
+					'tipAdjustmentY' => -50,
92
+				),
93
+			),
94
+			90  => array(
95
+				'class'   => 'ee-list-table-legend-container',
96
+				'content' => $this->_legend_stop(),
97
+				'options' => array(
98
+					'tipLocation'    => 'top',
99
+					'tipAdjustmentX' => 15,
100
+					'tipAdjustmentY' => -30,
101
+				),
102
+			),
103
+			100 => array(
104
+				'id'      => 'view-event-archive-page',
105
+				'content' => $this->_stop_archive_button(),
106
+				'options' => array(
107
+					'tipLocation'    => 'right',
108
+					'tipAdjustmentY' => -50,
109
+					'tipAdjustmentX' => 10,
110
+				),
111
+			),
112
+			110 => array(
113
+				'class'   => 'subsubsub',
114
+				'content' => $this->_views_stop(),
115
+				'options' => array(
116
+					'tipLocation'    => 'right',
117
+					'tipAdjustmentY' => -50,
118
+					'tipAdjustmentX' => 15,
119
+				),
120
+			),
121
+			120 => array(
122
+				'class'   => 'bulkactions',
123
+				'content' => $this->_bulkactions_stop(),
124
+				'options' => array(
125
+					'tipLocation'    => 'bottom',
126
+					'tipAdjustmentY' => -30,
127
+					'tipAdjustmentX' => 15,
128
+				),
129
+			),
130
+			130 => array(
131
+				'id'      => 'EVT_CAT',
132
+				'content' => $this->_stop_about_filters(),
133
+				'options' => array(
134
+					'tipLocation'    => 'top',
135
+					'tipAdjustmentY' => -40,
136
+					'tipAdjustmentX' => -5,
137
+				),
138
+			),
139
+			140 => array(
140
+				'id'      => 'toplevel_page_espresso_events-search-input',
141
+				'content' => $this->_search_stop(),
142
+				'options' => array(
143
+					'tipLocation'    => 'left',
144
+					'tipAdjustmentY' => -50,
145
+					'tipAdjustmentX' => -15,
146
+				),
147
+			),
148
+			150 => array(
149
+				'id'      => 'add-new-event',
150
+				'content' => $this->_add_new_event_stop(),
151
+				'options' => array(
152
+					'tipLocation'    => 'right',
153
+					'tipAdjustmentY' => -50,
154
+					'tipAdjustmentX' => 20,
155
+				),
156
+			),
157
+		);
158
+	}
159 159
 
160
-    protected function _start()
161
-    {
162
-        $content = '<h3>' . __('Events Overview', 'event_espresso') . '</h3>';
163
-        $content .= '<p>'
164
-                    . __(
165
-                        'This tour of the Events Overview page will go over different areas of the screen to help you understand what they are used for.',
166
-                        'event_espresso'
167
-                    ) . '</p>';
168
-        return $content;
169
-    }
160
+	protected function _start()
161
+	{
162
+		$content = '<h3>' . __('Events Overview', 'event_espresso') . '</h3>';
163
+		$content .= '<p>'
164
+					. __(
165
+						'This tour of the Events Overview page will go over different areas of the screen to help you understand what they are used for.',
166
+						'event_espresso'
167
+					) . '</p>';
168
+		return $content;
169
+	}
170 170
 
171 171
 
172
-    protected function _event_id_stop()
173
-    {
174
-        return '<p>'
175
-               . __(
176
-                   'View an ID for an event. Can be sorted in ascending or descending order.',
177
-                   'event_espresso'
178
-               ) . '</p>';
179
-    }
172
+	protected function _event_id_stop()
173
+	{
174
+		return '<p>'
175
+			   . __(
176
+				   'View an ID for an event. Can be sorted in ascending or descending order.',
177
+				   'event_espresso'
178
+			   ) . '</p>';
179
+	}
180 180
 
181
-    protected function _event_name_stop()
182
-    {
183
-        return '<p>'
184
-               . __(
185
-                   'View the name (title) of an event. Can be sorted in ascending or descending order.',
186
-                   'event_espresso'
187
-               ) . '</p>';
188
-    }
181
+	protected function _event_name_stop()
182
+	{
183
+		return '<p>'
184
+			   . __(
185
+				   'View the name (title) of an event. Can be sorted in ascending or descending order.',
186
+				   'event_espresso'
187
+			   ) . '</p>';
188
+	}
189 189
 
190
-    protected function _event_venue_stop()
191
-    {
192
-        return '<p>'
193
-               . __(
194
-                   'View the venue for an event. Can be sorted in ascending or descending order.',
195
-                   'event_espresso'
196
-               ) . '</p>';
197
-    }
190
+	protected function _event_venue_stop()
191
+	{
192
+		return '<p>'
193
+			   . __(
194
+				   'View the venue for an event. Can be sorted in ascending or descending order.',
195
+				   'event_espresso'
196
+			   ) . '</p>';
197
+	}
198 198
 
199
-    protected function _event_start_date_stop()
200
-    {
201
-        return '<p>'
202
-               . __(
203
-                   'View the date and time that an event begins on. Can be sorted in ascending or descending order.',
204
-                   'event_espresso'
205
-               ) . '</p>';
206
-    }
199
+	protected function _event_start_date_stop()
200
+	{
201
+		return '<p>'
202
+			   . __(
203
+				   'View the date and time that an event begins on. Can be sorted in ascending or descending order.',
204
+				   'event_espresso'
205
+			   ) . '</p>';
206
+	}
207 207
 
208
-    protected function _event_onsale_stop()
209
-    {
210
-        return '<p>'
211
-               . __(
212
-                   'View the datetime that the first ticket for an event is available for purchase. Can be sorted in ascending or descending order.',
213
-                   'event_espresso'
214
-               ) . '</p>';
215
-    }
208
+	protected function _event_onsale_stop()
209
+	{
210
+		return '<p>'
211
+			   . __(
212
+				   'View the datetime that the first ticket for an event is available for purchase. Can be sorted in ascending or descending order.',
213
+				   'event_espresso'
214
+			   ) . '</p>';
215
+	}
216 216
 
217
-    protected function _event_registrations_stop()
218
-    {
219
-        return '<p>' . __('View the number of approved registrations for an event.', 'event_espresso') . '</p>';
220
-    }
217
+	protected function _event_registrations_stop()
218
+	{
219
+		return '<p>' . __('View the number of approved registrations for an event.', 'event_espresso') . '</p>';
220
+	}
221 221
 
222
-    protected function _actions_stop()
223
-    {
224
-        return '<p>'
225
-               . __(
226
-                   'Perform an action to an event. See legend in bottom left corner.',
227
-                   'event_espresso'
228
-               ) . '</p>';
229
-    }
222
+	protected function _actions_stop()
223
+	{
224
+		return '<p>'
225
+			   . __(
226
+				   'Perform an action to an event. See legend in bottom left corner.',
227
+				   'event_espresso'
228
+			   ) . '</p>';
229
+	}
230 230
 
231
-    protected function _legend_stop()
232
-    {
233
-        return '<p>'
234
-               . __(
235
-                   'This is the legend that describes the actions available in the actions column. Also shows the statuses that are available for an event.',
236
-                   'event_espresso'
237
-               ) . '</p>';
238
-    }
231
+	protected function _legend_stop()
232
+	{
233
+		return '<p>'
234
+			   . __(
235
+				   'This is the legend that describes the actions available in the actions column. Also shows the statuses that are available for an event.',
236
+				   'event_espresso'
237
+			   ) . '</p>';
238
+	}
239 239
 
240
-    protected function _stop_archive_button()
241
-    {
242
-        return '<p>This button takes you to the event listings page on the front-end of your website.</p>';
243
-    }
240
+	protected function _stop_archive_button()
241
+	{
242
+		return '<p>This button takes you to the event listings page on the front-end of your website.</p>';
243
+	}
244 244
 
245
-    protected function _views_stop()
246
-    {
247
-        return '<p>'
248
-               . __(
249
-                   'You can select different views by draft, time period, or look at events which have been moved to the trash.',
250
-                   'event_espresso'
251
-               ) . '</p>';
252
-    }
245
+	protected function _views_stop()
246
+	{
247
+		return '<p>'
248
+			   . __(
249
+				   'You can select different views by draft, time period, or look at events which have been moved to the trash.',
250
+				   'event_espresso'
251
+			   ) . '</p>';
252
+	}
253 253
 
254
-    protected function _bulkactions_stop()
255
-    {
256
-        return '<p>' . __('Perform a bulk action to multiple events.', 'event_espresso') . '</p>';
257
-    }
254
+	protected function _bulkactions_stop()
255
+	{
256
+		return '<p>' . __('Perform a bulk action to multiple events.', 'event_espresso') . '</p>';
257
+	}
258 258
 
259
-    protected function _stop_about_filters()
260
-    {
261
-        return '<p>' . __('Events can be filtered by status, date, or category.', 'event_espresso') . '</p>';
262
-    }
259
+	protected function _stop_about_filters()
260
+	{
261
+		return '<p>' . __('Events can be filtered by status, date, or category.', 'event_espresso') . '</p>';
262
+	}
263 263
 
264
-    protected function _search_stop()
265
-    {
266
-        return '<p>'
267
-               . __(
268
-                   'Search through events. The following sources will be searched: Event Name, Event Description, and Event Short Description.',
269
-                   'event_espresso'
270
-               ) . '</p>';
271
-    }
264
+	protected function _search_stop()
265
+	{
266
+		return '<p>'
267
+			   . __(
268
+				   'Search through events. The following sources will be searched: Event Name, Event Description, and Event Short Description.',
269
+				   'event_espresso'
270
+			   ) . '</p>';
271
+	}
272 272
 
273
-    protected function _add_new_event_stop()
274
-    {
275
-        return '<p>' . __('Click this button to add a new event.', 'event_espresso') . '</p>';
276
-    }
273
+	protected function _add_new_event_stop()
274
+	{
275
+		return '<p>' . __('Click this button to add a new event.', 'event_espresso') . '</p>';
276
+	}
277 277
 }
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -159,12 +159,12 @@  discard block
 block discarded – undo
159 159
 
160 160
     protected function _start()
161 161
     {
162
-        $content = '<h3>' . __('Events Overview', 'event_espresso') . '</h3>';
162
+        $content = '<h3>'.__('Events Overview', 'event_espresso').'</h3>';
163 163
         $content .= '<p>'
164 164
                     . __(
165 165
                         'This tour of the Events Overview page will go over different areas of the screen to help you understand what they are used for.',
166 166
                         'event_espresso'
167
-                    ) . '</p>';
167
+                    ).'</p>';
168 168
         return $content;
169 169
     }
170 170
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                . __(
176 176
                    'View an ID for an event. Can be sorted in ascending or descending order.',
177 177
                    'event_espresso'
178
-               ) . '</p>';
178
+               ).'</p>';
179 179
     }
180 180
 
181 181
     protected function _event_name_stop()
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
                . __(
185 185
                    'View the name (title) of an event. Can be sorted in ascending or descending order.',
186 186
                    'event_espresso'
187
-               ) . '</p>';
187
+               ).'</p>';
188 188
     }
189 189
 
190 190
     protected function _event_venue_stop()
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                . __(
194 194
                    'View the venue for an event. Can be sorted in ascending or descending order.',
195 195
                    'event_espresso'
196
-               ) . '</p>';
196
+               ).'</p>';
197 197
     }
198 198
 
199 199
     protected function _event_start_date_stop()
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                . __(
203 203
                    'View the date and time that an event begins on. Can be sorted in ascending or descending order.',
204 204
                    'event_espresso'
205
-               ) . '</p>';
205
+               ).'</p>';
206 206
     }
207 207
 
208 208
     protected function _event_onsale_stop()
@@ -211,12 +211,12 @@  discard block
 block discarded – undo
211 211
                . __(
212 212
                    'View the datetime that the first ticket for an event is available for purchase. Can be sorted in ascending or descending order.',
213 213
                    'event_espresso'
214
-               ) . '</p>';
214
+               ).'</p>';
215 215
     }
216 216
 
217 217
     protected function _event_registrations_stop()
218 218
     {
219
-        return '<p>' . __('View the number of approved registrations for an event.', 'event_espresso') . '</p>';
219
+        return '<p>'.__('View the number of approved registrations for an event.', 'event_espresso').'</p>';
220 220
     }
221 221
 
222 222
     protected function _actions_stop()
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
                . __(
226 226
                    'Perform an action to an event. See legend in bottom left corner.',
227 227
                    'event_espresso'
228
-               ) . '</p>';
228
+               ).'</p>';
229 229
     }
230 230
 
231 231
     protected function _legend_stop()
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                . __(
235 235
                    'This is the legend that describes the actions available in the actions column. Also shows the statuses that are available for an event.',
236 236
                    'event_espresso'
237
-               ) . '</p>';
237
+               ).'</p>';
238 238
     }
239 239
 
240 240
     protected function _stop_archive_button()
@@ -248,17 +248,17 @@  discard block
 block discarded – undo
248 248
                . __(
249 249
                    'You can select different views by draft, time period, or look at events which have been moved to the trash.',
250 250
                    'event_espresso'
251
-               ) . '</p>';
251
+               ).'</p>';
252 252
     }
253 253
 
254 254
     protected function _bulkactions_stop()
255 255
     {
256
-        return '<p>' . __('Perform a bulk action to multiple events.', 'event_espresso') . '</p>';
256
+        return '<p>'.__('Perform a bulk action to multiple events.', 'event_espresso').'</p>';
257 257
     }
258 258
 
259 259
     protected function _stop_about_filters()
260 260
     {
261
-        return '<p>' . __('Events can be filtered by status, date, or category.', 'event_espresso') . '</p>';
261
+        return '<p>'.__('Events can be filtered by status, date, or category.', 'event_espresso').'</p>';
262 262
     }
263 263
 
264 264
     protected function _search_stop()
@@ -267,11 +267,11 @@  discard block
 block discarded – undo
267 267
                . __(
268 268
                    'Search through events. The following sources will be searched: Event Name, Event Description, and Event Short Description.',
269 269
                    'event_espresso'
270
-               ) . '</p>';
270
+               ).'</p>';
271 271
     }
272 272
 
273 273
     protected function _add_new_event_stop()
274 274
     {
275
-        return '<p>' . __('Click this button to add a new event.', 'event_espresso') . '</p>';
275
+        return '<p>'.__('Click this button to add a new event.', 'event_espresso').'</p>';
276 276
     }
277 277
 }
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Edit_Category_Help_Tour.class.php 2 patches
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -15,77 +15,77 @@
 block discarded – undo
15 15
 class Event_Edit_Category_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Edit Category Tour', 'event_espresso');
21
-        $this->_slug = 'event-edit-category-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Edit Category Tour', 'event_espresso');
21
+		$this->_slug = 'event-edit-category-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_stop_one(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'category_name',
33
-                'content' => $this->_stop_two(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'right',
36
-                    'tipAdjustmentY' => -55,
37
-                    'tipAdjustmentX' => 5,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'cat_id',
42
-                'content' => $this->_stop_three(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'right',
45
-                    'tipAdjustmentY' => -55,
46
-                    'tipAdjustmentX' => 5,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                'id'      => 'category_desc',
51
-                'content' => $this->_stop_four(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentY' => -75,
55
-                    'tipAdjustmentX' => 250,
56
-                ),
57
-            ),
58
-        );
59
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_stop_one(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'category_name',
33
+				'content' => $this->_stop_two(),
34
+				'options' => array(
35
+					'tipLocation'    => 'right',
36
+					'tipAdjustmentY' => -55,
37
+					'tipAdjustmentX' => 5,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'cat_id',
42
+				'content' => $this->_stop_three(),
43
+				'options' => array(
44
+					'tipLocation'    => 'right',
45
+					'tipAdjustmentY' => -55,
46
+					'tipAdjustmentX' => 5,
47
+				),
48
+			),
49
+			40 => array(
50
+				'id'      => 'category_desc',
51
+				'content' => $this->_stop_four(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentY' => -75,
55
+					'tipAdjustmentX' => 250,
56
+				),
57
+			),
58
+		);
59
+	}
60 60
 
61 61
 
62
-    protected function _stop_one()
63
-    {
64
-        $content = '<h3>' . __('Edit Event Category', 'event_espresso') . '</h3>';
65
-        $content .= '<p>'
66
-                    . __(
67
-                        'This tour of the Edit Event Category page will go over different areas of the screen to help you understand what they are used for.',
68
-                        'event_espresso'
69
-                    ) . '</p>';
70
-        return $content;
71
-    }
62
+	protected function _stop_one()
63
+	{
64
+		$content = '<h3>' . __('Edit Event Category', 'event_espresso') . '</h3>';
65
+		$content .= '<p>'
66
+					. __(
67
+						'This tour of the Edit Event Category page will go over different areas of the screen to help you understand what they are used for.',
68
+						'event_espresso'
69
+					) . '</p>';
70
+		return $content;
71
+	}
72 72
 
73
-    protected function _stop_two()
74
-    {
75
-        return '<p>' . __('Edit the name for your category.', 'event_espresso') . '</p>';
76
-    }
73
+	protected function _stop_two()
74
+	{
75
+		return '<p>' . __('Edit the name for your category.', 'event_espresso') . '</p>';
76
+	}
77 77
 
78
-    protected function _stop_three()
79
-    {
80
-        return '<p>' . __('The unique ID for your category cannot be changed.', 'event_espresso') . '</p>';
81
-    }
78
+	protected function _stop_three()
79
+	{
80
+		return '<p>' . __('The unique ID for your category cannot be changed.', 'event_espresso') . '</p>';
81
+	}
82 82
 
83
-    protected function _stop_four()
84
-    {
85
-        return '<p>'
86
-               . __(
87
-                   'The rich text editor can be used to edit information about your category. Images and links can also be added or removed along with your text.',
88
-                   'event_espresso'
89
-               ) . '</p>';
90
-    }
83
+	protected function _stop_four()
84
+	{
85
+		return '<p>'
86
+			   . __(
87
+				   'The rich text editor can be used to edit information about your category. Images and links can also be added or removed along with your text.',
88
+				   'event_espresso'
89
+			   ) . '</p>';
90
+	}
91 91
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,23 +61,23 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function _stop_one()
63 63
     {
64
-        $content = '<h3>' . __('Edit Event Category', 'event_espresso') . '</h3>';
64
+        $content = '<h3>'.__('Edit Event Category', 'event_espresso').'</h3>';
65 65
         $content .= '<p>'
66 66
                     . __(
67 67
                         'This tour of the Edit Event Category page will go over different areas of the screen to help you understand what they are used for.',
68 68
                         'event_espresso'
69
-                    ) . '</p>';
69
+                    ).'</p>';
70 70
         return $content;
71 71
     }
72 72
 
73 73
     protected function _stop_two()
74 74
     {
75
-        return '<p>' . __('Edit the name for your category.', 'event_espresso') . '</p>';
75
+        return '<p>'.__('Edit the name for your category.', 'event_espresso').'</p>';
76 76
     }
77 77
 
78 78
     protected function _stop_three()
79 79
     {
80
-        return '<p>' . __('The unique ID for your category cannot be changed.', 'event_espresso') . '</p>';
80
+        return '<p>'.__('The unique ID for your category cannot be changed.', 'event_espresso').'</p>';
81 81
     }
82 82
 
83 83
     protected function _stop_four()
@@ -86,6 +86,6 @@  discard block
 block discarded – undo
86 86
                . __(
87 87
                    'The rich text editor can be used to edit information about your category. Images and links can also be added or removed along with your text.',
88 88
                    'event_espresso'
89
-               ) . '</p>';
89
+               ).'</p>';
90 90
     }
91 91
 }
Please login to merge, or discard this patch.
registration_form/espresso_events_Registration_Form_Hooks.class.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                 : array();
136 136
             $EQGids = array_keys($EQGs);
137 137
 
138
-            if (! empty($QSGs)) {
138
+            if ( ! empty($QSGs)) {
139 139
                 $html = count($QSGs) > 10 ? '<div style="height:250px;overflow:auto;">' : '';
140 140
                 foreach ($QSGs as $QSG) {
141 141
                     $checked = in_array($QSG->ID(), $EQGids, true)
@@ -155,16 +155,16 @@  discard block
 block discarded – undo
155 155
                     );
156 156
 
157 157
                     $html .= '
158
-					<p id="event-question-group-' . $QSG->ID() . '">
159
-						<input value="' . $QSG->ID() . '" type="checkbox"'
158
+					<p id="event-question-group-' . $QSG->ID().'">
159
+						<input value="' . $QSG->ID().'" type="checkbox"'
160 160
                              . $visibility
161
-                             . ' name="question_groups[' . $QSG->ID() . ']"' . $checked . ' />
162
-						<a href="' . $edit_link . '" title="'
161
+                             . ' name="question_groups['.$QSG->ID().']"'.$checked.' />
162
+						<a href="' . $edit_link.'" title="'
163 163
                              . sprintf(
164 164
                                  esc_attr__('Edit %s Group', 'event_espresso'),
165 165
                                  $QSG->get('QSG_name')
166 166
                              )
167
-                             . '" target="_blank">' . $QSG->get('QSG_name') . '</a>
167
+                             . '" target="_blank">'.$QSG->get('QSG_name').'</a>
168 168
 					</p>';
169 169
                 }
170 170
                 $html .= count($QSGs) > 10 ? '</div>' : '';
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         $current_qgs = array_keys($current_qgs); // we just want the ids
204 204
 
205 205
         // now let's get the groups selected in the editor and update (IF we have data)
206
-        if (! empty($question_groups)) {
206
+        if ( ! empty($question_groups)) {
207 207
             foreach ($question_groups as $id => $val) {
208 208
                 // add to event
209 209
                 if ($val) {
Please login to merge, or discard this patch.
Indentation   +199 added lines, -199 removed lines patch added patch discarded remove patch
@@ -16,217 +16,217 @@
 block discarded – undo
16 16
 class espresso_events_Registration_Form_Hooks extends EE_Admin_Hooks
17 17
 {
18 18
 
19
-    /**
20
-     * @var EE_Event|null
21
-     */
22
-    protected $_event;
23
-
24
-
25
-    protected function _set_hooks_properties()
26
-    {
27
-        $this->_name = 'registration_form';
28
-        if (
29
-            $this->_adminpage_obj->adminConfig()->useAdvancedEditor()
30
-            && $this->_adminpage_obj->feature()->allowed('use_reg_form_builder')
31
-        ) {
32
-            $this->_metaboxes      = [];
33
-            $this->_scripts_styles = [];
34
-            return;
35
-        }
36
-        $this->_metaboxes = array(
37
-            0 => array(
38
-                'page_route' => array('edit', 'create_new'),
39
-                'func'       => 'primary_questions',
40
-                'label'      => esc_html__('Questions for Primary Registrant', 'event_espresso'),
41
-                'priority'   => 'default',
42
-                'context'    => 'side',
43
-            ),
44
-        );
45
-
46
-        // hook into the handler for saving question groups
47
-        add_filter(
48
-            'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks',
49
-            array($this, 'modify_callbacks'),
50
-            10
51
-        );
52
-
53
-        // hook into revision restores (we're hooking into the global action because EE_Admin_Hooks classes are already
54
-        // restricted by page)
55
-        add_action('AHEE_EE_Admin_Page_CPT__restore_revision', array($this, 'restore_revision'), 10, 2);
56
-    }
57
-
58
-
59
-    /**
60
-     * Callback for FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks hook
61
-     *
62
-     * @param $callbacks
63
-     * @return array
64
-     */
65
-    public function modify_callbacks($callbacks)
66
-    {
67
-        // now let's add the question group callback
68
-        $callbacks['primary_question_group_update'] = array($this, 'primary_question_group_update');
69
-        return $callbacks;
70
-    }
71
-
72
-
73
-    /**
74
-     * Hooked into revision restores.
75
-     *
76
-     * @param $post_id
77
-     * @param $revision_id
78
-     * @return EE_Base_Class
79
-     * @throws EE_Error
80
-     * @throws InvalidArgumentException
81
-     * @throws ReflectionException
82
-     * @throws InvalidDataTypeException
83
-     * @throws InvalidInterfaceException
84
-     */
85
-    public function restore_revision($post_id, $revision_id)
86
-    {
87
-        $EVT_MDL = EE_Registry::instance()->load_model('Event');
88
-        $post_evt = $EVT_MDL->get_one_by_ID($post_id);
89
-        // restore revision for primary questions
90
-        $post_evt->restore_revision(
91
-            $revision_id,
92
-            ['Question_Group'],
93
-            ['Question_Group' => ['Event_Question_Group.EQG_primary' => true]]
94
-        );
95
-        return $post_evt;
96
-    }
97
-
98
-
99
-    /**
100
-     * Content of metabox.
101
-     *
102
-     * @param $post_id
103
-     * @param $post
104
-     * @throws EE_Error
105
-     * @throws InvalidArgumentException
106
-     * @throws InvalidDataTypeException
107
-     * @throws InvalidInterfaceException
108
-     */
109
-    public function primary_questions($post_id, $post)
110
-    {
111
-        $this->_event = $this->_adminpage_obj->get_event_object();
112
-        $event_id = $this->_event->ID();
113
-        ?>
19
+	/**
20
+	 * @var EE_Event|null
21
+	 */
22
+	protected $_event;
23
+
24
+
25
+	protected function _set_hooks_properties()
26
+	{
27
+		$this->_name = 'registration_form';
28
+		if (
29
+			$this->_adminpage_obj->adminConfig()->useAdvancedEditor()
30
+			&& $this->_adminpage_obj->feature()->allowed('use_reg_form_builder')
31
+		) {
32
+			$this->_metaboxes      = [];
33
+			$this->_scripts_styles = [];
34
+			return;
35
+		}
36
+		$this->_metaboxes = array(
37
+			0 => array(
38
+				'page_route' => array('edit', 'create_new'),
39
+				'func'       => 'primary_questions',
40
+				'label'      => esc_html__('Questions for Primary Registrant', 'event_espresso'),
41
+				'priority'   => 'default',
42
+				'context'    => 'side',
43
+			),
44
+		);
45
+
46
+		// hook into the handler for saving question groups
47
+		add_filter(
48
+			'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks',
49
+			array($this, 'modify_callbacks'),
50
+			10
51
+		);
52
+
53
+		// hook into revision restores (we're hooking into the global action because EE_Admin_Hooks classes are already
54
+		// restricted by page)
55
+		add_action('AHEE_EE_Admin_Page_CPT__restore_revision', array($this, 'restore_revision'), 10, 2);
56
+	}
57
+
58
+
59
+	/**
60
+	 * Callback for FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks hook
61
+	 *
62
+	 * @param $callbacks
63
+	 * @return array
64
+	 */
65
+	public function modify_callbacks($callbacks)
66
+	{
67
+		// now let's add the question group callback
68
+		$callbacks['primary_question_group_update'] = array($this, 'primary_question_group_update');
69
+		return $callbacks;
70
+	}
71
+
72
+
73
+	/**
74
+	 * Hooked into revision restores.
75
+	 *
76
+	 * @param $post_id
77
+	 * @param $revision_id
78
+	 * @return EE_Base_Class
79
+	 * @throws EE_Error
80
+	 * @throws InvalidArgumentException
81
+	 * @throws ReflectionException
82
+	 * @throws InvalidDataTypeException
83
+	 * @throws InvalidInterfaceException
84
+	 */
85
+	public function restore_revision($post_id, $revision_id)
86
+	{
87
+		$EVT_MDL = EE_Registry::instance()->load_model('Event');
88
+		$post_evt = $EVT_MDL->get_one_by_ID($post_id);
89
+		// restore revision for primary questions
90
+		$post_evt->restore_revision(
91
+			$revision_id,
92
+			['Question_Group'],
93
+			['Question_Group' => ['Event_Question_Group.EQG_primary' => true]]
94
+		);
95
+		return $post_evt;
96
+	}
97
+
98
+
99
+	/**
100
+	 * Content of metabox.
101
+	 *
102
+	 * @param $post_id
103
+	 * @param $post
104
+	 * @throws EE_Error
105
+	 * @throws InvalidArgumentException
106
+	 * @throws InvalidDataTypeException
107
+	 * @throws InvalidInterfaceException
108
+	 */
109
+	public function primary_questions($post_id, $post)
110
+	{
111
+		$this->_event = $this->_adminpage_obj->get_event_object();
112
+		$event_id = $this->_event->ID();
113
+		?>
114 114
         <div class="inside">
115 115
             <p><strong>
116 116
                     <?php _e('Question Groups', 'event_espresso'); ?>
117 117
                 </strong><br/>
118 118
                 <?php
119
-                printf(
120
-                    esc_html__(
121
-                        'Add a pre-populated %1$sgroup of questions%2$s to your event. The personal information group is required for all events',
122
-                        'event_espresso'
123
-                    ),
124
-                    '<a href="admin.php?page=espresso_registration_form" target="_blank">',
125
-                    '</a>'
126
-                )
127
-                ?>
119
+				printf(
120
+					esc_html__(
121
+						'Add a pre-populated %1$sgroup of questions%2$s to your event. The personal information group is required for all events',
122
+						'event_espresso'
123
+					),
124
+					'<a href="admin.php?page=espresso_registration_form" target="_blank">',
125
+					'</a>'
126
+				)
127
+				?>
128 128
             </p>
129 129
             <?php
130 130
 
131
-            $qsg_where['QSG_deleted'] = false;
132
-            $query_params = apply_filters(
133
-                'FHEE__espresso_events_Registration_Form_Hooks__primary_questions__question_group_query_parameters',
134
-                array($qsg_where, 'order_by' => array('QSG_order' => 'ASC'))
135
-            );
136
-            $QSGs = EEM_Question_Group::instance()->get_all($query_params);
137
-            $EQGs = ! empty($event_id)
138
-                ? $this->_event->get_many_related(
139
-                    'Question_Group',
140
-                    [['Event_Question_Group.EQG_primary' => true]]
141
-                )
142
-                : array();
143
-            $EQGids = array_keys($EQGs);
144
-
145
-            if (! empty($QSGs)) {
146
-                $html = count($QSGs) > 10 ? '<div style="height:250px;overflow:auto;">' : '';
147
-                foreach ($QSGs as $QSG) {
148
-                    $checked = in_array($QSG->ID(), $EQGids, true)
149
-                               || $QSG->get('QSG_system') === 1
150
-                        ? ' checked="checked"'
151
-                        : '';
152
-                    $visibility = $QSG->get('QSG_system') === 1
153
-                        ? ' style="visibility:hidden"'
154
-                        : '';
155
-                    $edit_query_args = $this->_adminpage_obj->is_caf() ? array(
156
-                        'action' => 'edit_question_group',
157
-                        'QSG_ID' => $QSG->ID(),
158
-                    ) : array('action' => 'question_groups');
159
-                    $edit_link = EE_Admin_Page::add_query_args_and_nonce(
160
-                        $edit_query_args,
161
-                        EE_FORMS_ADMIN_URL
162
-                    );
163
-
164
-                    $html .= '
131
+			$qsg_where['QSG_deleted'] = false;
132
+			$query_params = apply_filters(
133
+				'FHEE__espresso_events_Registration_Form_Hooks__primary_questions__question_group_query_parameters',
134
+				array($qsg_where, 'order_by' => array('QSG_order' => 'ASC'))
135
+			);
136
+			$QSGs = EEM_Question_Group::instance()->get_all($query_params);
137
+			$EQGs = ! empty($event_id)
138
+				? $this->_event->get_many_related(
139
+					'Question_Group',
140
+					[['Event_Question_Group.EQG_primary' => true]]
141
+				)
142
+				: array();
143
+			$EQGids = array_keys($EQGs);
144
+
145
+			if (! empty($QSGs)) {
146
+				$html = count($QSGs) > 10 ? '<div style="height:250px;overflow:auto;">' : '';
147
+				foreach ($QSGs as $QSG) {
148
+					$checked = in_array($QSG->ID(), $EQGids, true)
149
+							   || $QSG->get('QSG_system') === 1
150
+						? ' checked="checked"'
151
+						: '';
152
+					$visibility = $QSG->get('QSG_system') === 1
153
+						? ' style="visibility:hidden"'
154
+						: '';
155
+					$edit_query_args = $this->_adminpage_obj->is_caf() ? array(
156
+						'action' => 'edit_question_group',
157
+						'QSG_ID' => $QSG->ID(),
158
+					) : array('action' => 'question_groups');
159
+					$edit_link = EE_Admin_Page::add_query_args_and_nonce(
160
+						$edit_query_args,
161
+						EE_FORMS_ADMIN_URL
162
+					);
163
+
164
+					$html .= '
165 165
 					<p id="event-question-group-' . $QSG->ID() . '">
166 166
 						<input value="' . $QSG->ID() . '" type="checkbox"'
167
-                             . $visibility
168
-                             . ' name="question_groups[' . $QSG->ID() . ']"' . $checked . ' />
167
+							 . $visibility
168
+							 . ' name="question_groups[' . $QSG->ID() . ']"' . $checked . ' />
169 169
 						<a href="' . $edit_link . '" title="'
170
-                             . sprintf(
171
-                                 esc_attr__('Edit %s Group', 'event_espresso'),
172
-                                 $QSG->get('QSG_name')
173
-                             )
174
-                             . '" target="_blank">' . $QSG->get('QSG_name') . '</a>
170
+							 . sprintf(
171
+								 esc_attr__('Edit %s Group', 'event_espresso'),
172
+								 $QSG->get('QSG_name')
173
+							 )
174
+							 . '" target="_blank">' . $QSG->get('QSG_name') . '</a>
175 175
 					</p>';
176
-                }
177
-                $html .= count($QSGs) > 10 ? '</div>' : '';
178
-
179
-                echo $html;
180
-            } else {
181
-                esc_html_e(
182
-                    'There seems to be a problem with your questions. Please contact [email protected]',
183
-                    'event_espresso'
184
-                );
185
-            }
186
-            do_action('AHEE_event_editor_questions_notice');
187
-            ?>
176
+				}
177
+				$html .= count($QSGs) > 10 ? '</div>' : '';
178
+
179
+				echo $html;
180
+			} else {
181
+				esc_html_e(
182
+					'There seems to be a problem with your questions. Please contact [email protected]',
183
+					'event_espresso'
184
+				);
185
+			}
186
+			do_action('AHEE_event_editor_questions_notice');
187
+			?>
188 188
         </div>
189 189
         <?php
190
-    }
191
-
192
-
193
-    /**
194
-     * @param EE_Event $evtobj
195
-     * @param array    $data
196
-     * @return bool
197
-     * @throws EE_Error
198
-     */
199
-    public function primary_question_group_update($evtobj, $data)
200
-    {
201
-        $question_groups = ! empty($data['question_groups']) ? (array) $data['question_groups'] : array();
202
-        $added_qgs = array_keys($question_groups);
203
-        $success = array();
204
-
205
-        // let's get all current question groups associated with this event.
206
-        $current_qgs = $evtobj->get_many_related(
207
-            'Question_Group',
208
-            [['Event_Question_Group.EQG_primary' => true]]
209
-        );
210
-        $current_qgs = array_keys($current_qgs); // we just want the ids
211
-
212
-        // now let's get the groups selected in the editor and update (IF we have data)
213
-        if (! empty($question_groups)) {
214
-            foreach ($question_groups as $id => $val) {
215
-                // add to event
216
-                if ($val) {
217
-                    $qg = $evtobj->_add_relation_to($id, 'Question_Group', ['EQG_primary' => true]);
218
-                }
219
-                $success[] = ! empty($qg) ? 1 : 0;
220
-            }
221
-        }
222
-
223
-        // wait a minute... are there question groups missing in the saved groups that ARE with the current event?
224
-        $removed_qgs = array_diff($current_qgs, $added_qgs);
225
-
226
-        foreach ($removed_qgs as $qgid) {
227
-            $qg = $evtobj->_remove_relation_to($qgid, 'Question_Group', ['EQG_primary' => true]);
228
-            $success[] = ! empty($qg) ? 1 : 0;
229
-        }
230
-        return in_array(0, $success, true) ? false : true;
231
-    }
190
+	}
191
+
192
+
193
+	/**
194
+	 * @param EE_Event $evtobj
195
+	 * @param array    $data
196
+	 * @return bool
197
+	 * @throws EE_Error
198
+	 */
199
+	public function primary_question_group_update($evtobj, $data)
200
+	{
201
+		$question_groups = ! empty($data['question_groups']) ? (array) $data['question_groups'] : array();
202
+		$added_qgs = array_keys($question_groups);
203
+		$success = array();
204
+
205
+		// let's get all current question groups associated with this event.
206
+		$current_qgs = $evtobj->get_many_related(
207
+			'Question_Group',
208
+			[['Event_Question_Group.EQG_primary' => true]]
209
+		);
210
+		$current_qgs = array_keys($current_qgs); // we just want the ids
211
+
212
+		// now let's get the groups selected in the editor and update (IF we have data)
213
+		if (! empty($question_groups)) {
214
+			foreach ($question_groups as $id => $val) {
215
+				// add to event
216
+				if ($val) {
217
+					$qg = $evtobj->_add_relation_to($id, 'Question_Group', ['EQG_primary' => true]);
218
+				}
219
+				$success[] = ! empty($qg) ? 1 : 0;
220
+			}
221
+		}
222
+
223
+		// wait a minute... are there question groups missing in the saved groups that ARE with the current event?
224
+		$removed_qgs = array_diff($current_qgs, $added_qgs);
225
+
226
+		foreach ($removed_qgs as $qgid) {
227
+			$qg = $evtobj->_remove_relation_to($qgid, 'Question_Group', ['EQG_primary' => true]);
228
+			$success[] = ! empty($qg) ? 1 : 0;
229
+		}
230
+		return in_array(0, $success, true) ? false : true;
231
+	}
232 232
 }
Please login to merge, or discard this patch.
help_tours/Registration_Form_Edit_Question_Group_Help_Tour.class.php 2 patches
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -15,123 +15,123 @@
 block discarded – undo
15 15
 class Registration_Form_Edit_Question_Group_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Edit Question Group Tour', 'event_espresso');
21
-        $this->_slug = $this->_is_caf ? 'edit-question-caf-joyride' : 'edit-question-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Edit Question Group Tour', 'event_espresso');
21
+		$this->_slug = $this->_is_caf ? 'edit-question-caf-joyride' : 'edit-question-joyride';
22
+	}
23 23
 
24
-    protected function _set_tour_stops()
25
-    {
26
-        $this->_stops = array(
27
-            10 => array(
28
-                'content' => $this->_start(),
29
-            ),
30
-            20 => array(
31
-                'id'      => 'QSG_name',
32
-                'content' => $this->_qsg_name_stop(),
33
-                'options' => array(
34
-                    'tipLocation'    => 'top',
35
-                    'tipAdjustmentX' => 0,
36
-                    'tipAdjustmentY' => -35,
37
-                ),
38
-            ),
39
-            30 => array(
40
-                'id'      => 'QSG_identifier',
41
-                'content' => $this->_qsg_identifier_stop(),
42
-                'options' => array(
43
-                    'tipLocation'    => 'top',
44
-                    'tipAdjustmentX' => 0,
45
-                    'tipAdjustmentY' => -35,
46
-                ),
47
-            ),
48
-            40 => array(
49
-                'id'      => 'QSG_desc',
50
-                'content' => $this->_qsg_desc_stop(),
51
-                'options' => array(
52
-                    'tipLocation'    => 'top',
53
-                    'tipAdjustmentX' => 0,
54
-                    'tipAdjustmentY' => -35,
55
-                ),
56
-            ),
57
-            50 => array(
58
-                'id'      => 'QSG_order',
59
-                'content' => $this->_qsg_order_stop(),
60
-                'options' => array(
61
-                    'tipLocation'    => 'top',
62
-                    'tipAdjustmentX' => -20,
63
-                    'tipAdjustmentY' => -35,
64
-                ),
65
-            ),
66
-            60 => array(
67
-                'id'      => 'QSG_show_group_name',
68
-                'content' => $this->_qsg_show_group_name_stop(),
69
-                'options' => array(
70
-                    'tipLocation'    => 'top',
71
-                    'tipAdjustmentX' => 0,
72
-                    'tipAdjustmentY' => -35,
73
-                ),
74
-            ),
75
-            70 => array(
76
-                'id'      => 'QSG_show_group_desc',
77
-                'content' => $this->_qsg_show_group_desc_stop(),
78
-                'options' => array(
79
-                    'tipLocation'    => 'top',
80
-                    'tipAdjustmentX' => 0,
81
-                    'tipAdjustmentY' => -35,
82
-                ),
83
-            ),
84
-        );
85
-    }
24
+	protected function _set_tour_stops()
25
+	{
26
+		$this->_stops = array(
27
+			10 => array(
28
+				'content' => $this->_start(),
29
+			),
30
+			20 => array(
31
+				'id'      => 'QSG_name',
32
+				'content' => $this->_qsg_name_stop(),
33
+				'options' => array(
34
+					'tipLocation'    => 'top',
35
+					'tipAdjustmentX' => 0,
36
+					'tipAdjustmentY' => -35,
37
+				),
38
+			),
39
+			30 => array(
40
+				'id'      => 'QSG_identifier',
41
+				'content' => $this->_qsg_identifier_stop(),
42
+				'options' => array(
43
+					'tipLocation'    => 'top',
44
+					'tipAdjustmentX' => 0,
45
+					'tipAdjustmentY' => -35,
46
+				),
47
+			),
48
+			40 => array(
49
+				'id'      => 'QSG_desc',
50
+				'content' => $this->_qsg_desc_stop(),
51
+				'options' => array(
52
+					'tipLocation'    => 'top',
53
+					'tipAdjustmentX' => 0,
54
+					'tipAdjustmentY' => -35,
55
+				),
56
+			),
57
+			50 => array(
58
+				'id'      => 'QSG_order',
59
+				'content' => $this->_qsg_order_stop(),
60
+				'options' => array(
61
+					'tipLocation'    => 'top',
62
+					'tipAdjustmentX' => -20,
63
+					'tipAdjustmentY' => -35,
64
+				),
65
+			),
66
+			60 => array(
67
+				'id'      => 'QSG_show_group_name',
68
+				'content' => $this->_qsg_show_group_name_stop(),
69
+				'options' => array(
70
+					'tipLocation'    => 'top',
71
+					'tipAdjustmentX' => 0,
72
+					'tipAdjustmentY' => -35,
73
+				),
74
+			),
75
+			70 => array(
76
+				'id'      => 'QSG_show_group_desc',
77
+				'content' => $this->_qsg_show_group_desc_stop(),
78
+				'options' => array(
79
+					'tipLocation'    => 'top',
80
+					'tipAdjustmentX' => 0,
81
+					'tipAdjustmentY' => -35,
82
+				),
83
+			),
84
+		);
85
+	}
86 86
 
87 87
 
88
-    protected function _start()
89
-    {
90
-        $content = '<h3>' . __('Edit Question Group', 'event_espresso') . '</h3>';
91
-        $content .= '<p>'
92
-                    . __(
93
-                        'This tour of the Edit Question Group page will go over different areas of the screen to help you understand what they are used for.',
94
-                        'event_espresso'
95
-                    ) . '</p>';
88
+	protected function _start()
89
+	{
90
+		$content = '<h3>' . __('Edit Question Group', 'event_espresso') . '</h3>';
91
+		$content .= '<p>'
92
+					. __(
93
+						'This tour of the Edit Question Group page will go over different areas of the screen to help you understand what they are used for.',
94
+						'event_espresso'
95
+					) . '</p>';
96 96
 
97
-        return $content;
98
-    }
97
+		return $content;
98
+	}
99 99
 
100
-    protected function _qsg_name_stop()
101
-    {
102
-        return '<p>' . __('The name of the question group.', 'event_espresso') . '</p>';
103
-    }
100
+	protected function _qsg_name_stop()
101
+	{
102
+		return '<p>' . __('The name of the question group.', 'event_espresso') . '</p>';
103
+	}
104 104
 
105
-    protected function _qsg_identifier_stop()
106
-    {
107
-        return '<p>' . __('A unique name for your question group.', 'event_espresso') . '</p>';
108
-    }
105
+	protected function _qsg_identifier_stop()
106
+	{
107
+		return '<p>' . __('A unique name for your question group.', 'event_espresso') . '</p>';
108
+	}
109 109
 
110
-    protected function _qsg_desc_stop()
111
-    {
112
-        return '<p>' . __('A description of the question group.', 'event_espresso') . '</p>';
113
-    }
110
+	protected function _qsg_desc_stop()
111
+	{
112
+		return '<p>' . __('A description of the question group.', 'event_espresso') . '</p>';
113
+	}
114 114
 
115
-    protected function _qsg_order_stop()
116
-    {
117
-        return '<p>' . __('Set the order that you want your question group to appear in.', 'event_espresso') . '</p>';
118
-    }
115
+	protected function _qsg_order_stop()
116
+	{
117
+		return '<p>' . __('Set the order that you want your question group to appear in.', 'event_espresso') . '</p>';
118
+	}
119 119
 
120
-    protected function _qsg_show_group_name_stop()
121
-    {
122
-        return '<p>'
123
-               . __(
124
-                   'Specify whether the group name should be shown on the registration page.',
125
-                   'event_espresso'
126
-               ) . '</p>';
127
-    }
120
+	protected function _qsg_show_group_name_stop()
121
+	{
122
+		return '<p>'
123
+			   . __(
124
+				   'Specify whether the group name should be shown on the registration page.',
125
+				   'event_espresso'
126
+			   ) . '</p>';
127
+	}
128 128
 
129
-    protected function _qsg_show_group_desc_stop()
130
-    {
131
-        return '<p>'
132
-               . __(
133
-                   'Specify whether the group description should be shown on the registration page.',
134
-                   'event_espresso'
135
-               ) . '</p>';
136
-    }
129
+	protected function _qsg_show_group_desc_stop()
130
+	{
131
+		return '<p>'
132
+			   . __(
133
+				   'Specify whether the group description should be shown on the registration page.',
134
+				   'event_espresso'
135
+			   ) . '</p>';
136
+	}
137 137
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -87,34 +87,34 @@  discard block
 block discarded – undo
87 87
 
88 88
     protected function _start()
89 89
     {
90
-        $content = '<h3>' . __('Edit Question Group', 'event_espresso') . '</h3>';
90
+        $content = '<h3>'.__('Edit Question Group', 'event_espresso').'</h3>';
91 91
         $content .= '<p>'
92 92
                     . __(
93 93
                         'This tour of the Edit Question Group page will go over different areas of the screen to help you understand what they are used for.',
94 94
                         'event_espresso'
95
-                    ) . '</p>';
95
+                    ).'</p>';
96 96
 
97 97
         return $content;
98 98
     }
99 99
 
100 100
     protected function _qsg_name_stop()
101 101
     {
102
-        return '<p>' . __('The name of the question group.', 'event_espresso') . '</p>';
102
+        return '<p>'.__('The name of the question group.', 'event_espresso').'</p>';
103 103
     }
104 104
 
105 105
     protected function _qsg_identifier_stop()
106 106
     {
107
-        return '<p>' . __('A unique name for your question group.', 'event_espresso') . '</p>';
107
+        return '<p>'.__('A unique name for your question group.', 'event_espresso').'</p>';
108 108
     }
109 109
 
110 110
     protected function _qsg_desc_stop()
111 111
     {
112
-        return '<p>' . __('A description of the question group.', 'event_espresso') . '</p>';
112
+        return '<p>'.__('A description of the question group.', 'event_espresso').'</p>';
113 113
     }
114 114
 
115 115
     protected function _qsg_order_stop()
116 116
     {
117
-        return '<p>' . __('Set the order that you want your question group to appear in.', 'event_espresso') . '</p>';
117
+        return '<p>'.__('Set the order that you want your question group to appear in.', 'event_espresso').'</p>';
118 118
     }
119 119
 
120 120
     protected function _qsg_show_group_name_stop()
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                . __(
124 124
                    'Specify whether the group name should be shown on the registration page.',
125 125
                    'event_espresso'
126
-               ) . '</p>';
126
+               ).'</p>';
127 127
     }
128 128
 
129 129
     protected function _qsg_show_group_desc_stop()
@@ -132,6 +132,6 @@  discard block
 block discarded – undo
132 132
                . __(
133 133
                    'Specify whether the group description should be shown on the registration page.',
134 134
                    'event_espresso'
135
-               ) . '</p>';
135
+               ).'</p>';
136 136
     }
137 137
 }
Please login to merge, or discard this patch.
help_tours/Registration_Form_Question_Groups_Help_Tour.class.php 2 patches
Indentation   +131 added lines, -131 removed lines patch added patch discarded remove patch
@@ -15,148 +15,148 @@
 block discarded – undo
15 15
 class Registration_Form_Question_Groups_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Question Groups Tour', 'event_espresso');
21
-        $this->_slug = $this->_is_caf ? 'question-groups-caf-overview-joyride' : 'question-groups-overview-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Question Groups Tour', 'event_espresso');
21
+		$this->_slug = $this->_is_caf ? 'question-groups-caf-overview-joyride' : 'question-groups-overview-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-        );
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+		);
32 32
 
33
-        if ($this->_is_caf) {
34
-            $this->_stops[20] = array(
35
-                'id'      => 'name',
36
-                'content' => $this->_name_stop(),
37
-                'options' => array(
38
-                    'tipLocation'    => 'top',
39
-                    'tipAdjustmentY' => -30,
40
-                    'tipAdjustmentX' => 25,
41
-                ),
42
-            );
43
-            $this->_stops[30] = array(
44
-                'id'      => 'description',
45
-                'content' => $this->_description_stop(),
46
-                'options' => array(
47
-                    'tipLocation'    => 'top',
48
-                    'tipAdjustmentY' => -30,
49
-                    'tipAdjustmentX' => 20,
50
-                ),
51
-            );
52
-            $this->_stops[40] = array(
53
-                'id'      => 'show_group_name',
54
-                'content' => $this->_show_group_name_stop(),
55
-                'options' => array(
56
-                    'tipLocation'    => 'top',
57
-                    'tipAdjustmentY' => -30,
58
-                    'tipAdjustmentX' => 20,
59
-                ),
60
-            );
61
-            $this->_stops[50] = array(
62
-                'id'      => 'show_group_desc',
63
-                'content' => $this->_show_group_description_stop(),
64
-                'options' => array(
65
-                    'tipLocation'    => 'top',
66
-                    'tipAdjustmentY' => -30,
67
-                    'tipAdjustmentX' => 20,
68
-                ),
69
-            );
70
-            $this->_stops[60] = array(
71
-                'class'   => 'bulkactions',
72
-                'content' => $this->_bulk_actions_stop(),
73
-                'options' => array(
74
-                    'tipLocation'    => 'left',
75
-                    'tipAdjustmentY' => -50,
76
-                    'tipAdjustmentX' => -80,
77
-                ),
78
-            );
79
-            $this->_stops[70] = array(
80
-                'id'      => 'add-new-question-group',
81
-                'content' => $this->_add_new_question_group_stop(),
82
-                'options' => array(
83
-                    'tipLocation'    => 'right',
84
-                    'tipAdjustmentY' => -50,
85
-                    'tipAdjustmentX' => 15,
86
-                ),
87
-            );
88
-        }
89
-    }
33
+		if ($this->_is_caf) {
34
+			$this->_stops[20] = array(
35
+				'id'      => 'name',
36
+				'content' => $this->_name_stop(),
37
+				'options' => array(
38
+					'tipLocation'    => 'top',
39
+					'tipAdjustmentY' => -30,
40
+					'tipAdjustmentX' => 25,
41
+				),
42
+			);
43
+			$this->_stops[30] = array(
44
+				'id'      => 'description',
45
+				'content' => $this->_description_stop(),
46
+				'options' => array(
47
+					'tipLocation'    => 'top',
48
+					'tipAdjustmentY' => -30,
49
+					'tipAdjustmentX' => 20,
50
+				),
51
+			);
52
+			$this->_stops[40] = array(
53
+				'id'      => 'show_group_name',
54
+				'content' => $this->_show_group_name_stop(),
55
+				'options' => array(
56
+					'tipLocation'    => 'top',
57
+					'tipAdjustmentY' => -30,
58
+					'tipAdjustmentX' => 20,
59
+				),
60
+			);
61
+			$this->_stops[50] = array(
62
+				'id'      => 'show_group_desc',
63
+				'content' => $this->_show_group_description_stop(),
64
+				'options' => array(
65
+					'tipLocation'    => 'top',
66
+					'tipAdjustmentY' => -30,
67
+					'tipAdjustmentX' => 20,
68
+				),
69
+			);
70
+			$this->_stops[60] = array(
71
+				'class'   => 'bulkactions',
72
+				'content' => $this->_bulk_actions_stop(),
73
+				'options' => array(
74
+					'tipLocation'    => 'left',
75
+					'tipAdjustmentY' => -50,
76
+					'tipAdjustmentX' => -80,
77
+				),
78
+			);
79
+			$this->_stops[70] = array(
80
+				'id'      => 'add-new-question-group',
81
+				'content' => $this->_add_new_question_group_stop(),
82
+				'options' => array(
83
+					'tipLocation'    => 'right',
84
+					'tipAdjustmentY' => -50,
85
+					'tipAdjustmentX' => 15,
86
+				),
87
+			);
88
+		}
89
+	}
90 90
 
91 91
 
92
-    protected function _start()
93
-    {
94
-        $content = '<h3>' . __('Question Groups', 'event_espresso') . '</h3>';
95
-        if ($this->_is_caf) {
96
-            $content .= '<p>'
97
-                        . __(
98
-                            'This tour of the Question Groups page will go over different areas of the screen to help you understand what they are used for.',
99
-                            'event_espresso'
100
-                        ) . '</p>';
101
-        } else {
102
-            $content .= '<p>'
103
-                        . __(
104
-                            'Sorry, Event Espresso Decaf does not have this feature. Please purchase a support license to get access to this feature.',
105
-                            'event_espresso'
106
-                        ) . '</p>';
107
-        }
92
+	protected function _start()
93
+	{
94
+		$content = '<h3>' . __('Question Groups', 'event_espresso') . '</h3>';
95
+		if ($this->_is_caf) {
96
+			$content .= '<p>'
97
+						. __(
98
+							'This tour of the Question Groups page will go over different areas of the screen to help you understand what they are used for.',
99
+							'event_espresso'
100
+						) . '</p>';
101
+		} else {
102
+			$content .= '<p>'
103
+						. __(
104
+							'Sorry, Event Espresso Decaf does not have this feature. Please purchase a support license to get access to this feature.',
105
+							'event_espresso'
106
+						) . '</p>';
107
+		}
108 108
 
109
-        return $content;
110
-    }
109
+		return $content;
110
+	}
111 111
 
112
-    protected function _name_stop()
113
-    {
114
-        return '<p>'
115
-               . __(
116
-                   'View available questions groups. You can reorder your questions by dragging and dropping them.',
117
-                   'event_espresso'
118
-               ) . '</p>';
119
-    }
112
+	protected function _name_stop()
113
+	{
114
+		return '<p>'
115
+			   . __(
116
+				   'View available questions groups. You can reorder your questions by dragging and dropping them.',
117
+				   'event_espresso'
118
+			   ) . '</p>';
119
+	}
120 120
 
121
-    protected function _description_stop()
122
-    {
123
-        return '<p>' . __('View the question group description.', 'event_espresso') . '</p>';
124
-    }
121
+	protected function _description_stop()
122
+	{
123
+		return '<p>' . __('View the question group description.', 'event_espresso') . '</p>';
124
+	}
125 125
 
126
-    protected function _show_group_name_stop()
127
-    {
128
-        return '<p>'
129
-               . __(
130
-                   'View if the name of the question group should be shown to customers.',
131
-                   'event_espresso'
132
-               ) . '</p>';
133
-    }
126
+	protected function _show_group_name_stop()
127
+	{
128
+		return '<p>'
129
+			   . __(
130
+				   'View if the name of the question group should be shown to customers.',
131
+				   'event_espresso'
132
+			   ) . '</p>';
133
+	}
134 134
 
135
-    protected function _show_group_description_stop()
136
-    {
137
-        return '<p>'
138
-               . __(
139
-                   'View if the description of the question group should be shown to customers.',
140
-                   'event_espresso'
141
-               ) . '</p>';
142
-    }
135
+	protected function _show_group_description_stop()
136
+	{
137
+		return '<p>'
138
+			   . __(
139
+				   'View if the description of the question group should be shown to customers.',
140
+				   'event_espresso'
141
+			   ) . '</p>';
142
+	}
143 143
 
144
-    protected function _bulk_actions_stop()
145
-    {
146
-        return '<p>' . __('Perform bulk actions to multiple question groups.', 'event_espresso') . '</p>';
147
-    }
144
+	protected function _bulk_actions_stop()
145
+	{
146
+		return '<p>' . __('Perform bulk actions to multiple question groups.', 'event_espresso') . '</p>';
147
+	}
148 148
 
149
-    protected function _search_stop()
150
-    {
151
-        return '<p>'
152
-               . __(
153
-                   'Search through questions. The following sources will be searched: question group name and question group description.',
154
-                   'event_espresso'
155
-               ) . '</p>';
156
-    }
149
+	protected function _search_stop()
150
+	{
151
+		return '<p>'
152
+			   . __(
153
+				   'Search through questions. The following sources will be searched: question group name and question group description.',
154
+				   'event_espresso'
155
+			   ) . '</p>';
156
+	}
157 157
 
158
-    protected function _add_new_question_group_stop()
159
-    {
160
-        return '<p>' . __('Click here to create a new question group.', 'event_espresso') . '</p>';
161
-    }
158
+	protected function _add_new_question_group_stop()
159
+	{
160
+		return '<p>' . __('Click here to create a new question group.', 'event_espresso') . '</p>';
161
+	}
162 162
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -91,19 +91,19 @@  discard block
 block discarded – undo
91 91
 
92 92
     protected function _start()
93 93
     {
94
-        $content = '<h3>' . __('Question Groups', 'event_espresso') . '</h3>';
94
+        $content = '<h3>'.__('Question Groups', 'event_espresso').'</h3>';
95 95
         if ($this->_is_caf) {
96 96
             $content .= '<p>'
97 97
                         . __(
98 98
                             'This tour of the Question Groups page will go over different areas of the screen to help you understand what they are used for.',
99 99
                             'event_espresso'
100
-                        ) . '</p>';
100
+                        ).'</p>';
101 101
         } else {
102 102
             $content .= '<p>'
103 103
                         . __(
104 104
                             'Sorry, Event Espresso Decaf does not have this feature. Please purchase a support license to get access to this feature.',
105 105
                             'event_espresso'
106
-                        ) . '</p>';
106
+                        ).'</p>';
107 107
         }
108 108
 
109 109
         return $content;
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
                . __(
116 116
                    'View available questions groups. You can reorder your questions by dragging and dropping them.',
117 117
                    'event_espresso'
118
-               ) . '</p>';
118
+               ).'</p>';
119 119
     }
120 120
 
121 121
     protected function _description_stop()
122 122
     {
123
-        return '<p>' . __('View the question group description.', 'event_espresso') . '</p>';
123
+        return '<p>'.__('View the question group description.', 'event_espresso').'</p>';
124 124
     }
125 125
 
126 126
     protected function _show_group_name_stop()
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                . __(
130 130
                    'View if the name of the question group should be shown to customers.',
131 131
                    'event_espresso'
132
-               ) . '</p>';
132
+               ).'</p>';
133 133
     }
134 134
 
135 135
     protected function _show_group_description_stop()
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
                . __(
139 139
                    'View if the description of the question group should be shown to customers.',
140 140
                    'event_espresso'
141
-               ) . '</p>';
141
+               ).'</p>';
142 142
     }
143 143
 
144 144
     protected function _bulk_actions_stop()
145 145
     {
146
-        return '<p>' . __('Perform bulk actions to multiple question groups.', 'event_espresso') . '</p>';
146
+        return '<p>'.__('Perform bulk actions to multiple question groups.', 'event_espresso').'</p>';
147 147
     }
148 148
 
149 149
     protected function _search_stop()
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
                . __(
153 153
                    'Search through questions. The following sources will be searched: question group name and question group description.',
154 154
                    'event_espresso'
155
-               ) . '</p>';
155
+               ).'</p>';
156 156
     }
157 157
 
158 158
     protected function _add_new_question_group_stop()
159 159
     {
160
-        return '<p>' . __('Click here to create a new question group.', 'event_espresso') . '</p>';
160
+        return '<p>'.__('Click here to create a new question group.', 'event_espresso').'</p>';
161 161
     }
162 162
 }
Please login to merge, or discard this patch.