Completed
Branch BUG/fix-table-exists-query (bbef99)
by
unknown
02:41 queued 26s
created
Extend_Registration_Form_Questions_Admin_List_Table.class.php 2 patches
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -16,113 +16,113 @@
 block discarded – undo
16 16
 class Extend_Registration_Form_Questions_Admin_List_Table extends Registration_Form_Questions_Admin_List_Table
17 17
 {
18 18
 
19
-    public function __construct($admin_page)
20
-    {
21
-        parent::__construct($admin_page);
22
-    }
19
+	public function __construct($admin_page)
20
+	{
21
+		parent::__construct($admin_page);
22
+	}
23 23
 
24
-    public function column_display_text(EE_Question $item)
25
-    {
26
-        $system_question = $item->is_system_question();
27
-        $actions = array();
24
+	public function column_display_text(EE_Question $item)
25
+	{
26
+		$system_question = $item->is_system_question();
27
+		$actions = array();
28 28
 
29
-        if (! defined('REG_ADMIN_URL')) {
30
-            define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31
-        }
29
+		if (! defined('REG_ADMIN_URL')) {
30
+			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31
+		}
32 32
 
33
-        $edit_query_args = array(
34
-            'action' => 'edit_question',
35
-            'QST_ID' => $item->ID(),
36
-        );
33
+		$edit_query_args = array(
34
+			'action' => 'edit_question',
35
+			'QST_ID' => $item->ID(),
36
+		);
37 37
 
38
-        $trash_query_args = array(
39
-            'action' => 'trash_question',
40
-            'QST_ID' => $item->ID(),
41
-        );
38
+		$trash_query_args = array(
39
+			'action' => 'trash_question',
40
+			'QST_ID' => $item->ID(),
41
+		);
42 42
 
43
-        $restore_query_args = array(
44
-            'action' => 'restore_question',
45
-            'QST_ID' => $item->ID(),
46
-        );
43
+		$restore_query_args = array(
44
+			'action' => 'restore_question',
45
+			'QST_ID' => $item->ID(),
46
+		);
47 47
 
48
-        $delete_query_args = array(
49
-            'action' => 'delete_questions',
50
-            'QST_ID' => $item->ID(),
51
-        );
48
+		$delete_query_args = array(
49
+			'action' => 'delete_questions',
50
+			'QST_ID' => $item->ID(),
51
+		);
52 52
 
53
-        $duplicate_query_args = array(
54
-            'action' => 'duplicate_question',
55
-            'QST_ID' => $item->ID(),
56
-        );
53
+		$duplicate_query_args = array(
54
+			'action' => 'duplicate_question',
55
+			'QST_ID' => $item->ID(),
56
+		);
57 57
 
58
-        $edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
59
-        $trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
60
-        $restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
61
-        $delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
62
-        $duplicate_link = EE_Admin_Page::add_query_args_and_nonce($duplicate_query_args, EE_FORMS_ADMIN_URL);
58
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
59
+		$trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
60
+		$restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
61
+		$delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
62
+		$duplicate_link = EE_Admin_Page::add_query_args_and_nonce($duplicate_query_args, EE_FORMS_ADMIN_URL);
63 63
 
64
-        if (EE_Registry::instance()->CAP->current_user_can(
65
-            'ee_edit_question',
66
-            'espresso_registration_form_edit_question',
67
-            $item->ID()
68
-        )) {
69
-            $actions = array(
70
-                'edit' => '<a href="' . $edit_link . '" title="'
71
-                          . __('Edit Question', 'event_espresso') . '">'
72
-                          . __('Edit', 'event_espresso') . '</a>',
73
-            );
74
-        }
64
+		if (EE_Registry::instance()->CAP->current_user_can(
65
+			'ee_edit_question',
66
+			'espresso_registration_form_edit_question',
67
+			$item->ID()
68
+		)) {
69
+			$actions = array(
70
+				'edit' => '<a href="' . $edit_link . '" title="'
71
+						  . __('Edit Question', 'event_espresso') . '">'
72
+						  . __('Edit', 'event_espresso') . '</a>',
73
+			);
74
+		}
75 75
 
76
-        if (! $system_question
77
-            && $this->_view != 'trash'
78
-            && EE_Registry::instance()->CAP->current_user_can(
79
-                'ee_delete_question',
80
-                'espresso_registration_form_trash_question',
81
-                $item->ID()
82
-            )) {
83
-                $actions['delete'] = '<a href="' . $trash_link . '" title="'
84
-                                     . __('Trash Question', 'event_espresso') . '">'
85
-                                     . __('Trash', 'event_espresso') . '</a>';
86
-        }
76
+		if (! $system_question
77
+			&& $this->_view != 'trash'
78
+			&& EE_Registry::instance()->CAP->current_user_can(
79
+				'ee_delete_question',
80
+				'espresso_registration_form_trash_question',
81
+				$item->ID()
82
+			)) {
83
+				$actions['delete'] = '<a href="' . $trash_link . '" title="'
84
+									 . __('Trash Question', 'event_espresso') . '">'
85
+									 . __('Trash', 'event_espresso') . '</a>';
86
+		}
87 87
 
88
-        if ($this->_view == 'trash') {
89
-            if (EE_Registry::instance()->CAP->current_user_can(
90
-                'ee_delete_question',
91
-                'espresso_registration_form_restore_question',
92
-                $item->ID()
93
-            )) {
94
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
95
-                                      . __('Restore Question', 'event_espresso') . '">'
96
-                                      . __('Restore', 'event_espresso') . '</a>';
97
-            }
98
-            if ($item->count_related('Answer') === 0
99
-                && EE_Registry::instance()->CAP->current_user_can(
100
-                    'ee_delete_question',
101
-                    'espresso_registration_form_delete_questions',
102
-                    $item->ID()
103
-                )) {
104
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
105
-                                         . __('Delete Question Permanently', 'event_espresso') . '">'
106
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
107
-            }
108
-        }
109
-        if (EE_Registry::instance()->CAP->current_user_can(
110
-            'ee_edit_questions',
111
-            'espresso_registration_form_edit_question'
112
-        )) {
113
-            $actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
-                                    . __('Duplicate Question', 'event_espresso') . '">'
115
-                                    . __('Duplicate', 'event_espresso') . '</a>';
116
-        }
88
+		if ($this->_view == 'trash') {
89
+			if (EE_Registry::instance()->CAP->current_user_can(
90
+				'ee_delete_question',
91
+				'espresso_registration_form_restore_question',
92
+				$item->ID()
93
+			)) {
94
+				$actions['restore'] = '<a href="' . $restore_link . '" title="'
95
+									  . __('Restore Question', 'event_espresso') . '">'
96
+									  . __('Restore', 'event_espresso') . '</a>';
97
+			}
98
+			if ($item->count_related('Answer') === 0
99
+				&& EE_Registry::instance()->CAP->current_user_can(
100
+					'ee_delete_question',
101
+					'espresso_registration_form_delete_questions',
102
+					$item->ID()
103
+				)) {
104
+					$actions['delete'] = '<a href="' . $delete_link . '" title="'
105
+										 . __('Delete Question Permanently', 'event_espresso') . '">'
106
+										 . __('Delete Permanently', 'event_espresso') . '</a>';
107
+			}
108
+		}
109
+		if (EE_Registry::instance()->CAP->current_user_can(
110
+			'ee_edit_questions',
111
+			'espresso_registration_form_edit_question'
112
+		)) {
113
+			$actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
+									. __('Duplicate Question', 'event_espresso') . '">'
115
+									. __('Duplicate', 'event_espresso') . '</a>';
116
+		}
117 117
 
118
-        $content = EE_Registry::instance()->CAP->current_user_can(
119
-            'ee_edit_question',
120
-            'espresso_registration_form_edit_question',
121
-            $item->ID()
122
-        )
123
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
124
-            : $item->display_text();
125
-        $content .= $this->row_actions($actions);
126
-        return $content;
127
-    }
118
+		$content = EE_Registry::instance()->CAP->current_user_can(
119
+			'ee_edit_question',
120
+			'espresso_registration_form_edit_question',
121
+			$item->ID()
122
+		)
123
+			? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
124
+			: $item->display_text();
125
+		$content .= $this->row_actions($actions);
126
+		return $content;
127
+	}
128 128
 }
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $system_question = $item->is_system_question();
27 27
         $actions = array();
28 28
 
29
-        if (! defined('REG_ADMIN_URL')) {
29
+        if ( ! defined('REG_ADMIN_URL')) {
30 30
             define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31 31
         }
32 32
 
@@ -67,22 +67,22 @@  discard block
 block discarded – undo
67 67
             $item->ID()
68 68
         )) {
69 69
             $actions = array(
70
-                'edit' => '<a href="' . $edit_link . '" title="'
71
-                          . __('Edit Question', 'event_espresso') . '">'
72
-                          . __('Edit', 'event_espresso') . '</a>',
70
+                'edit' => '<a href="'.$edit_link.'" title="'
71
+                          . __('Edit Question', 'event_espresso').'">'
72
+                          . __('Edit', 'event_espresso').'</a>',
73 73
             );
74 74
         }
75 75
 
76
-        if (! $system_question
76
+        if ( ! $system_question
77 77
             && $this->_view != 'trash'
78 78
             && EE_Registry::instance()->CAP->current_user_can(
79 79
                 'ee_delete_question',
80 80
                 'espresso_registration_form_trash_question',
81 81
                 $item->ID()
82 82
             )) {
83
-                $actions['delete'] = '<a href="' . $trash_link . '" title="'
84
-                                     . __('Trash Question', 'event_espresso') . '">'
85
-                                     . __('Trash', 'event_espresso') . '</a>';
83
+                $actions['delete'] = '<a href="'.$trash_link.'" title="'
84
+                                     . __('Trash Question', 'event_espresso').'">'
85
+                                     . __('Trash', 'event_espresso').'</a>';
86 86
         }
87 87
 
88 88
         if ($this->_view == 'trash') {
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
                 'espresso_registration_form_restore_question',
92 92
                 $item->ID()
93 93
             )) {
94
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
95
-                                      . __('Restore Question', 'event_espresso') . '">'
96
-                                      . __('Restore', 'event_espresso') . '</a>';
94
+                $actions['restore'] = '<a href="'.$restore_link.'" title="'
95
+                                      . __('Restore Question', 'event_espresso').'">'
96
+                                      . __('Restore', 'event_espresso').'</a>';
97 97
             }
98 98
             if ($item->count_related('Answer') === 0
99 99
                 && EE_Registry::instance()->CAP->current_user_can(
@@ -101,18 +101,18 @@  discard block
 block discarded – undo
101 101
                     'espresso_registration_form_delete_questions',
102 102
                     $item->ID()
103 103
                 )) {
104
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
105
-                                         . __('Delete Question Permanently', 'event_espresso') . '">'
106
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
104
+                    $actions['delete'] = '<a href="'.$delete_link.'" title="'
105
+                                         . __('Delete Question Permanently', 'event_espresso').'">'
106
+                                         . __('Delete Permanently', 'event_espresso').'</a>';
107 107
             }
108 108
         }
109 109
         if (EE_Registry::instance()->CAP->current_user_can(
110 110
             'ee_edit_questions',
111 111
             'espresso_registration_form_edit_question'
112 112
         )) {
113
-            $actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
-                                    . __('Duplicate Question', 'event_espresso') . '">'
115
-                                    . __('Duplicate', 'event_espresso') . '</a>';
113
+            $actions['duplicate'] = '<a href="'.$duplicate_link.'" title="'
114
+                                    . __('Duplicate Question', 'event_espresso').'">'
115
+                                    . __('Duplicate', 'event_espresso').'</a>';
116 116
         }
117 117
 
118 118
         $content = EE_Registry::instance()->CAP->current_user_can(
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             'espresso_registration_form_edit_question',
121 121
             $item->ID()
122 122
         )
123
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
123
+            ? '<strong><a class="row-title" href="'.$edit_link.'">'.$item->display_text().'</a></strong>'
124 124
             : $item->display_text();
125 125
         $content .= $this->row_actions($actions);
126 126
         return $content;
Please login to merge, or discard this patch.
Registration_Form_Question_Groups_Admin_List_Table.class.php 2 patches
Indentation   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -30,231 +30,231 @@
 block discarded – undo
30 30
 {
31 31
 
32 32
 
33
-    public function __construct($admin_page)
34
-    {
35
-        parent::__construct($admin_page);
36
-    }
37
-
38
-
39
-    protected function _setup_data()
40
-    {
41
-        $this->_data = $this->_view != 'trash'
42
-            ? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, false)
43
-            : $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, false);
44
-        $this->_all_data_count = $this->_view != 'trash'
45
-            ? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, true)
46
-            : $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, true);
47
-    }
48
-
49
-
50
-    protected function _set_properties()
51
-    {
52
-        $this->_wp_list_args = array(
53
-            'singular' => __('question group', 'event_espresso'),
54
-            'plural'   => __('question groups', 'event_espresso'),
55
-            'ajax'     => true, // for now,
56
-            'screen'   => $this->_admin_page->get_current_screen()->id,
57
-        );
58
-
59
-        $this->_columns = array(
60
-            'cb'              => '<input type="checkbox" />',
61
-            'id'              => __('ID', 'event_espresso'),
62
-            'name'            => __('Group Name', 'event_espresso'),
63
-            'description'     => __('Description', 'event_espresso'),
64
-            'show_group_name' => __('Show Name', 'event_espresso'),
65
-            'show_group_desc' => __('Show Desc', 'event_espresso'),
66
-        );
67
-
68
-        $this->_sortable_columns = array(
69
-            'id'   => array('QSG_ID' => false),
70
-            'name' => array('QSG_name' => false),
71
-        );
72
-
73
-        $this->_hidden_columns = array(
74
-            'id',
75
-        );
76
-
77
-        $this->_ajax_sorting_callback = 'update_question_group_order';
78
-    }
79
-
80
-
81
-    // not needed
82
-    protected function _get_table_filters()
83
-    {
84
-        return array();
85
-    }
86
-
87
-
88
-    protected function _add_view_counts()
89
-    {
90
-        $this->_views['all']['count'] = $this->_admin_page->get_question_groups(
91
-            $this->_per_page,
92
-            $this->_current_page,
93
-            true
94
-        );
95
-        if (EE_Registry::instance()->CAP->current_user_can(
96
-            'ee_delete_question_groups',
97
-            'espresso_registration_form_trash_question_group'
98
-        )) {
99
-            $this->_views['trash']['count'] = $this->_admin_page->get_trashed_question_groups(
100
-                $this->_per_page,
101
-                $this->_current_page,
102
-                true
103
-            );
104
-        }
105
-    }
106
-
107
-
108
-    public function column_cb($item)
109
-    {
110
-        $system_group = $item->get('QSG_system');
111
-        $has_questions_with_answers = $item->has_questions_with_answers();
112
-        $lock_icon = $system_group === 0 && $this->_view == 'trash' && $has_questions_with_answers
113
-            ? 'ee-lock-icon ee-alternate-color'
114
-            : 'ee-lock-icon ee-system-lock';
115
-        return $system_group > 0
116
-               || ($system_group === 0
117
-                    && $this->_view == 'trash'
118
-                    && $has_questions_with_answers
119
-                )
120
-               || ! EE_Registry::instance()->CAP->current_user_can(
121
-                   'ee_delete_question_groups',
122
-                   'espresso_registration_form_trash_question_groups',
123
-                   $item->ID()
124
-               )
125
-            ? '<span class="' . $lock_icon . '"></span>'
126
-              . sprintf(
127
-                  '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128
-                  $item->ID()
129
-              )
130
-            : sprintf(
131
-                '<input type="checkbox" id="QSG_ID[%1$d]" name="checkbox[%1$d]" value="%1$d" />',
132
-                $item->ID()
133
-            );
134
-    }
135
-
136
-
137
-    public function column_id(EE_Question_Group $item)
138
-    {
139
-        $content = $item->ID();
140
-        $content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
141
-        return $content;
142
-    }
143
-
144
-
145
-    public function column_name(EE_Question_Group $item)
146
-    {
147
-        $actions = array();
148
-
149
-        // return $item->name();
150
-        if (! defined('REG_ADMIN_URL')) {
151
-            define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152
-        }
153
-
154
-        $edit_query_args = array(
155
-            'action' => 'edit_question_group',
156
-            'QSG_ID' => $item->ID(),
157
-        );
158
-
159
-        $trash_query_args = array(
160
-            'action' => 'trash_question_group',
161
-            'QSG_ID' => $item->ID(),
162
-        );
163
-
164
-        $restore_query_args = array(
165
-            'action' => 'restore_question_group',
166
-            'QSG_ID' => $item->ID(),
167
-        );
168
-
169
-        $delete_query_args = array(
170
-            'action' => 'delete_question_group',
171
-            'QSG_ID' => $item->ID(),
172
-        );
173
-
174
-
175
-        $edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
176
-        $trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
177
-        $restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
178
-        $delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
179
-
180
-        if (EE_Registry::instance()->CAP->current_user_can(
181
-            'ee_edit_question_group',
182
-            'espresso_registration_form_edit_question_group',
183
-            $item->ID()
184
-        )) {
185
-            $actions = array(
186
-                'edit' => '<a href="' . $edit_link . '" title="'
187
-                          . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
-                          . __('Edit', 'event_espresso') . '</a>',
189
-            );
190
-        }
191
-        if ($item->get('QSG_system') < 1
192
-            && $this->_view != 'trash'
193
-            && EE_Registry::instance()->CAP->current_user_can(
194
-                'ee_delete_question_group',
195
-                'espresso_registration_form_trash_question_group',
196
-                $item->ID()
197
-            )) {
198
-            $actions['delete'] = '<a href="' . $trash_link . '" title="'
199
-                                 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
-                                 . __('Trash', 'event_espresso') . '</a>';
201
-        }
202
-
203
-        if ($this->_view == 'trash') {
204
-            if (EE_Registry::instance()->CAP->current_user_can(
205
-                'ee_delete_question_group',
206
-                'espresso_registration_form_restore_question_group',
207
-                $item->ID()
208
-            )) {
209
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
210
-                                      . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
-                                      . __('Restore', 'event_espresso') . '</a>';
212
-            }
213
-
214
-            if (! $item->has_questions_with_answers()
215
-                && EE_Registry::instance()->CAP->current_user_can(
216
-                    'ee_delete_question_group',
217
-                    'espresso_registration_form_delete_question_group',
218
-                    $item->ID()
219
-                )) {
220
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
221
-                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
223
-            }
224
-        }
225
-
226
-        $content = EE_Registry::instance()->CAP->current_user_can(
227
-            'ee_edit_question_group',
228
-            'espresso_registration_form_edit_question_group',
229
-            $item->ID()
230
-        )
231
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
232
-            : $item->name();
233
-        $content .= $this->row_actions($actions);
234
-        return $content;
235
-    }
236
-
237
-
238
-    public function column_identifier(EE_Question_Group $item)
239
-    {
240
-        return $item->identifier();
241
-    }
242
-
243
-
244
-    public function column_description(EE_Question_Group $item)
245
-    {
246
-        return $item->desc();
247
-    }
248
-
249
-
250
-    public function column_show_group_name(EE_Question_Group $item)
251
-    {
252
-        return $this->_yes_no[ $item->show_group_name() ];
253
-    }
254
-
255
-
256
-    public function column_show_group_desc(EE_Question_Group $item)
257
-    {
258
-        return $this->_yes_no[ $item->show_group_desc() ];
259
-    }
33
+	public function __construct($admin_page)
34
+	{
35
+		parent::__construct($admin_page);
36
+	}
37
+
38
+
39
+	protected function _setup_data()
40
+	{
41
+		$this->_data = $this->_view != 'trash'
42
+			? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, false)
43
+			: $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, false);
44
+		$this->_all_data_count = $this->_view != 'trash'
45
+			? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, true)
46
+			: $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, true);
47
+	}
48
+
49
+
50
+	protected function _set_properties()
51
+	{
52
+		$this->_wp_list_args = array(
53
+			'singular' => __('question group', 'event_espresso'),
54
+			'plural'   => __('question groups', 'event_espresso'),
55
+			'ajax'     => true, // for now,
56
+			'screen'   => $this->_admin_page->get_current_screen()->id,
57
+		);
58
+
59
+		$this->_columns = array(
60
+			'cb'              => '<input type="checkbox" />',
61
+			'id'              => __('ID', 'event_espresso'),
62
+			'name'            => __('Group Name', 'event_espresso'),
63
+			'description'     => __('Description', 'event_espresso'),
64
+			'show_group_name' => __('Show Name', 'event_espresso'),
65
+			'show_group_desc' => __('Show Desc', 'event_espresso'),
66
+		);
67
+
68
+		$this->_sortable_columns = array(
69
+			'id'   => array('QSG_ID' => false),
70
+			'name' => array('QSG_name' => false),
71
+		);
72
+
73
+		$this->_hidden_columns = array(
74
+			'id',
75
+		);
76
+
77
+		$this->_ajax_sorting_callback = 'update_question_group_order';
78
+	}
79
+
80
+
81
+	// not needed
82
+	protected function _get_table_filters()
83
+	{
84
+		return array();
85
+	}
86
+
87
+
88
+	protected function _add_view_counts()
89
+	{
90
+		$this->_views['all']['count'] = $this->_admin_page->get_question_groups(
91
+			$this->_per_page,
92
+			$this->_current_page,
93
+			true
94
+		);
95
+		if (EE_Registry::instance()->CAP->current_user_can(
96
+			'ee_delete_question_groups',
97
+			'espresso_registration_form_trash_question_group'
98
+		)) {
99
+			$this->_views['trash']['count'] = $this->_admin_page->get_trashed_question_groups(
100
+				$this->_per_page,
101
+				$this->_current_page,
102
+				true
103
+			);
104
+		}
105
+	}
106
+
107
+
108
+	public function column_cb($item)
109
+	{
110
+		$system_group = $item->get('QSG_system');
111
+		$has_questions_with_answers = $item->has_questions_with_answers();
112
+		$lock_icon = $system_group === 0 && $this->_view == 'trash' && $has_questions_with_answers
113
+			? 'ee-lock-icon ee-alternate-color'
114
+			: 'ee-lock-icon ee-system-lock';
115
+		return $system_group > 0
116
+			   || ($system_group === 0
117
+					&& $this->_view == 'trash'
118
+					&& $has_questions_with_answers
119
+				)
120
+			   || ! EE_Registry::instance()->CAP->current_user_can(
121
+				   'ee_delete_question_groups',
122
+				   'espresso_registration_form_trash_question_groups',
123
+				   $item->ID()
124
+			   )
125
+			? '<span class="' . $lock_icon . '"></span>'
126
+			  . sprintf(
127
+				  '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128
+				  $item->ID()
129
+			  )
130
+			: sprintf(
131
+				'<input type="checkbox" id="QSG_ID[%1$d]" name="checkbox[%1$d]" value="%1$d" />',
132
+				$item->ID()
133
+			);
134
+	}
135
+
136
+
137
+	public function column_id(EE_Question_Group $item)
138
+	{
139
+		$content = $item->ID();
140
+		$content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
141
+		return $content;
142
+	}
143
+
144
+
145
+	public function column_name(EE_Question_Group $item)
146
+	{
147
+		$actions = array();
148
+
149
+		// return $item->name();
150
+		if (! defined('REG_ADMIN_URL')) {
151
+			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152
+		}
153
+
154
+		$edit_query_args = array(
155
+			'action' => 'edit_question_group',
156
+			'QSG_ID' => $item->ID(),
157
+		);
158
+
159
+		$trash_query_args = array(
160
+			'action' => 'trash_question_group',
161
+			'QSG_ID' => $item->ID(),
162
+		);
163
+
164
+		$restore_query_args = array(
165
+			'action' => 'restore_question_group',
166
+			'QSG_ID' => $item->ID(),
167
+		);
168
+
169
+		$delete_query_args = array(
170
+			'action' => 'delete_question_group',
171
+			'QSG_ID' => $item->ID(),
172
+		);
173
+
174
+
175
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
176
+		$trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
177
+		$restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
178
+		$delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
179
+
180
+		if (EE_Registry::instance()->CAP->current_user_can(
181
+			'ee_edit_question_group',
182
+			'espresso_registration_form_edit_question_group',
183
+			$item->ID()
184
+		)) {
185
+			$actions = array(
186
+				'edit' => '<a href="' . $edit_link . '" title="'
187
+						  . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
+						  . __('Edit', 'event_espresso') . '</a>',
189
+			);
190
+		}
191
+		if ($item->get('QSG_system') < 1
192
+			&& $this->_view != 'trash'
193
+			&& EE_Registry::instance()->CAP->current_user_can(
194
+				'ee_delete_question_group',
195
+				'espresso_registration_form_trash_question_group',
196
+				$item->ID()
197
+			)) {
198
+			$actions['delete'] = '<a href="' . $trash_link . '" title="'
199
+								 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
+								 . __('Trash', 'event_espresso') . '</a>';
201
+		}
202
+
203
+		if ($this->_view == 'trash') {
204
+			if (EE_Registry::instance()->CAP->current_user_can(
205
+				'ee_delete_question_group',
206
+				'espresso_registration_form_restore_question_group',
207
+				$item->ID()
208
+			)) {
209
+				$actions['restore'] = '<a href="' . $restore_link . '" title="'
210
+									  . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
+									  . __('Restore', 'event_espresso') . '</a>';
212
+			}
213
+
214
+			if (! $item->has_questions_with_answers()
215
+				&& EE_Registry::instance()->CAP->current_user_can(
216
+					'ee_delete_question_group',
217
+					'espresso_registration_form_delete_question_group',
218
+					$item->ID()
219
+				)) {
220
+					$actions['delete'] = '<a href="' . $delete_link . '" title="'
221
+										 . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
+										 . __('Delete Permanently', 'event_espresso') . '</a>';
223
+			}
224
+		}
225
+
226
+		$content = EE_Registry::instance()->CAP->current_user_can(
227
+			'ee_edit_question_group',
228
+			'espresso_registration_form_edit_question_group',
229
+			$item->ID()
230
+		)
231
+			? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
232
+			: $item->name();
233
+		$content .= $this->row_actions($actions);
234
+		return $content;
235
+	}
236
+
237
+
238
+	public function column_identifier(EE_Question_Group $item)
239
+	{
240
+		return $item->identifier();
241
+	}
242
+
243
+
244
+	public function column_description(EE_Question_Group $item)
245
+	{
246
+		return $item->desc();
247
+	}
248
+
249
+
250
+	public function column_show_group_name(EE_Question_Group $item)
251
+	{
252
+		return $this->_yes_no[ $item->show_group_name() ];
253
+	}
254
+
255
+
256
+	public function column_show_group_desc(EE_Question_Group $item)
257
+	{
258
+		return $this->_yes_no[ $item->show_group_desc() ];
259
+	}
260 260
 }
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                    'espresso_registration_form_trash_question_groups',
123 123
                    $item->ID()
124 124
                )
125
-            ? '<span class="' . $lock_icon . '"></span>'
125
+            ? '<span class="'.$lock_icon.'"></span>'
126 126
               . sprintf(
127 127
                   '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128 128
                   $item->ID()
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     public function column_id(EE_Question_Group $item)
138 138
     {
139 139
         $content = $item->ID();
140
-        $content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
140
+        $content .= '  <span class="show-on-mobile-view-only">'.$item->name().'</span>';
141 141
         return $content;
142 142
     }
143 143
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         $actions = array();
148 148
 
149 149
         // return $item->name();
150
-        if (! defined('REG_ADMIN_URL')) {
150
+        if ( ! defined('REG_ADMIN_URL')) {
151 151
             define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152 152
         }
153 153
 
@@ -183,9 +183,9 @@  discard block
 block discarded – undo
183 183
             $item->ID()
184 184
         )) {
185 185
             $actions = array(
186
-                'edit' => '<a href="' . $edit_link . '" title="'
187
-                          . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
-                          . __('Edit', 'event_espresso') . '</a>',
186
+                'edit' => '<a href="'.$edit_link.'" title="'
187
+                          . esc_attr__('Edit Question Group', 'event_espresso').'">'
188
+                          . __('Edit', 'event_espresso').'</a>',
189 189
             );
190 190
         }
191 191
         if ($item->get('QSG_system') < 1
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
                 'espresso_registration_form_trash_question_group',
196 196
                 $item->ID()
197 197
             )) {
198
-            $actions['delete'] = '<a href="' . $trash_link . '" title="'
199
-                                 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
-                                 . __('Trash', 'event_espresso') . '</a>';
198
+            $actions['delete'] = '<a href="'.$trash_link.'" title="'
199
+                                 . esc_attr__('Delete Question Group', 'event_espresso').'">'
200
+                                 . __('Trash', 'event_espresso').'</a>';
201 201
         }
202 202
 
203 203
         if ($this->_view == 'trash') {
@@ -206,20 +206,20 @@  discard block
 block discarded – undo
206 206
                 'espresso_registration_form_restore_question_group',
207 207
                 $item->ID()
208 208
             )) {
209
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
210
-                                      . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
-                                      . __('Restore', 'event_espresso') . '</a>';
209
+                $actions['restore'] = '<a href="'.$restore_link.'" title="'
210
+                                      . esc_attr__('Restore Question Group', 'event_espresso').'">'
211
+                                      . __('Restore', 'event_espresso').'</a>';
212 212
             }
213 213
 
214
-            if (! $item->has_questions_with_answers()
214
+            if ( ! $item->has_questions_with_answers()
215 215
                 && EE_Registry::instance()->CAP->current_user_can(
216 216
                     'ee_delete_question_group',
217 217
                     'espresso_registration_form_delete_question_group',
218 218
                     $item->ID()
219 219
                 )) {
220
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
221
-                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
220
+                    $actions['delete'] = '<a href="'.$delete_link.'" title="'
221
+                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso').'">'
222
+                                         . __('Delete Permanently', 'event_espresso').'</a>';
223 223
             }
224 224
         }
225 225
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
             'espresso_registration_form_edit_question_group',
229 229
             $item->ID()
230 230
         )
231
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
231
+            ? '<strong><a class="row-title" href="'.$edit_link.'">'.$item->name().'</a></strong>'
232 232
             : $item->name();
233 233
         $content .= $this->row_actions($actions);
234 234
         return $content;
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
 
250 250
     public function column_show_group_name(EE_Question_Group $item)
251 251
     {
252
-        return $this->_yes_no[ $item->show_group_name() ];
252
+        return $this->_yes_no[$item->show_group_name()];
253 253
     }
254 254
 
255 255
 
256 256
     public function column_show_group_desc(EE_Question_Group $item)
257 257
     {
258
-        return $this->_yes_no[ $item->show_group_desc() ];
258
+        return $this->_yes_no[$item->show_group_desc()];
259 259
     }
260 260
 }
Please login to merge, or discard this patch.
help_tours/Registration_Form_Questions_Overview_Help_Tour.class.php 2 patches
Indentation   +139 added lines, -139 removed lines patch added patch discarded remove patch
@@ -28,155 +28,155 @@
 block discarded – undo
28 28
 class Registration_Form_Questions_Overview_Help_Tour extends EE_Help_Tour
29 29
 {
30 30
 
31
-    protected function _set_tour_properties()
32
-    {
33
-        $this->_label = __('Questions Overview Tour', 'event_espresso');
34
-        $this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
35
-    }
31
+	protected function _set_tour_properties()
32
+	{
33
+		$this->_label = __('Questions Overview Tour', 'event_espresso');
34
+		$this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
35
+	}
36 36
 
37
-    protected function _set_tour_stops()
38
-    {
39
-        $this->_stops = array(
40
-            10  => array(
41
-                'content' => $this->_start(),
42
-            ),
43
-            30  => array(
44
-                'id'      => 'display_text',
45
-                'content' => $this->_display_text_stop(),
46
-                'options' => array(
47
-                    'tipLocation'    => 'top',
48
-                    'tipAdjustmentX' => -5,
49
-                    'tipAdjustmentY' => -25,
50
-                ),
51
-            ),
52
-            40  => array(
53
-                'id'      => 'admin_label',
54
-                'content' => $this->_admin_label_stop(),
55
-                'options' => array(
56
-                    'tipLocation'    => 'top',
57
-                    'tipAdjustmentX' => 20,
58
-                    'tipAdjustmentY' => -25,
59
-                ),
60
-            ),
61
-            50  => array(
62
-                'id'      => 'type',
63
-                'content' => $this->_type_stop(),
64
-                'options' => array(
65
-                    'tipLocation'    => 'top',
66
-                    'tipAdjustmentX' => -5,
67
-                    'tipAdjustmentY' => -25,
68
-                ),
69
-            ),
70
-            60  => array(
71
-                'id'      => 'values',
72
-                'content' => $this->_values_stop(),
73
-                'options' => array(
74
-                    'tipLocation'    => 'top',
75
-                    'tipAdjustmentX' => -5,
76
-                    'tipAdjustmentY' => -25,
77
-                ),
78
-            ),
79
-            70  => array(
80
-                'id'      => 'required',
81
-                'content' => $this->_required_stop(),
82
-                'options' => array(
83
-                    'tipLocation'    => 'top',
84
-                    'tipAdjustmentY' => -20,
85
-                    'tipAdjustmentX' => -15,
86
-                ),
87
-            ),
88
-            80  => array(
89
-                'class'   => 'bulkactions',
90
-                'content' => $this->_bulk_actions_stop(),
91
-                'options' => array(
92
-                    'tipLocation'    => 'top',
93
-                    'tipAdjustmentY' => -30,
94
-                    'tipAdjustmentX' => -15,
95
-                ),
96
-            ),
97
-            90  => array(
98
-                'id'      => 'event-espresso_page_espresso_registration_form-search-input',
99
-                'content' => $this->_search_stop(),
100
-                'options' => array(
101
-                    'tipLocation'    => 'left',
102
-                    'tipAdjustmentY' => -50,
103
-                    'tipAdjustmentX' => -15,
104
-                ),
105
-            ),
106
-            100 => array(
107
-                'id'      => 'add-new-question',
108
-                'content' => $this->_add_new_question_stop(),
109
-                'options' => array(
110
-                    'tipLocation'    => 'right',
111
-                    'tipAdjustmentY' => -50,
112
-                    'tipAdjustmentX' => 15,
113
-                ),
114
-            ),
115
-        );
116
-    }
37
+	protected function _set_tour_stops()
38
+	{
39
+		$this->_stops = array(
40
+			10  => array(
41
+				'content' => $this->_start(),
42
+			),
43
+			30  => array(
44
+				'id'      => 'display_text',
45
+				'content' => $this->_display_text_stop(),
46
+				'options' => array(
47
+					'tipLocation'    => 'top',
48
+					'tipAdjustmentX' => -5,
49
+					'tipAdjustmentY' => -25,
50
+				),
51
+			),
52
+			40  => array(
53
+				'id'      => 'admin_label',
54
+				'content' => $this->_admin_label_stop(),
55
+				'options' => array(
56
+					'tipLocation'    => 'top',
57
+					'tipAdjustmentX' => 20,
58
+					'tipAdjustmentY' => -25,
59
+				),
60
+			),
61
+			50  => array(
62
+				'id'      => 'type',
63
+				'content' => $this->_type_stop(),
64
+				'options' => array(
65
+					'tipLocation'    => 'top',
66
+					'tipAdjustmentX' => -5,
67
+					'tipAdjustmentY' => -25,
68
+				),
69
+			),
70
+			60  => array(
71
+				'id'      => 'values',
72
+				'content' => $this->_values_stop(),
73
+				'options' => array(
74
+					'tipLocation'    => 'top',
75
+					'tipAdjustmentX' => -5,
76
+					'tipAdjustmentY' => -25,
77
+				),
78
+			),
79
+			70  => array(
80
+				'id'      => 'required',
81
+				'content' => $this->_required_stop(),
82
+				'options' => array(
83
+					'tipLocation'    => 'top',
84
+					'tipAdjustmentY' => -20,
85
+					'tipAdjustmentX' => -15,
86
+				),
87
+			),
88
+			80  => array(
89
+				'class'   => 'bulkactions',
90
+				'content' => $this->_bulk_actions_stop(),
91
+				'options' => array(
92
+					'tipLocation'    => 'top',
93
+					'tipAdjustmentY' => -30,
94
+					'tipAdjustmentX' => -15,
95
+				),
96
+			),
97
+			90  => array(
98
+				'id'      => 'event-espresso_page_espresso_registration_form-search-input',
99
+				'content' => $this->_search_stop(),
100
+				'options' => array(
101
+					'tipLocation'    => 'left',
102
+					'tipAdjustmentY' => -50,
103
+					'tipAdjustmentX' => -15,
104
+				),
105
+			),
106
+			100 => array(
107
+				'id'      => 'add-new-question',
108
+				'content' => $this->_add_new_question_stop(),
109
+				'options' => array(
110
+					'tipLocation'    => 'right',
111
+					'tipAdjustmentY' => -50,
112
+					'tipAdjustmentX' => 15,
113
+				),
114
+			),
115
+		);
116
+	}
117 117
 
118 118
 
119
-    protected function _start()
120
-    {
121
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
122
-        $content .= '<p>'
123
-                    . __(
124
-                        'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125
-                        'event_espresso'
126
-                    ) . '</p>';
119
+	protected function _start()
120
+	{
121
+		$content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
122
+		$content .= '<p>'
123
+					. __(
124
+						'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125
+						'event_espresso'
126
+					) . '</p>';
127 127
 
128
-        return $content;
129
-    }
128
+		return $content;
129
+	}
130 130
 
131
-    protected function _display_text_stop()
132
-    {
133
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
134
-    }
131
+	protected function _display_text_stop()
132
+	{
133
+		return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
134
+	}
135 135
 
136
-    protected function _admin_label_stop()
137
-    {
138
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
139
-    }
136
+	protected function _admin_label_stop()
137
+	{
138
+		return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
139
+	}
140 140
 
141
-    protected function _type_stop()
142
-    {
143
-        return '<p>'
144
-               . __(
145
-                   'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146
-                   'event_espresso'
147
-               ) . '</p>';
148
-    }
141
+	protected function _type_stop()
142
+	{
143
+		return '<p>'
144
+			   . __(
145
+				   'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146
+				   'event_espresso'
147
+			   ) . '</p>';
148
+	}
149 149
 
150
-    protected function _values_stop()
151
-    {
152
-        return '<p>'
153
-               . __(
154
-                   'View stored values for checkboxes, radio buttons, and select boxes.',
155
-                   'event_espresso'
156
-               ) . '</p>';
157
-    }
150
+	protected function _values_stop()
151
+	{
152
+		return '<p>'
153
+			   . __(
154
+				   'View stored values for checkboxes, radio buttons, and select boxes.',
155
+				   'event_espresso'
156
+			   ) . '</p>';
157
+	}
158 158
 
159
-    protected function _required_stop()
160
-    {
161
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
162
-    }
159
+	protected function _required_stop()
160
+	{
161
+		return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
162
+	}
163 163
 
164
-    protected function _bulk_actions_stop()
165
-    {
166
-        return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
167
-    }
164
+	protected function _bulk_actions_stop()
165
+	{
166
+		return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
167
+	}
168 168
 
169
-    protected function _search_stop()
170
-    {
171
-        return '<p>'
172
-               . __(
173
-                   'Search through questions. The following sources will be searched: Name of Question (display text).',
174
-                   'event_espresso'
175
-               ) . '</p>';
176
-    }
169
+	protected function _search_stop()
170
+	{
171
+		return '<p>'
172
+			   . __(
173
+				   'Search through questions. The following sources will be searched: Name of Question (display text).',
174
+				   'event_espresso'
175
+			   ) . '</p>';
176
+	}
177 177
 
178
-    protected function _add_new_question_stop()
179
-    {
180
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
181
-    }
178
+	protected function _add_new_question_stop()
179
+	{
180
+		return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
181
+	}
182 182
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -118,24 +118,24 @@  discard block
 block discarded – undo
118 118
 
119 119
     protected function _start()
120 120
     {
121
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
121
+        $content = '<h3>'.__('Questions Overview', 'event_espresso').'</h3>';
122 122
         $content .= '<p>'
123 123
                     . __(
124 124
                         'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125 125
                         'event_espresso'
126
-                    ) . '</p>';
126
+                    ).'</p>';
127 127
 
128 128
         return $content;
129 129
     }
130 130
 
131 131
     protected function _display_text_stop()
132 132
     {
133
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
133
+        return '<p>'.__('View available questions.', 'event_espresso').'</p>';
134 134
     }
135 135
 
136 136
     protected function _admin_label_stop()
137 137
     {
138
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
138
+        return '<p>'.__('View the admin label for your questions.', 'event_espresso').'</p>';
139 139
     }
140 140
 
141 141
     protected function _type_stop()
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                . __(
145 145
                    'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146 146
                    'event_espresso'
147
-               ) . '</p>';
147
+               ).'</p>';
148 148
     }
149 149
 
150 150
     protected function _values_stop()
@@ -153,17 +153,17 @@  discard block
 block discarded – undo
153 153
                . __(
154 154
                    'View stored values for checkboxes, radio buttons, and select boxes.',
155 155
                    'event_espresso'
156
-               ) . '</p>';
156
+               ).'</p>';
157 157
     }
158 158
 
159 159
     protected function _required_stop()
160 160
     {
161
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
161
+        return '<p>'.__('View if a question is required.', 'event_espresso').'</p>';
162 162
     }
163 163
 
164 164
     protected function _bulk_actions_stop()
165 165
     {
166
-        return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
166
+        return '<p>'.__('Perform bulk actions to multiple questions.', 'event_espresso').'</p>';
167 167
     }
168 168
 
169 169
     protected function _search_stop()
@@ -172,11 +172,11 @@  discard block
 block discarded – undo
172 172
                . __(
173 173
                    'Search through questions. The following sources will be searched: Name of Question (display text).',
174 174
                    'event_espresso'
175
-               ) . '</p>';
175
+               ).'</p>';
176 176
     }
177 177
 
178 178
     protected function _add_new_question_stop()
179 179
     {
180
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
180
+        return '<p>'.__('Click here to add a new question.', 'event_espresso').'</p>';
181 181
     }
182 182
 }
Please login to merge, or discard this patch.
caffeinated/admin/extend/events/Tickets_List_Table.class.php 2 patches
Indentation   +147 added lines, -147 removed lines patch added patch discarded remove patch
@@ -17,151 +17,151 @@
 block discarded – undo
17 17
 {
18 18
 
19 19
 
20
-    protected function _setup_data()
21
-    {
22
-        $trashed = $this->_admin_page->get_view() == 'trashed' ? true : false;
23
-        $this->_data = $this->_admin_page->get_default_tickets($this->_per_page, false, $trashed);
24
-        $this->_all_data_count = $this->_admin_page->get_default_tickets($this->_per_page, true, false);
25
-        $this->_trashed_count = $this->_admin_page->get_default_tickets($this->_per_page, true, true);
26
-    }
27
-
28
-
29
-    protected function _set_properties()
30
-    {
31
-        $this->_wp_list_args = array(
32
-            'singular' => __('ticket', 'event_espresso'),
33
-            'plural'   => __('tickets', 'event_espresso'),
34
-            'ajax'     => true,
35
-            'screen'   => $this->_admin_page->get_current_screen()->id,
36
-        );
37
-
38
-        $this->_columns = array(
39
-            'cb'              => '<input type="checkbox" />', // Render a checkbox instead of text
40
-            'TKT_name'        => __('Name', 'event_espresso'),
41
-            'TKT_description' => __('Description', 'event_espresso'),
42
-            'TKT_qty'         => __('Quantity', 'event_espresso'),
43
-            'TKT_uses'        => __('Datetimes', 'event_espresso'),
44
-            'TKT_min'         => __('Minimum', 'event_espresso'),
45
-            'TKT_max'         => __('Maximum', 'event_espresso'),
46
-            'TKT_price'       => __('Price', 'event_espresso'),
47
-            'TKT_taxable'     => __('Taxable', 'event_espresso'),
48
-        );
49
-
50
-        $this->_sortable_columns = array(
51
-            // TRUE means its already sorted
52
-            'TKT_name'        => array('TKT_name' => true),
53
-            'TKT_description' => array('TKT_description' => false),
54
-            'TKT_qty'         => array('TKT_qty' => false),
55
-            'TKT_uses'        => array('TKT_uses' => false),
56
-            'TKT_min'         => array('TKT_min' => false),
57
-            'TKT_max'         => array('TKT_max' => false),
58
-            'TKT_price'       => array('TKT_price' => false),
59
-        );
60
-
61
-        $this->_hidden_columns = array();
62
-    }
63
-
64
-
65
-    protected function _get_table_filters()
66
-    {
67
-    }
68
-
69
-
70
-    protected function _add_view_counts()
71
-    {
72
-        $this->_views['all']['count'] = $this->_all_data_count;
73
-        $this->_views['trashed']['count'] = $this->_trashed_count;
74
-    }
75
-
76
-
77
-    public function column_cb($item)
78
-    {
79
-        return $item->ID() === 1
80
-            ? '<span class="ee-lock-icon"></span>'
81
-            : sprintf(
82
-                '<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />',
83
-                $item->ID()
84
-            );
85
-    }
86
-
87
-
88
-    public function column_TKT_name($item)
89
-    {
90
-        // build row actions
91
-        $actions = array();
92
-
93
-        // trash links
94
-        if ($item->ID() !== 1) {
95
-            if ($this->_view == 'all') {
96
-                $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
97
-                    'action' => 'trash_ticket',
98
-                    'TKT_ID' => $item->ID(),
99
-                ), EVENTS_ADMIN_URL);
100
-                $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
101
-                                    . esc_attr__('Move Ticket to trash', 'event_espresso') . '">'
102
-                                    . __('Trash', 'event_espresso') . '</a>';
103
-            } else {
104
-                // restore price link
105
-                $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
106
-                    'action' => 'restore_ticket',
107
-                    'TKT_ID' => $item->ID(),
108
-                ), EVENTS_ADMIN_URL);
109
-                $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
110
-                                      . esc_attr__('Restore Ticket', 'event_espresso') . '">'
111
-                                      . __('Restore', 'event_espresso') . '</a>';
112
-                // delete price link
113
-                $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
114
-                    'action' => 'delete_ticket',
115
-                    'TKT_ID' => $item->ID(),
116
-                ), EVENTS_ADMIN_URL);
117
-                $actions['delete'] = '<a href="' . $delete_lnk_url . '" title="'
118
-                                     . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">'
119
-                                     . __('Delete Permanently', 'event_espresso') . '</a>';
120
-            }
121
-        }
122
-
123
-        return $item->get('TKT_name') . $this->row_actions($actions);
124
-    }
125
-
126
-
127
-    public function column_TKT_description($item)
128
-    {
129
-        return $item->get('TKT_description');
130
-    }
131
-
132
-
133
-    public function column_TKT_qty($item)
134
-    {
135
-        return $item->get_pretty('TKT_qty', 'text');
136
-    }
137
-
138
-
139
-    public function column_TKT_uses($item)
140
-    {
141
-        return $item->get_pretty('TKT_uses', 'text');
142
-    }
143
-
144
-
145
-    public function column_TKT_min($item)
146
-    {
147
-        return $item->get('TKT_min');
148
-    }
149
-
150
-
151
-    public function column_TKT_max($item)
152
-    {
153
-        return $item->get_pretty('TKT_max', 'text');
154
-    }
155
-
156
-
157
-    public function column_TKT_price($item)
158
-    {
159
-        return EEH_Template::format_currency($item->get('TKT_price'));
160
-    }
161
-
162
-
163
-    public function column_TKT_taxable($item)
164
-    {
165
-        return $item->get('TKT_taxable') ? __('Yes', 'event_espresso') : __('No', 'event_espresso');
166
-    }
20
+	protected function _setup_data()
21
+	{
22
+		$trashed = $this->_admin_page->get_view() == 'trashed' ? true : false;
23
+		$this->_data = $this->_admin_page->get_default_tickets($this->_per_page, false, $trashed);
24
+		$this->_all_data_count = $this->_admin_page->get_default_tickets($this->_per_page, true, false);
25
+		$this->_trashed_count = $this->_admin_page->get_default_tickets($this->_per_page, true, true);
26
+	}
27
+
28
+
29
+	protected function _set_properties()
30
+	{
31
+		$this->_wp_list_args = array(
32
+			'singular' => __('ticket', 'event_espresso'),
33
+			'plural'   => __('tickets', 'event_espresso'),
34
+			'ajax'     => true,
35
+			'screen'   => $this->_admin_page->get_current_screen()->id,
36
+		);
37
+
38
+		$this->_columns = array(
39
+			'cb'              => '<input type="checkbox" />', // Render a checkbox instead of text
40
+			'TKT_name'        => __('Name', 'event_espresso'),
41
+			'TKT_description' => __('Description', 'event_espresso'),
42
+			'TKT_qty'         => __('Quantity', 'event_espresso'),
43
+			'TKT_uses'        => __('Datetimes', 'event_espresso'),
44
+			'TKT_min'         => __('Minimum', 'event_espresso'),
45
+			'TKT_max'         => __('Maximum', 'event_espresso'),
46
+			'TKT_price'       => __('Price', 'event_espresso'),
47
+			'TKT_taxable'     => __('Taxable', 'event_espresso'),
48
+		);
49
+
50
+		$this->_sortable_columns = array(
51
+			// TRUE means its already sorted
52
+			'TKT_name'        => array('TKT_name' => true),
53
+			'TKT_description' => array('TKT_description' => false),
54
+			'TKT_qty'         => array('TKT_qty' => false),
55
+			'TKT_uses'        => array('TKT_uses' => false),
56
+			'TKT_min'         => array('TKT_min' => false),
57
+			'TKT_max'         => array('TKT_max' => false),
58
+			'TKT_price'       => array('TKT_price' => false),
59
+		);
60
+
61
+		$this->_hidden_columns = array();
62
+	}
63
+
64
+
65
+	protected function _get_table_filters()
66
+	{
67
+	}
68
+
69
+
70
+	protected function _add_view_counts()
71
+	{
72
+		$this->_views['all']['count'] = $this->_all_data_count;
73
+		$this->_views['trashed']['count'] = $this->_trashed_count;
74
+	}
75
+
76
+
77
+	public function column_cb($item)
78
+	{
79
+		return $item->ID() === 1
80
+			? '<span class="ee-lock-icon"></span>'
81
+			: sprintf(
82
+				'<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />',
83
+				$item->ID()
84
+			);
85
+	}
86
+
87
+
88
+	public function column_TKT_name($item)
89
+	{
90
+		// build row actions
91
+		$actions = array();
92
+
93
+		// trash links
94
+		if ($item->ID() !== 1) {
95
+			if ($this->_view == 'all') {
96
+				$trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
97
+					'action' => 'trash_ticket',
98
+					'TKT_ID' => $item->ID(),
99
+				), EVENTS_ADMIN_URL);
100
+				$actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
101
+									. esc_attr__('Move Ticket to trash', 'event_espresso') . '">'
102
+									. __('Trash', 'event_espresso') . '</a>';
103
+			} else {
104
+				// restore price link
105
+				$restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
106
+					'action' => 'restore_ticket',
107
+					'TKT_ID' => $item->ID(),
108
+				), EVENTS_ADMIN_URL);
109
+				$actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
110
+									  . esc_attr__('Restore Ticket', 'event_espresso') . '">'
111
+									  . __('Restore', 'event_espresso') . '</a>';
112
+				// delete price link
113
+				$delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
114
+					'action' => 'delete_ticket',
115
+					'TKT_ID' => $item->ID(),
116
+				), EVENTS_ADMIN_URL);
117
+				$actions['delete'] = '<a href="' . $delete_lnk_url . '" title="'
118
+									 . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">'
119
+									 . __('Delete Permanently', 'event_espresso') . '</a>';
120
+			}
121
+		}
122
+
123
+		return $item->get('TKT_name') . $this->row_actions($actions);
124
+	}
125
+
126
+
127
+	public function column_TKT_description($item)
128
+	{
129
+		return $item->get('TKT_description');
130
+	}
131
+
132
+
133
+	public function column_TKT_qty($item)
134
+	{
135
+		return $item->get_pretty('TKT_qty', 'text');
136
+	}
137
+
138
+
139
+	public function column_TKT_uses($item)
140
+	{
141
+		return $item->get_pretty('TKT_uses', 'text');
142
+	}
143
+
144
+
145
+	public function column_TKT_min($item)
146
+	{
147
+		return $item->get('TKT_min');
148
+	}
149
+
150
+
151
+	public function column_TKT_max($item)
152
+	{
153
+		return $item->get_pretty('TKT_max', 'text');
154
+	}
155
+
156
+
157
+	public function column_TKT_price($item)
158
+	{
159
+		return EEH_Template::format_currency($item->get('TKT_price'));
160
+	}
161
+
162
+
163
+	public function column_TKT_taxable($item)
164
+	{
165
+		return $item->get('TKT_taxable') ? __('Yes', 'event_espresso') : __('No', 'event_espresso');
166
+	}
167 167
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -97,30 +97,30 @@
 block discarded – undo
97 97
                     'action' => 'trash_ticket',
98 98
                     'TKT_ID' => $item->ID(),
99 99
                 ), EVENTS_ADMIN_URL);
100
-                $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
101
-                                    . esc_attr__('Move Ticket to trash', 'event_espresso') . '">'
102
-                                    . __('Trash', 'event_espresso') . '</a>';
100
+                $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="'
101
+                                    . esc_attr__('Move Ticket to trash', 'event_espresso').'">'
102
+                                    . __('Trash', 'event_espresso').'</a>';
103 103
             } else {
104 104
                 // restore price link
105 105
                 $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
106 106
                     'action' => 'restore_ticket',
107 107
                     'TKT_ID' => $item->ID(),
108 108
                 ), EVENTS_ADMIN_URL);
109
-                $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
110
-                                      . esc_attr__('Restore Ticket', 'event_espresso') . '">'
111
-                                      . __('Restore', 'event_espresso') . '</a>';
109
+                $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="'
110
+                                      . esc_attr__('Restore Ticket', 'event_espresso').'">'
111
+                                      . __('Restore', 'event_espresso').'</a>';
112 112
                 // delete price link
113 113
                 $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
114 114
                     'action' => 'delete_ticket',
115 115
                     'TKT_ID' => $item->ID(),
116 116
                 ), EVENTS_ADMIN_URL);
117
-                $actions['delete'] = '<a href="' . $delete_lnk_url . '" title="'
118
-                                     . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">'
119
-                                     . __('Delete Permanently', 'event_espresso') . '</a>';
117
+                $actions['delete'] = '<a href="'.$delete_lnk_url.'" title="'
118
+                                     . esc_attr__('Delete Ticket Permanently', 'event_espresso').'">'
119
+                                     . __('Delete Permanently', 'event_espresso').'</a>';
120 120
             }
121 121
         }
122 122
 
123
-        return $item->get('TKT_name') . $this->row_actions($actions);
123
+        return $item->get('TKT_name').$this->row_actions($actions);
124 124
     }
125 125
 
126 126
 
Please login to merge, or discard this patch.
caffeinated/admin/extend/events/Extend_Events_Admin_List_Table.class.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@
 block discarded – undo
12 12
 class Extend_Events_Admin_List_Table extends Events_Admin_List_Table
13 13
 {
14 14
 
15
-    protected function _column_name_action_setup(EE_Event $item)
16
-    {
17
-        $export_query_args = array(
18
-            'action' => 'export_events',
19
-            'EVT_ID' => $item->ID(),
20
-        );
21
-        $export_event_link = EE_Admin_Page::add_query_args_and_nonce($export_query_args, EVENTS_ADMIN_URL);
15
+	protected function _column_name_action_setup(EE_Event $item)
16
+	{
17
+		$export_query_args = array(
18
+			'action' => 'export_events',
19
+			'EVT_ID' => $item->ID(),
20
+		);
21
+		$export_event_link = EE_Admin_Page::add_query_args_and_nonce($export_query_args, EVENTS_ADMIN_URL);
22 22
 
23
-        $actions = parent::_column_name_action_setup($item);
24
-        return $actions;
25
-    }
23
+		$actions = parent::_column_name_action_setup($item);
24
+		return $actions;
25
+	}
26 26
 }
Please login to merge, or discard this patch.
admin/extend/registrations/Extend_EE_Attendee_Contact_List_Table.class.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -15,17 +15,17 @@
 block discarded – undo
15 15
 class Extend_EE_Attendee_Contact_List_Table extends EE_Attendee_Contact_List_Table
16 16
 {
17 17
 
18
-    protected function _set_properties()
19
-    {
20
-        parent::_set_properties();
21
-        $this->_bottom_buttons = array(
22
-            'contact_list_report' => array(
23
-                'route'         => 'contact_list_report',
24
-                'extra_request' =>
25
-                    array(
26
-                        'return_url' => urlencode("//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}"),
27
-                    ),
28
-            ),
29
-        );
30
-    }
18
+	protected function _set_properties()
19
+	{
20
+		parent::_set_properties();
21
+		$this->_bottom_buttons = array(
22
+			'contact_list_report' => array(
23
+				'route'         => 'contact_list_report',
24
+				'extra_request' =>
25
+					array(
26
+						'return_url' => urlencode("//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}"),
27
+					),
28
+			),
29
+		);
30
+	}
31 31
 }
Please login to merge, or discard this patch.
admin/extend/registrations/Extend_EE_Registrations_List_Table.class.php 2 patches
Indentation   +108 added lines, -108 removed lines patch added patch discarded remove patch
@@ -13,115 +13,115 @@
 block discarded – undo
13 13
 class Extend_EE_Registrations_List_Table extends EE_Registrations_List_Table
14 14
 {
15 15
 
16
-    /**
17
-     * @param EE_Registration $item
18
-     * @return string
19
-     * @throws EE_Error
20
-     * @throws InvalidArgumentException
21
-     * @throws ReflectionException
22
-     * @throws InvalidDataTypeException
23
-     * @throws InvalidInterfaceException
24
-     */
25
-    public function column__REG_date(EE_Registration $item)
26
-    {
27
-        $date_linked = parent::column__REG_date($item);
28
-        $actions = array();
29
-        // Build row actions
30
-        $check_in_url = EE_Admin_Page::add_query_args_and_nonce(array(
31
-            'action'   => 'event_registrations',
32
-            'event_id' => $item->event_ID(),
33
-        ), REG_ADMIN_URL);
34
-        $actions['check_in'] = EE_Registry::instance()->CAP->current_user_can(
35
-            'ee_read_registration',
36
-            'espresso_registrations_registration_checkins',
37
-            $item->ID()
38
-        ) && EE_Registry::instance()->CAP->current_user_can(
39
-            'ee_read_checkins',
40
-            'espresso_registrations_registration_checkins'
41
-        )
42
-            ? '<a href="' . $check_in_url . '"'
43
-              . ' title="' . esc_attr__(
44
-                  'The Check-In List allows you to easily toggle check-in status for this event',
45
-                  'event_espresso'
46
-              )
47
-              . '">' . esc_html__('View Check-ins', 'event_espresso') . '</a>'
48
-            : esc_html__('View Check-ins', 'event_espresso');
16
+	/**
17
+	 * @param EE_Registration $item
18
+	 * @return string
19
+	 * @throws EE_Error
20
+	 * @throws InvalidArgumentException
21
+	 * @throws ReflectionException
22
+	 * @throws InvalidDataTypeException
23
+	 * @throws InvalidInterfaceException
24
+	 */
25
+	public function column__REG_date(EE_Registration $item)
26
+	{
27
+		$date_linked = parent::column__REG_date($item);
28
+		$actions = array();
29
+		// Build row actions
30
+		$check_in_url = EE_Admin_Page::add_query_args_and_nonce(array(
31
+			'action'   => 'event_registrations',
32
+			'event_id' => $item->event_ID(),
33
+		), REG_ADMIN_URL);
34
+		$actions['check_in'] = EE_Registry::instance()->CAP->current_user_can(
35
+			'ee_read_registration',
36
+			'espresso_registrations_registration_checkins',
37
+			$item->ID()
38
+		) && EE_Registry::instance()->CAP->current_user_can(
39
+			'ee_read_checkins',
40
+			'espresso_registrations_registration_checkins'
41
+		)
42
+			? '<a href="' . $check_in_url . '"'
43
+			  . ' title="' . esc_attr__(
44
+				  'The Check-In List allows you to easily toggle check-in status for this event',
45
+				  'event_espresso'
46
+			  )
47
+			  . '">' . esc_html__('View Check-ins', 'event_espresso') . '</a>'
48
+			: esc_html__('View Check-ins', 'event_espresso');
49 49
 
50
-        return sprintf('%1$s %2$s', $date_linked, $this->row_actions($actions));
51
-    }
50
+		return sprintf('%1$s %2$s', $date_linked, $this->row_actions($actions));
51
+	}
52 52
 
53 53
 
54
-    /**
55
-     *        column_default
56
-     *
57
-     * @param \EE_Registration $item
58
-     * @return string
59
-     * @throws EE_Error
60
-     * @throws InvalidArgumentException
61
-     * @throws InvalidDataTypeException
62
-     * @throws InvalidInterfaceException
63
-     * @throws ReflectionException
64
-     */
65
-    public function column_DTT_EVT_start(EE_Registration $item)
66
-    {
67
-        $remove_defaults = array('default_where_conditions' => 'none');
68
-        $ticket = $item->ticket();
69
-        $datetimes = $ticket instanceof EE_Ticket ? $ticket->datetimes($remove_defaults) : array();
70
-        $EVT_ID = $item->event_ID();
71
-        $datetimes_for_display = array();
72
-        foreach ($datetimes as $datetime) {
73
-            $datetime_string = '';
74
-            if (EE_Registry::instance()->CAP->current_user_can(
75
-                'ee_read_checkin',
76
-                'espresso_registrations_registration_checkins',
77
-                $item->ID()
78
-            )) {
79
-                // open "a" tag and "href"
80
-                $datetime_string .= '<a href="';
81
-                // checkin URL
82
-                $datetime_string .= EE_Admin_Page::add_query_args_and_nonce(
83
-                    array(
84
-                        'action'   => 'event_registrations',
85
-                        'event_id' => $EVT_ID,
86
-                        'DTT_ID'   => $datetime->ID(),
87
-                    ),
88
-                    REG_ADMIN_URL
89
-                );
90
-                // close "href"
91
-                $datetime_string .= '"';
92
-                // open "title" tag
93
-                $datetime_string .= ' title="';
94
-                // link title text
95
-                $datetime_string .= esc_attr__('View Checkins for this Event', 'event_espresso');
96
-                // close "title" tag and end of "a" tag opening
97
-                $datetime_string .= '">';
98
-                // link text
99
-                $datetime_string .= $datetime->get_i18n_datetime('DTT_EVT_start');
100
-                // close "a" tag
101
-                $datetime_string .= '</a>';
102
-            } else {
103
-                $datetime_string .= $datetime->get_i18n_datetime('DTT_EVT_start');
104
-            }
105
-            // add a "View Registrations" link that filters list by event AND datetime
106
-            $datetime_string .= $this->row_actions(
107
-                array(
108
-                    'event_datetime_filter' => '<a href="' . EE_Admin_Page::add_query_args_and_nonce(
109
-                        array('event_id' => $EVT_ID, 'datetime_id' => $datetime->ID()),
110
-                        REG_ADMIN_URL
111
-                    )
112
-                                               . '" title="' . sprintf(
113
-                                                   esc_attr__(
114
-                                                       'Filter this list to only show registrations for this datetime %s',
115
-                                                       'event_espresso'
116
-                                                   ),
117
-                                                   $datetime->name()
118
-                                               ) . '">'
119
-                                               . esc_html__('View Registrations', 'event_espresso')
120
-                                               . '</a>',
121
-                )
122
-            );
123
-            $datetimes_for_display[] = $datetime_string;
124
-        }
125
-        return $this->generateDisplayForDateTimes($datetimes_for_display);
126
-    }
54
+	/**
55
+	 *        column_default
56
+	 *
57
+	 * @param \EE_Registration $item
58
+	 * @return string
59
+	 * @throws EE_Error
60
+	 * @throws InvalidArgumentException
61
+	 * @throws InvalidDataTypeException
62
+	 * @throws InvalidInterfaceException
63
+	 * @throws ReflectionException
64
+	 */
65
+	public function column_DTT_EVT_start(EE_Registration $item)
66
+	{
67
+		$remove_defaults = array('default_where_conditions' => 'none');
68
+		$ticket = $item->ticket();
69
+		$datetimes = $ticket instanceof EE_Ticket ? $ticket->datetimes($remove_defaults) : array();
70
+		$EVT_ID = $item->event_ID();
71
+		$datetimes_for_display = array();
72
+		foreach ($datetimes as $datetime) {
73
+			$datetime_string = '';
74
+			if (EE_Registry::instance()->CAP->current_user_can(
75
+				'ee_read_checkin',
76
+				'espresso_registrations_registration_checkins',
77
+				$item->ID()
78
+			)) {
79
+				// open "a" tag and "href"
80
+				$datetime_string .= '<a href="';
81
+				// checkin URL
82
+				$datetime_string .= EE_Admin_Page::add_query_args_and_nonce(
83
+					array(
84
+						'action'   => 'event_registrations',
85
+						'event_id' => $EVT_ID,
86
+						'DTT_ID'   => $datetime->ID(),
87
+					),
88
+					REG_ADMIN_URL
89
+				);
90
+				// close "href"
91
+				$datetime_string .= '"';
92
+				// open "title" tag
93
+				$datetime_string .= ' title="';
94
+				// link title text
95
+				$datetime_string .= esc_attr__('View Checkins for this Event', 'event_espresso');
96
+				// close "title" tag and end of "a" tag opening
97
+				$datetime_string .= '">';
98
+				// link text
99
+				$datetime_string .= $datetime->get_i18n_datetime('DTT_EVT_start');
100
+				// close "a" tag
101
+				$datetime_string .= '</a>';
102
+			} else {
103
+				$datetime_string .= $datetime->get_i18n_datetime('DTT_EVT_start');
104
+			}
105
+			// add a "View Registrations" link that filters list by event AND datetime
106
+			$datetime_string .= $this->row_actions(
107
+				array(
108
+					'event_datetime_filter' => '<a href="' . EE_Admin_Page::add_query_args_and_nonce(
109
+						array('event_id' => $EVT_ID, 'datetime_id' => $datetime->ID()),
110
+						REG_ADMIN_URL
111
+					)
112
+											   . '" title="' . sprintf(
113
+												   esc_attr__(
114
+													   'Filter this list to only show registrations for this datetime %s',
115
+													   'event_espresso'
116
+												   ),
117
+												   $datetime->name()
118
+											   ) . '">'
119
+											   . esc_html__('View Registrations', 'event_espresso')
120
+											   . '</a>',
121
+				)
122
+			);
123
+			$datetimes_for_display[] = $datetime_string;
124
+		}
125
+		return $this->generateDisplayForDateTimes($datetimes_for_display);
126
+	}
127 127
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
             'ee_read_checkins',
40 40
             'espresso_registrations_registration_checkins'
41 41
         )
42
-            ? '<a href="' . $check_in_url . '"'
43
-              . ' title="' . esc_attr__(
42
+            ? '<a href="'.$check_in_url.'"'
43
+              . ' title="'.esc_attr__(
44 44
                   'The Check-In List allows you to easily toggle check-in status for this event',
45 45
                   'event_espresso'
46 46
               )
47
-              . '">' . esc_html__('View Check-ins', 'event_espresso') . '</a>'
47
+              . '">'.esc_html__('View Check-ins', 'event_espresso').'</a>'
48 48
             : esc_html__('View Check-ins', 'event_espresso');
49 49
 
50 50
         return sprintf('%1$s %2$s', $date_linked, $this->row_actions($actions));
@@ -105,17 +105,17 @@  discard block
 block discarded – undo
105 105
             // add a "View Registrations" link that filters list by event AND datetime
106 106
             $datetime_string .= $this->row_actions(
107 107
                 array(
108
-                    'event_datetime_filter' => '<a href="' . EE_Admin_Page::add_query_args_and_nonce(
108
+                    'event_datetime_filter' => '<a href="'.EE_Admin_Page::add_query_args_and_nonce(
109 109
                         array('event_id' => $EVT_ID, 'datetime_id' => $datetime->ID()),
110 110
                         REG_ADMIN_URL
111 111
                     )
112
-                                               . '" title="' . sprintf(
112
+                                               . '" title="'.sprintf(
113 113
                                                    esc_attr__(
114 114
                                                        'Filter this list to only show registrations for this datetime %s',
115 115
                                                        'event_espresso'
116 116
                                                    ),
117 117
                                                    $datetime->name()
118
-                                               ) . '">'
118
+                                               ).'">'
119 119
                                                . esc_html__('View Registrations', 'event_espresso')
120 120
                                                . '</a>',
121 121
                 )
Please login to merge, or discard this patch.
admin/extend/messages/Custom_Messages_Template_List_Table.class.php 2 patches
Indentation   +225 added lines, -225 removed lines patch added patch discarded remove patch
@@ -12,252 +12,252 @@
 block discarded – undo
12 12
 class Custom_Messages_Template_List_Table extends Messages_Template_List_Table
13 13
 {
14 14
 
15
-    /**
16
-     * Setup initial data.
17
-     */
18
-    protected function _setup_data()
19
-    {
20
-        $this->_data = $this->get_admin_page()->get_message_templates(
21
-            $this->_per_page,
22
-            $this->_view,
23
-            false,
24
-            false,
25
-            false
26
-        );
27
-        $this->_all_data_count = $this->get_admin_page()->get_message_templates(
28
-            $this->_per_page,
29
-            $this->_view,
30
-            true,
31
-            true,
32
-            false
33
-        );
34
-    }
15
+	/**
16
+	 * Setup initial data.
17
+	 */
18
+	protected function _setup_data()
19
+	{
20
+		$this->_data = $this->get_admin_page()->get_message_templates(
21
+			$this->_per_page,
22
+			$this->_view,
23
+			false,
24
+			false,
25
+			false
26
+		);
27
+		$this->_all_data_count = $this->get_admin_page()->get_message_templates(
28
+			$this->_per_page,
29
+			$this->_view,
30
+			true,
31
+			true,
32
+			false
33
+		);
34
+	}
35 35
 
36 36
 
37
-    /**
38
-     * Set initial properties
39
-     */
40
-    protected function _set_properties()
41
-    {
42
-        parent::_set_properties();
43
-        $this->_wp_list_args = array(
44
-            'singular' => esc_html__('Message Template Group', 'event_espresso'),
45
-            'plural'   => esc_html__('Message Template', 'event_espresso'),
46
-            'ajax'     => true, // for now,
47
-            'screen'   => $this->get_admin_page()->get_current_screen()->id,
48
-        );
37
+	/**
38
+	 * Set initial properties
39
+	 */
40
+	protected function _set_properties()
41
+	{
42
+		parent::_set_properties();
43
+		$this->_wp_list_args = array(
44
+			'singular' => esc_html__('Message Template Group', 'event_espresso'),
45
+			'plural'   => esc_html__('Message Template', 'event_espresso'),
46
+			'ajax'     => true, // for now,
47
+			'screen'   => $this->get_admin_page()->get_current_screen()->id,
48
+		);
49 49
 
50
-        $this->_columns = array_merge(
51
-            array(
52
-                'cb'   => '<input type="checkbox" />',
53
-                'name' => esc_html__('Template Name', 'event_espresso'),
54
-            ),
55
-            $this->_columns,
56
-            array(
57
-                'events'  => esc_html__('Events', 'event_espresso'),
58
-                'actions' => '',
59
-            )
60
-        );
61
-    }
50
+		$this->_columns = array_merge(
51
+			array(
52
+				'cb'   => '<input type="checkbox" />',
53
+				'name' => esc_html__('Template Name', 'event_espresso'),
54
+			),
55
+			$this->_columns,
56
+			array(
57
+				'events'  => esc_html__('Events', 'event_espresso'),
58
+				'actions' => '',
59
+			)
60
+		);
61
+	}
62 62
 
63 63
 
64
-    /**
65
-     * Custom message for when there are no items found.
66
-     *
67
-     * @since 4.3.0
68
-     */
69
-    public function no_items()
70
-    {
71
-        if ($this->_view !== 'trashed') {
72
-            printf(
73
-                esc_html__(
74
-                    '%sNo Custom Templates found.%s To create your first custom message template, go to the "Default Message Templates" tab and click the "Create Custom" button next to the template you want to use as a base for the new one.',
75
-                    'event_espresso'
76
-                ),
77
-                '<strong>',
78
-                '</strong>'
79
-            );
80
-        } else {
81
-            parent::no_items();
82
-        }
83
-    }
64
+	/**
65
+	 * Custom message for when there are no items found.
66
+	 *
67
+	 * @since 4.3.0
68
+	 */
69
+	public function no_items()
70
+	{
71
+		if ($this->_view !== 'trashed') {
72
+			printf(
73
+				esc_html__(
74
+					'%sNo Custom Templates found.%s To create your first custom message template, go to the "Default Message Templates" tab and click the "Create Custom" button next to the template you want to use as a base for the new one.',
75
+					'event_espresso'
76
+				),
77
+				'<strong>',
78
+				'</strong>'
79
+			);
80
+		} else {
81
+			parent::no_items();
82
+		}
83
+	}
84 84
 
85 85
 
86
-    /**
87
-     * @param EE_Message_Template_Group $item
88
-     * @return string
89
-     */
90
-    public function column_cb($item)
91
-    {
92
-        return sprintf('<input type="checkbox" name="checkbox[%s]" value="1" />', $item->GRP_ID());
93
-    }
86
+	/**
87
+	 * @param EE_Message_Template_Group $item
88
+	 * @return string
89
+	 */
90
+	public function column_cb($item)
91
+	{
92
+		return sprintf('<input type="checkbox" name="checkbox[%s]" value="1" />', $item->GRP_ID());
93
+	}
94 94
 
95 95
 
96
-    /**
97
-     * @param EE_Message_Template_Group $item
98
-     * @return string
99
-     */
100
-    public function column_name($item)
101
-    {
102
-        return '<p>' . $item->name() . '</p>';
103
-    }
96
+	/**
97
+	 * @param EE_Message_Template_Group $item
98
+	 * @return string
99
+	 */
100
+	public function column_name($item)
101
+	{
102
+		return '<p>' . $item->name() . '</p>';
103
+	}
104 104
 
105 105
 
106
-    /**
107
-     * @param EE_Message_Template_Group $item
108
-     * @return string
109
-     */
110
-    public function column_actions($item)
111
-    {
112
-        if (EE_Registry::instance()->CAP->current_user_can(
113
-            'ee_edit_messages',
114
-            'espresso_messages_add_new_message_template'
115
-        )) {
116
-            $create_args = array(
117
-                'GRP_ID'       => $item->ID(),
118
-                'messenger'    => $item->messenger(),
119
-                'message_type' => $item->message_type(),
120
-                'action'       => 'add_new_message_template',
121
-            );
122
-            $create_link = EE_Admin_Page::add_query_args_and_nonce($create_args, EE_MSG_ADMIN_URL);
123
-            return sprintf(
124
-                '<p><a href="%s" class="button button-small">%s</a></p>',
125
-                $create_link,
126
-                esc_html__('Create Custom', 'event_espresso')
127
-            );
128
-        }
129
-        return '';
130
-    }
106
+	/**
107
+	 * @param EE_Message_Template_Group $item
108
+	 * @return string
109
+	 */
110
+	public function column_actions($item)
111
+	{
112
+		if (EE_Registry::instance()->CAP->current_user_can(
113
+			'ee_edit_messages',
114
+			'espresso_messages_add_new_message_template'
115
+		)) {
116
+			$create_args = array(
117
+				'GRP_ID'       => $item->ID(),
118
+				'messenger'    => $item->messenger(),
119
+				'message_type' => $item->message_type(),
120
+				'action'       => 'add_new_message_template',
121
+			);
122
+			$create_link = EE_Admin_Page::add_query_args_and_nonce($create_args, EE_MSG_ADMIN_URL);
123
+			return sprintf(
124
+				'<p><a href="%s" class="button button-small">%s</a></p>',
125
+				$create_link,
126
+				esc_html__('Create Custom', 'event_espresso')
127
+			);
128
+		}
129
+		return '';
130
+	}
131 131
 
132
-    /**
133
-     * Set the view counts on the _views property
134
-     */
135
-    protected function _add_view_counts()
136
-    {
137
-        foreach ($this->_views as $view => $args) {
138
-            $this->_views[ $view ]['count'] = $this->get_admin_page()->get_message_templates(
139
-                $this->_per_page,
140
-                $view,
141
-                true,
142
-                true,
143
-                false
144
-            );
145
-        }
146
-    }
132
+	/**
133
+	 * Set the view counts on the _views property
134
+	 */
135
+	protected function _add_view_counts()
136
+	{
137
+		foreach ($this->_views as $view => $args) {
138
+			$this->_views[ $view ]['count'] = $this->get_admin_page()->get_message_templates(
139
+				$this->_per_page,
140
+				$view,
141
+				true,
142
+				true,
143
+				false
144
+			);
145
+		}
146
+	}
147 147
 
148 148
 
149
-    /**
150
-     * column_events
151
-     * This provides a count of events using this custom template
152
-     *
153
-     * @param  EE_Message_Template_Group $item message_template group data
154
-     * @return string column output
155
-     */
156
-    public function column_events($item)
157
-    {
158
-        return $item->count_events();
159
-    }
149
+	/**
150
+	 * column_events
151
+	 * This provides a count of events using this custom template
152
+	 *
153
+	 * @param  EE_Message_Template_Group $item message_template group data
154
+	 * @return string column output
155
+	 */
156
+	public function column_events($item)
157
+	{
158
+		return $item->count_events();
159
+	}
160 160
 
161 161
 
162
-    /**
163
-     * Add additional actions for custom message template list view.
164
-     *
165
-     * @param EE_Message_Template_Group $item
166
-     * @return array
167
-     * @throws EE_Error
168
-     */
169
-    protected function _get_actions_for_messenger_column(EE_Message_Template_Group $item)
170
-    {
171
-        $actions = parent::_get_actions_for_messenger_column($item);
162
+	/**
163
+	 * Add additional actions for custom message template list view.
164
+	 *
165
+	 * @param EE_Message_Template_Group $item
166
+	 * @return array
167
+	 * @throws EE_Error
168
+	 */
169
+	protected function _get_actions_for_messenger_column(EE_Message_Template_Group $item)
170
+	{
171
+		$actions = parent::_get_actions_for_messenger_column($item);
172 172
 
173
-        // add additional actions for trash/restore etc.
174
-        $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
175
-            'action'   => 'trash_message_template',
176
-            'id'       => $item->GRP_ID(),
177
-            'noheader' => true,
178
-        ), EE_MSG_ADMIN_URL);
179
-        // restore link
180
-        $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
181
-            'action'   => 'restore_message_template',
182
-            'id'       => $item->GRP_ID(),
183
-            'noheader' => true,
184
-        ), EE_MSG_ADMIN_URL);
185
-        // delete price link
186
-        $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
187
-            'action'   => 'delete_message_template',
188
-            'id'       => $item->GRP_ID(),
189
-            'noheader' => true,
190
-        ), EE_MSG_ADMIN_URL);
173
+		// add additional actions for trash/restore etc.
174
+		$trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
175
+			'action'   => 'trash_message_template',
176
+			'id'       => $item->GRP_ID(),
177
+			'noheader' => true,
178
+		), EE_MSG_ADMIN_URL);
179
+		// restore link
180
+		$restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
181
+			'action'   => 'restore_message_template',
182
+			'id'       => $item->GRP_ID(),
183
+			'noheader' => true,
184
+		), EE_MSG_ADMIN_URL);
185
+		// delete price link
186
+		$delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array(
187
+			'action'   => 'delete_message_template',
188
+			'id'       => $item->GRP_ID(),
189
+			'noheader' => true,
190
+		), EE_MSG_ADMIN_URL);
191 191
 
192
-        if (! $item->get('MTP_deleted')
193
-            && EE_Registry::instance()->CAP->current_user_can(
194
-                'ee_delete_message',
195
-                'espresso_messages_trash_message_template',
196
-                $item->ID()
197
-            )
198
-        ) {
199
-            $actions['trash'] = '<a href="'
200
-                                . $trash_lnk_url
201
-                                . '" title="'
202
-                                . esc_attr__('Move Template Group to Trash', 'event_espresso')
203
-                                . '">'
204
-                                . esc_html__('Move to Trash', 'event_espresso')
205
-                                . '</a>';
206
-        } else {
207
-            if (EE_Registry::instance()->CAP->current_user_can(
208
-                'ee_delete_message',
209
-                'espresso_messages_restore_message_template',
210
-                $item->ID()
211
-            )) {
212
-                $actions['restore'] = '<a href="'
213
-                                      . $restore_lnk_url
214
-                                      . '" title="'
215
-                                      . esc_attr__('Restore Message Template', 'event_espresso')
216
-                                      . '">'
217
-                                      . esc_html__('Restore', 'event_espresso') . '</a>';
218
-            }
192
+		if (! $item->get('MTP_deleted')
193
+			&& EE_Registry::instance()->CAP->current_user_can(
194
+				'ee_delete_message',
195
+				'espresso_messages_trash_message_template',
196
+				$item->ID()
197
+			)
198
+		) {
199
+			$actions['trash'] = '<a href="'
200
+								. $trash_lnk_url
201
+								. '" title="'
202
+								. esc_attr__('Move Template Group to Trash', 'event_espresso')
203
+								. '">'
204
+								. esc_html__('Move to Trash', 'event_espresso')
205
+								. '</a>';
206
+		} else {
207
+			if (EE_Registry::instance()->CAP->current_user_can(
208
+				'ee_delete_message',
209
+				'espresso_messages_restore_message_template',
210
+				$item->ID()
211
+			)) {
212
+				$actions['restore'] = '<a href="'
213
+									  . $restore_lnk_url
214
+									  . '" title="'
215
+									  . esc_attr__('Restore Message Template', 'event_espresso')
216
+									  . '">'
217
+									  . esc_html__('Restore', 'event_espresso') . '</a>';
218
+			}
219 219
 
220
-            if ($this->_view === 'trashed'
221
-                && EE_Registry::instance()->CAP->current_user_can(
222
-                    'ee_delete_message',
223
-                    'espresso_messages_delete_message_template',
224
-                    $item->ID()
225
-                )) {
226
-                $actions['delete'] = '<a href="'
227
-                                     . $delete_lnk_url
228
-                                     . '" title="'
229
-                                     . esc_attr__('Delete Template Group Permanently', 'event_espresso')
230
-                                     . '">'
231
-                                     . esc_html__('Delete Permanently', 'event_espresso')
232
-                                     . '</a>';
233
-            }
234
-        }
235
-        return $actions;
236
-    }
220
+			if ($this->_view === 'trashed'
221
+				&& EE_Registry::instance()->CAP->current_user_can(
222
+					'ee_delete_message',
223
+					'espresso_messages_delete_message_template',
224
+					$item->ID()
225
+				)) {
226
+				$actions['delete'] = '<a href="'
227
+									 . $delete_lnk_url
228
+									 . '" title="'
229
+									 . esc_attr__('Delete Template Group Permanently', 'event_espresso')
230
+									 . '">'
231
+									 . esc_html__('Delete Permanently', 'event_espresso')
232
+									 . '</a>';
233
+			}
234
+		}
235
+		return $actions;
236
+	}
237 237
 
238 238
 
239
-    /**
240
-     * Generate dropdown filter select input for messengers
241
-     *
242
-     * @param bool $global
243
-     * @return string
244
-     * @throws EE_Error
245
-     */
246
-    protected function _get_messengers_dropdown_filter($global = true)
247
-    {
248
-        return parent::_get_messengers_dropdown_filter(false);
249
-    }
239
+	/**
240
+	 * Generate dropdown filter select input for messengers
241
+	 *
242
+	 * @param bool $global
243
+	 * @return string
244
+	 * @throws EE_Error
245
+	 */
246
+	protected function _get_messengers_dropdown_filter($global = true)
247
+	{
248
+		return parent::_get_messengers_dropdown_filter(false);
249
+	}
250 250
 
251 251
 
252
-    /**
253
-     * Generate dropdown filter select input for message types
254
-     *
255
-     * @param bool $global
256
-     * @return string
257
-     * @throws EE_Error
258
-     */
259
-    protected function _get_message_types_dropdown_filter($global = true)
260
-    {
261
-        return parent::_get_message_types_dropdown_filter(false);
262
-    }
252
+	/**
253
+	 * Generate dropdown filter select input for message types
254
+	 *
255
+	 * @param bool $global
256
+	 * @return string
257
+	 * @throws EE_Error
258
+	 */
259
+	protected function _get_message_types_dropdown_filter($global = true)
260
+	{
261
+		return parent::_get_message_types_dropdown_filter(false);
262
+	}
263 263
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function column_name($item)
101 101
     {
102
-        return '<p>' . $item->name() . '</p>';
102
+        return '<p>'.$item->name().'</p>';
103 103
     }
104 104
 
105 105
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     protected function _add_view_counts()
136 136
     {
137 137
         foreach ($this->_views as $view => $args) {
138
-            $this->_views[ $view ]['count'] = $this->get_admin_page()->get_message_templates(
138
+            $this->_views[$view]['count'] = $this->get_admin_page()->get_message_templates(
139 139
                 $this->_per_page,
140 140
                 $view,
141 141
                 true,
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             'noheader' => true,
190 190
         ), EE_MSG_ADMIN_URL);
191 191
 
192
-        if (! $item->get('MTP_deleted')
192
+        if ( ! $item->get('MTP_deleted')
193 193
             && EE_Registry::instance()->CAP->current_user_can(
194 194
                 'ee_delete_message',
195 195
                 'espresso_messages_trash_message_template',
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                                       . '" title="'
215 215
                                       . esc_attr__('Restore Message Template', 'event_espresso')
216 216
                                       . '">'
217
-                                      . esc_html__('Restore', 'event_espresso') . '</a>';
217
+                                      . esc_html__('Restore', 'event_espresso').'</a>';
218 218
             }
219 219
 
220 220
             if ($this->_view === 'trashed'
Please login to merge, or discard this patch.
admin/extend/messages/espresso_events_Messages_Hooks_Extend.class.php 2 patches
Indentation   +267 added lines, -267 removed lines patch added patch discarded remove patch
@@ -12,276 +12,276 @@
 block discarded – undo
12 12
  */
13 13
 class espresso_events_Messages_Hooks_Extend extends espresso_events_Messages_Hooks
14 14
 {
15
-    /**
16
-     * espresso_events_Messages_Hooks_Extend constructor.
17
-     *
18
-     * @param \EE_Admin_Page $admin_page
19
-     */
20
-    public function __construct(EE_Admin_Page $admin_page)
21
-    {
22
-        /**
23
-         * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages
24
-         */
25
-        if (! EE_Registry::instance()->CAP->current_user_can(
26
-            'ee_edit_messages',
27
-            'messages_events_editor_metabox'
28
-        )) {
29
-            return;
30
-        }
31
-        add_filter(
32
-            'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks',
33
-            array($this, 'caf_updates'),
34
-            10
35
-        );
36
-        add_action(
37
-            'AHEE__Extend_Events_Admin_Page___duplicate_event__after',
38
-            array($this, 'duplicate_custom_message_settings'),
39
-            10,
40
-            2
41
-        );
42
-        parent::__construct($admin_page);
43
-    }
44
-
45
-
46
-    /**
47
-     * extending the properties set in espresso_events_Messages_Hooks
48
-     *
49
-     * @access protected
50
-     * @return void
51
-     */
52
-    protected function _extend_properties()
53
-    {
54
-        define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
55
-        $this->_ajax_func = array(
56
-            'ee_msgs_create_new_custom' => 'create_new_custom',
57
-        );
58
-        $this->_metaboxes = array(
59
-            0 => array(
60
-                'page_route' => array('edit', 'create_new'),
61
-                'func'       => 'messages_metabox',
62
-                'label'      => esc_html__('Notifications', 'event_espresso'),
63
-                'priority'   => 'high',
64
-            ),
65
-        );
66
-
67
-        // see explanation for layout in EE_Admin_Hooks
68
-        $this->_scripts_styles = array(
69
-            'registers' => array(
70
-                'events_msg_admin'     => array(
71
-                    'url'     => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js',
72
-                    'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'),
73
-                ),
74
-                'events_msg_admin_css' => array(
75
-                    'url'  => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css',
76
-                    'type' => 'css',
77
-                ),
78
-            ),
79
-            'enqueues'  => array(
80
-                'events_msg_admin'     => array('edit', 'create_new'),
81
-                'events_msg_admin_css' => array('edit', 'create_new'),
82
-            ),
83
-        );
84
-    }
85
-
86
-
87
-    public function caf_updates($update_callbacks)
88
-    {
89
-        $update_callbacks[] = array($this, 'attach_evt_message_templates');
90
-        return $update_callbacks;
91
-    }
92
-
93
-
94
-    /**
95
-     * Handles attaching Message Templates to the Event on save.
96
-     *
97
-     * @param  EE_Event $event EE event object
98
-     * @param  array    $data  The request data from the form
99
-     * @return bool success or fail
100
-     * @throws EE_Error
101
-     */
102
-    public function attach_evt_message_templates($event, $data)
103
-    {
104
-        // first we remove all existing relations on the Event for message types.
105
-        $event->_remove_relations('Message_Template_Group');
106
-        // now let's just loop through the selected templates and add relations!
107
-        if (isset($data['event_message_templates_relation'])) {
108
-            foreach ($data['event_message_templates_relation'] as $grp_ID) {
109
-                $event->_add_relation_to($grp_ID, 'Message_Template_Group');
110
-            }
111
-        }
112
-        // now save
113
-        return $event->save();
114
-    }
115
-
116
-
117
-    /**
118
-     * @param $event
119
-     * @param $callback_args
120
-     * @return string
121
-     * @throws \EE_Error
122
-     */
123
-    public function messages_metabox($event, $callback_args)
124
-    {
125
-        // let's get the active messengers (b/c messenger objects have the active message templates)
126
-        // convert 'evt_id' to 'EVT_ID'
127
-        $this->_req_data['EVT_ID'] = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null;
128
-        $this->_req_data['EVT_ID'] = isset($this->_req_data['post']) && empty($this->_req_data['EVT_ID'])
129
-            ? $this->_req_data['post']
130
-            : $this->_req_data['EVT_ID'];
131
-
132
-        $this->_req_data['EVT_ID'] = empty($this->_req_data['EVT_ID']) && isset($this->_req_data['evt_id'])
133
-            ? $this->_req_data['evt_id']
134
-            : $this->_req_data['EVT_ID'];
135
-        /** @type EE_Message_Resource_Manager $message_resource_manager */
136
-        $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager');
137
-        $active_messengers = $message_resource_manager->active_messengers();
138
-        $tabs = array();
139
-
140
-        // empty messengers?
141
-        // Note message types will always have at least one available because every messenger has a default message type
142
-        // associated with it (payment) if no other message types are selected.
143
-        if (empty($active_messengers)) {
144
-            $msg_activate_url = EE_Admin_Page::add_query_args_and_nonce(
145
-                array('action' => 'settings'),
146
-                EE_MSG_ADMIN_URL
147
-            );
148
-            $error_msg = sprintf(
149
-                esc_html__(
150
-                    'There are no active messengers. So no notifications will go out for %1$sany%2$s events.  You will want to %3$sActivate a Messenger%4$s.',
151
-                    'event_espresso'
152
-                ),
153
-                '<strong>',
154
-                '</strong>',
155
-                '<a href="' . $msg_activate_url . '">',
156
-                '</a>'
157
-            );
158
-            $error_content = '<div class="error"><p>' . $error_msg . '</p></div>';
159
-            $internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>';
160
-
161
-            echo $error_content;
162
-            echo $internal_content;
163
-            return '';
164
-        }
165
-
166
-        $event_id = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null;
167
-        // get content for active messengers
168
-        foreach ($active_messengers as $name => $messenger) {
169
-            // first check if there are any active message types for this messenger.
170
-            $active_mts = $message_resource_manager->get_active_message_types_for_messenger($name);
171
-            if (empty($active_mts)) {
172
-                continue;
173
-            }
174
-
175
-            $tab_content = $messenger->get_messenger_admin_page_content(
176
-                'events',
177
-                'edit',
178
-                array('event' => $event_id)
179
-            );
180
-
181
-            if (! empty($tab_content)) {
182
-                $tabs[ $name ] = $tab_content;
183
-            }
184
-        }
185
-
186
-
187
-        // we want this to be tabbed content so let's use the EEH_Tabbed_Content::display helper.
188
-        $tabbed_content = EEH_Tabbed_Content::display($tabs);
189
-        if ($tabbed_content instanceof WP_Error) {
190
-            $tabbed_content = $tabbed_content->get_error_message();
191
-        }
192
-
193
-        $notices = '
15
+	/**
16
+	 * espresso_events_Messages_Hooks_Extend constructor.
17
+	 *
18
+	 * @param \EE_Admin_Page $admin_page
19
+	 */
20
+	public function __construct(EE_Admin_Page $admin_page)
21
+	{
22
+		/**
23
+		 * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages
24
+		 */
25
+		if (! EE_Registry::instance()->CAP->current_user_can(
26
+			'ee_edit_messages',
27
+			'messages_events_editor_metabox'
28
+		)) {
29
+			return;
30
+		}
31
+		add_filter(
32
+			'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks',
33
+			array($this, 'caf_updates'),
34
+			10
35
+		);
36
+		add_action(
37
+			'AHEE__Extend_Events_Admin_Page___duplicate_event__after',
38
+			array($this, 'duplicate_custom_message_settings'),
39
+			10,
40
+			2
41
+		);
42
+		parent::__construct($admin_page);
43
+	}
44
+
45
+
46
+	/**
47
+	 * extending the properties set in espresso_events_Messages_Hooks
48
+	 *
49
+	 * @access protected
50
+	 * @return void
51
+	 */
52
+	protected function _extend_properties()
53
+	{
54
+		define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
55
+		$this->_ajax_func = array(
56
+			'ee_msgs_create_new_custom' => 'create_new_custom',
57
+		);
58
+		$this->_metaboxes = array(
59
+			0 => array(
60
+				'page_route' => array('edit', 'create_new'),
61
+				'func'       => 'messages_metabox',
62
+				'label'      => esc_html__('Notifications', 'event_espresso'),
63
+				'priority'   => 'high',
64
+			),
65
+		);
66
+
67
+		// see explanation for layout in EE_Admin_Hooks
68
+		$this->_scripts_styles = array(
69
+			'registers' => array(
70
+				'events_msg_admin'     => array(
71
+					'url'     => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js',
72
+					'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'),
73
+				),
74
+				'events_msg_admin_css' => array(
75
+					'url'  => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css',
76
+					'type' => 'css',
77
+				),
78
+			),
79
+			'enqueues'  => array(
80
+				'events_msg_admin'     => array('edit', 'create_new'),
81
+				'events_msg_admin_css' => array('edit', 'create_new'),
82
+			),
83
+		);
84
+	}
85
+
86
+
87
+	public function caf_updates($update_callbacks)
88
+	{
89
+		$update_callbacks[] = array($this, 'attach_evt_message_templates');
90
+		return $update_callbacks;
91
+	}
92
+
93
+
94
+	/**
95
+	 * Handles attaching Message Templates to the Event on save.
96
+	 *
97
+	 * @param  EE_Event $event EE event object
98
+	 * @param  array    $data  The request data from the form
99
+	 * @return bool success or fail
100
+	 * @throws EE_Error
101
+	 */
102
+	public function attach_evt_message_templates($event, $data)
103
+	{
104
+		// first we remove all existing relations on the Event for message types.
105
+		$event->_remove_relations('Message_Template_Group');
106
+		// now let's just loop through the selected templates and add relations!
107
+		if (isset($data['event_message_templates_relation'])) {
108
+			foreach ($data['event_message_templates_relation'] as $grp_ID) {
109
+				$event->_add_relation_to($grp_ID, 'Message_Template_Group');
110
+			}
111
+		}
112
+		// now save
113
+		return $event->save();
114
+	}
115
+
116
+
117
+	/**
118
+	 * @param $event
119
+	 * @param $callback_args
120
+	 * @return string
121
+	 * @throws \EE_Error
122
+	 */
123
+	public function messages_metabox($event, $callback_args)
124
+	{
125
+		// let's get the active messengers (b/c messenger objects have the active message templates)
126
+		// convert 'evt_id' to 'EVT_ID'
127
+		$this->_req_data['EVT_ID'] = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null;
128
+		$this->_req_data['EVT_ID'] = isset($this->_req_data['post']) && empty($this->_req_data['EVT_ID'])
129
+			? $this->_req_data['post']
130
+			: $this->_req_data['EVT_ID'];
131
+
132
+		$this->_req_data['EVT_ID'] = empty($this->_req_data['EVT_ID']) && isset($this->_req_data['evt_id'])
133
+			? $this->_req_data['evt_id']
134
+			: $this->_req_data['EVT_ID'];
135
+		/** @type EE_Message_Resource_Manager $message_resource_manager */
136
+		$message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager');
137
+		$active_messengers = $message_resource_manager->active_messengers();
138
+		$tabs = array();
139
+
140
+		// empty messengers?
141
+		// Note message types will always have at least one available because every messenger has a default message type
142
+		// associated with it (payment) if no other message types are selected.
143
+		if (empty($active_messengers)) {
144
+			$msg_activate_url = EE_Admin_Page::add_query_args_and_nonce(
145
+				array('action' => 'settings'),
146
+				EE_MSG_ADMIN_URL
147
+			);
148
+			$error_msg = sprintf(
149
+				esc_html__(
150
+					'There are no active messengers. So no notifications will go out for %1$sany%2$s events.  You will want to %3$sActivate a Messenger%4$s.',
151
+					'event_espresso'
152
+				),
153
+				'<strong>',
154
+				'</strong>',
155
+				'<a href="' . $msg_activate_url . '">',
156
+				'</a>'
157
+			);
158
+			$error_content = '<div class="error"><p>' . $error_msg . '</p></div>';
159
+			$internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>';
160
+
161
+			echo $error_content;
162
+			echo $internal_content;
163
+			return '';
164
+		}
165
+
166
+		$event_id = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null;
167
+		// get content for active messengers
168
+		foreach ($active_messengers as $name => $messenger) {
169
+			// first check if there are any active message types for this messenger.
170
+			$active_mts = $message_resource_manager->get_active_message_types_for_messenger($name);
171
+			if (empty($active_mts)) {
172
+				continue;
173
+			}
174
+
175
+			$tab_content = $messenger->get_messenger_admin_page_content(
176
+				'events',
177
+				'edit',
178
+				array('event' => $event_id)
179
+			);
180
+
181
+			if (! empty($tab_content)) {
182
+				$tabs[ $name ] = $tab_content;
183
+			}
184
+		}
185
+
186
+
187
+		// we want this to be tabbed content so let's use the EEH_Tabbed_Content::display helper.
188
+		$tabbed_content = EEH_Tabbed_Content::display($tabs);
189
+		if ($tabbed_content instanceof WP_Error) {
190
+			$tabbed_content = $tabbed_content->get_error_message();
191
+		}
192
+
193
+		$notices = '
194 194
 	<div id="espresso-ajax-loading" class="ajax-loader-grey">
195 195
 		<span class="ee-spinner ee-spin"></span><span class="hidden">'
196
-                   . esc_html__('loading...', 'event_espresso')
197
-                   . '</span>
196
+				   . esc_html__('loading...', 'event_espresso')
197
+				   . '</span>
198 198
 	</div>
199 199
 	<div class="ee-notices"></div>';
200 200
 
201
-        if (defined('DOING_AJAX')) {
202
-            return $tabbed_content;
203
-        }
204
-
205
-        do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content');
206
-        echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>';
207
-        do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content');
208
-    }
209
-
210
-
211
-    /**
212
-     * Ajax callback for ee_msgs_create_new_custom ajax request.
213
-     * Takes incoming GRP_ID and name and description values from ajax request
214
-     * to create a new custom template based off of the incoming GRP_ID.
215
-     *
216
-     * @access public
217
-     * @return string either an html string will be returned or a success message
218
-     * @throws EE_Error
219
-     */
220
-    public function create_new_custom()
221
-    {
222
-        if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) {
223
-            wp_die(__('You don\'t have privileges to do this action', 'event_espresso'));
224
-        }
225
-
226
-        // let's clean up the _POST global a bit for downstream usage of name and description.
227
-        $_POST['templateName'] = ! empty($this->_req_data['custom_template_args']['MTP_name'])
228
-            ? $this->_req_data['custom_template_args']['MTP_name']
229
-            : '';
230
-        $_POST['templateDescription'] = ! empty($this->_req_data['custom_template_args']['MTP_description'])
231
-            ? $this->_req_data['custom_template_args']['MTP_description']
232
-            : '';
233
-
234
-
235
-        // set EE_Admin_Page object (see method details in EE_Admin_Hooks parent
236
-        $this->_set_page_object();
237
-
238
-        // is this a template switch if so EE_Admin_Page child needs this object
239
-        $this->_page_object->set_hook_object($this);
240
-
241
-        $this->_page_object->add_message_template(
242
-            $this->_req_data['messageType'],
243
-            $this->_req_data['messenger'],
244
-            $this->_req_data['group_ID']
245
-        );
246
-    }
247
-
248
-
249
-    public function create_new_admin_footer()
250
-    {
251
-        $this->edit_admin_footer();
252
-    }
253
-
254
-
255
-    /**
256
-     * This is the dynamic method for this class
257
-     * that will end up hooking into the 'admin_footer' hook on the 'edit_event' route in the events page.
258
-     *
259
-     * @return string
260
-     * @throws DomainException
261
-     */
262
-    public function edit_admin_footer()
263
-    {
264
-        EEH_Template::display_template(
265
-            EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php'
266
-        );
267
-    }
268
-
269
-
270
-    /**
271
-     * Callback for AHEE__Extend_Events_Admin_Page___duplicate_event__after hook used to ensure new events duplicate
272
-     * the assigned custom message templates.
273
-     *
274
-     * @param EE_Event $new_event
275
-     * @param EE_Event $original_event
276
-     * @throws EE_Error
277
-     */
278
-    public function duplicate_custom_message_settings(EE_Event $new_event, EE_Event $original_event)
279
-    {
280
-        $message_template_groups = $original_event->get_many_related('Message_Template_Group');
281
-        foreach ($message_template_groups as $message_template_group) {
282
-            $new_event->_add_relation_to($message_template_group, 'Message_Template_Group');
283
-        }
284
-        // save new event
285
-        $new_event->save();
286
-    }
201
+		if (defined('DOING_AJAX')) {
202
+			return $tabbed_content;
203
+		}
204
+
205
+		do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content');
206
+		echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>';
207
+		do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content');
208
+	}
209
+
210
+
211
+	/**
212
+	 * Ajax callback for ee_msgs_create_new_custom ajax request.
213
+	 * Takes incoming GRP_ID and name and description values from ajax request
214
+	 * to create a new custom template based off of the incoming GRP_ID.
215
+	 *
216
+	 * @access public
217
+	 * @return string either an html string will be returned or a success message
218
+	 * @throws EE_Error
219
+	 */
220
+	public function create_new_custom()
221
+	{
222
+		if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) {
223
+			wp_die(__('You don\'t have privileges to do this action', 'event_espresso'));
224
+		}
225
+
226
+		// let's clean up the _POST global a bit for downstream usage of name and description.
227
+		$_POST['templateName'] = ! empty($this->_req_data['custom_template_args']['MTP_name'])
228
+			? $this->_req_data['custom_template_args']['MTP_name']
229
+			: '';
230
+		$_POST['templateDescription'] = ! empty($this->_req_data['custom_template_args']['MTP_description'])
231
+			? $this->_req_data['custom_template_args']['MTP_description']
232
+			: '';
233
+
234
+
235
+		// set EE_Admin_Page object (see method details in EE_Admin_Hooks parent
236
+		$this->_set_page_object();
237
+
238
+		// is this a template switch if so EE_Admin_Page child needs this object
239
+		$this->_page_object->set_hook_object($this);
240
+
241
+		$this->_page_object->add_message_template(
242
+			$this->_req_data['messageType'],
243
+			$this->_req_data['messenger'],
244
+			$this->_req_data['group_ID']
245
+		);
246
+	}
247
+
248
+
249
+	public function create_new_admin_footer()
250
+	{
251
+		$this->edit_admin_footer();
252
+	}
253
+
254
+
255
+	/**
256
+	 * This is the dynamic method for this class
257
+	 * that will end up hooking into the 'admin_footer' hook on the 'edit_event' route in the events page.
258
+	 *
259
+	 * @return string
260
+	 * @throws DomainException
261
+	 */
262
+	public function edit_admin_footer()
263
+	{
264
+		EEH_Template::display_template(
265
+			EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php'
266
+		);
267
+	}
268
+
269
+
270
+	/**
271
+	 * Callback for AHEE__Extend_Events_Admin_Page___duplicate_event__after hook used to ensure new events duplicate
272
+	 * the assigned custom message templates.
273
+	 *
274
+	 * @param EE_Event $new_event
275
+	 * @param EE_Event $original_event
276
+	 * @throws EE_Error
277
+	 */
278
+	public function duplicate_custom_message_settings(EE_Event $new_event, EE_Event $original_event)
279
+	{
280
+		$message_template_groups = $original_event->get_many_related('Message_Template_Group');
281
+		foreach ($message_template_groups as $message_template_group) {
282
+			$new_event->_add_relation_to($message_template_group, 'Message_Template_Group');
283
+		}
284
+		// save new event
285
+		$new_event->save();
286
+	}
287 287
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         /**
23 23
          * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages
24 24
          */
25
-        if (! EE_Registry::instance()->CAP->current_user_can(
25
+        if ( ! EE_Registry::instance()->CAP->current_user_can(
26 26
             'ee_edit_messages',
27 27
             'messages_events_editor_metabox'
28 28
         )) {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     protected function _extend_properties()
53 53
     {
54
-        define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
54
+        define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'messages/assets/');
55 55
         $this->_ajax_func = array(
56 56
             'ee_msgs_create_new_custom' => 'create_new_custom',
57 57
         );
@@ -68,11 +68,11 @@  discard block
 block discarded – undo
68 68
         $this->_scripts_styles = array(
69 69
             'registers' => array(
70 70
                 'events_msg_admin'     => array(
71
-                    'url'     => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js',
71
+                    'url'     => EE_MSGS_EXTEND_ASSETS_URL.'events_messages_admin.js',
72 72
                     'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'),
73 73
                 ),
74 74
                 'events_msg_admin_css' => array(
75
-                    'url'  => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css',
75
+                    'url'  => EE_MSGS_EXTEND_ASSETS_URL.'ee_msg_events_admin.css',
76 76
                     'type' => 'css',
77 77
                 ),
78 78
             ),
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
                 ),
153 153
                 '<strong>',
154 154
                 '</strong>',
155
-                '<a href="' . $msg_activate_url . '">',
155
+                '<a href="'.$msg_activate_url.'">',
156 156
                 '</a>'
157 157
             );
158
-            $error_content = '<div class="error"><p>' . $error_msg . '</p></div>';
159
-            $internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>';
158
+            $error_content = '<div class="error"><p>'.$error_msg.'</p></div>';
159
+            $internal_content = '<div id="messages-error"><p>'.$error_msg.'</p></div>';
160 160
 
161 161
             echo $error_content;
162 162
             echo $internal_content;
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
                 array('event' => $event_id)
179 179
             );
180 180
 
181
-            if (! empty($tab_content)) {
182
-                $tabs[ $name ] = $tab_content;
181
+            if ( ! empty($tab_content)) {
182
+                $tabs[$name] = $tab_content;
183 183
             }
184 184
         }
185 185
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         }
204 204
 
205 205
         do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content');
206
-        echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>';
206
+        echo $notices.'<div class="messages-tabs-content">'.$tabbed_content.'</div>';
207 207
         do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content');
208 208
     }
209 209
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      */
220 220
     public function create_new_custom()
221 221
     {
222
-        if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) {
222
+        if ( ! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) {
223 223
             wp_die(__('You don\'t have privileges to do this action', 'event_espresso'));
224 224
         }
225 225
 
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     public function edit_admin_footer()
263 263
     {
264 264
         EEH_Template::display_template(
265
-            EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php'
265
+            EE_CORE_CAF_ADMIN_EXTEND.'messages/templates/create_custom_template_form.template.php'
266 266
         );
267 267
     }
268 268
 
Please login to merge, or discard this patch.