@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * When the plugin is activated, flush dismissed notices |
16 | 16 | * @since 1.15.1 |
17 | 17 | */ |
18 | -register_activation_hook( GRAVITYVIEW_FILE, array( 'GravityView_Admin_Notices', 'flush_dismissed_notices' ) ); |
|
18 | +register_activation_hook(GRAVITYVIEW_FILE, array('GravityView_Admin_Notices', 'flush_dismissed_notices')); |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Handle displaying and storing of admin notices for GravityView |
@@ -33,10 +33,10 @@ discard block |
||
33 | 33 | } |
34 | 34 | |
35 | 35 | function add_hooks() { |
36 | - add_action( 'network_admin_notices', array( $this, 'dismiss_notice' ), 50 ); |
|
37 | - add_action( 'admin_notices', array( $this, 'dismiss_notice' ), 50 ); |
|
38 | - add_action( 'admin_notices', array( $this, 'admin_notice' ), 100 ); |
|
39 | - add_action( 'network_admin_notices', array( $this, 'admin_notice' ), 100 ); |
|
36 | + add_action('network_admin_notices', array($this, 'dismiss_notice'), 50); |
|
37 | + add_action('admin_notices', array($this, 'dismiss_notice'), 50); |
|
38 | + add_action('admin_notices', array($this, 'admin_notice'), 100); |
|
39 | + add_action('network_admin_notices', array($this, 'admin_notice'), 100); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @return void |
47 | 47 | */ |
48 | 48 | static public function flush_dismissed_notices() { |
49 | - delete_transient( 'gravityview_dismissed_notices' ); |
|
49 | + delete_transient('gravityview_dismissed_notices'); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -57,26 +57,26 @@ discard block |
||
57 | 57 | public function dismiss_notice() { |
58 | 58 | |
59 | 59 | // No dismiss sent |
60 | - if( empty( $_GET['gv-dismiss'] ) ) { |
|
60 | + if (empty($_GET['gv-dismiss'])) { |
|
61 | 61 | return; |
62 | 62 | } |
63 | 63 | |
64 | 64 | // Invalid nonce |
65 | - if( !wp_verify_nonce( $_GET['gv-dismiss'], 'dismiss' ) ) { |
|
65 | + if (!wp_verify_nonce($_GET['gv-dismiss'], 'dismiss')) { |
|
66 | 66 | return; |
67 | 67 | } |
68 | 68 | |
69 | - $notice_id = esc_attr( $_GET['notice'] ); |
|
69 | + $notice_id = esc_attr($_GET['notice']); |
|
70 | 70 | |
71 | 71 | //don't display a message if use has dismissed the message for this version |
72 | - $dismissed_notices = (array)get_transient( 'gravityview_dismissed_notices' ); |
|
72 | + $dismissed_notices = (array)get_transient('gravityview_dismissed_notices'); |
|
73 | 73 | |
74 | 74 | $dismissed_notices[] = $notice_id; |
75 | 75 | |
76 | - $dismissed_notices = array_unique( $dismissed_notices ); |
|
76 | + $dismissed_notices = array_unique($dismissed_notices); |
|
77 | 77 | |
78 | 78 | // Remind users every 16 weeks |
79 | - set_transient( 'gravityview_dismissed_notices', $dismissed_notices, WEEK_IN_SECONDS * 16 ); |
|
79 | + set_transient('gravityview_dismissed_notices', $dismissed_notices, WEEK_IN_SECONDS * 16); |
|
80 | 80 | |
81 | 81 | } |
82 | 82 | |
@@ -91,15 +91,15 @@ discard block |
||
91 | 91 | * @param string $notice Notice array, set using `add_notice()`. |
92 | 92 | * @return boolean True: show notice; False: hide notice |
93 | 93 | */ |
94 | - private function is_notice_dismissed( $notice ) { |
|
94 | + private function is_notice_dismissed($notice) { |
|
95 | 95 | |
96 | 96 | // There are no dismissed notices. |
97 | - if( empty( self::$dismissed_notices ) ) { |
|
97 | + if (empty(self::$dismissed_notices)) { |
|
98 | 98 | return false; |
99 | 99 | } |
100 | 100 | |
101 | 101 | // Has the |
102 | - $is_dismissed = !empty( $notice['dismiss'] ) && in_array( $notice['dismiss'], self::$dismissed_notices ); |
|
102 | + $is_dismissed = !empty($notice['dismiss']) && in_array($notice['dismiss'], self::$dismissed_notices); |
|
103 | 103 | |
104 | 104 | return $is_dismissed ? true : false; |
105 | 105 | } |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | */ |
125 | 125 | private function check_show_multisite_notices() { |
126 | 126 | |
127 | - if( ! is_multisite() ) { |
|
127 | + if (!is_multisite()) { |
|
128 | 128 | return true; |
129 | 129 | } |
130 | 130 | |
131 | 131 | // It's network activated but the user can't manage network plugins; they can't do anything about it. |
132 | - if( GravityView_Plugin::is_network_activated() && ! is_main_site() ) { |
|
132 | + if (GravityView_Plugin::is_network_activated() && !is_main_site()) { |
|
133 | 133 | return false; |
134 | 134 | } |
135 | 135 | |
136 | 136 | // or they don't have admin capabilities |
137 | - if( ! is_super_admin() ) { |
|
137 | + if (!is_super_admin()) { |
|
138 | 138 | return false; |
139 | 139 | } |
140 | 140 | |
@@ -155,53 +155,53 @@ discard block |
||
155 | 155 | * @filter `gravityview/admin/notices` Modify the notices displayed in the admin |
156 | 156 | * @since 1.12 |
157 | 157 | */ |
158 | - $notices = apply_filters( 'gravityview/admin/notices', self::$admin_notices ); |
|
158 | + $notices = apply_filters('gravityview/admin/notices', self::$admin_notices); |
|
159 | 159 | |
160 | - if( empty( $notices ) || ! $this->check_show_multisite_notices() ) { |
|
160 | + if (empty($notices) || !$this->check_show_multisite_notices()) { |
|
161 | 161 | return; |
162 | 162 | } |
163 | 163 | |
164 | 164 | //don't display a message if use has dismissed the message for this version |
165 | 165 | // TODO: Use get_user_meta instead of get_transient |
166 | - self::$dismissed_notices = isset( $_GET['show-dismissed-notices'] ) ? array() : (array)get_transient( 'gravityview_dismissed_notices' ); |
|
166 | + self::$dismissed_notices = isset($_GET['show-dismissed-notices']) ? array() : (array)get_transient('gravityview_dismissed_notices'); |
|
167 | 167 | |
168 | 168 | $output = ''; |
169 | 169 | |
170 | - foreach( $notices as $notice ) { |
|
170 | + foreach ($notices as $notice) { |
|
171 | 171 | |
172 | 172 | // If the user doesn't have the capability to see the warning |
173 | - if( isset( $notice['cap'] ) && false === GVCommon::has_cap( $notice['cap'] ) ) { |
|
174 | - do_action( 'gravityview_log_debug', 'Notice not shown because user does not have the capability to view it.', $notice ); |
|
173 | + if (isset($notice['cap']) && false === GVCommon::has_cap($notice['cap'])) { |
|
174 | + do_action('gravityview_log_debug', 'Notice not shown because user does not have the capability to view it.', $notice); |
|
175 | 175 | continue; |
176 | 176 | } |
177 | 177 | |
178 | - if( true === $this->is_notice_dismissed( $notice ) ) { |
|
179 | - do_action( 'gravityview_log_debug', 'Notice not shown because the notice has already been dismissed.', $notice ); |
|
178 | + if (true === $this->is_notice_dismissed($notice)) { |
|
179 | + do_action('gravityview_log_debug', 'Notice not shown because the notice has already been dismissed.', $notice); |
|
180 | 180 | continue; |
181 | 181 | } |
182 | 182 | |
183 | - $output .= '<div id="message" style="position:relative" class="notice '. gravityview_sanitize_html_class( $notice['class'] ).'">'; |
|
183 | + $output .= '<div id="message" style="position:relative" class="notice '.gravityview_sanitize_html_class($notice['class']).'">'; |
|
184 | 184 | |
185 | 185 | // Too cute to leave out. |
186 | 186 | $output .= gravityview_get_floaty(); |
187 | 187 | |
188 | - if( !empty( $notice['title'] ) ) { |
|
189 | - $output .= '<h3>'.esc_html( $notice['title'] ) .'</h3>'; |
|
188 | + if (!empty($notice['title'])) { |
|
189 | + $output .= '<h3>'.esc_html($notice['title']).'</h3>'; |
|
190 | 190 | } |
191 | 191 | |
192 | - $message = isset( $notice['message'] ) ? $notice['message'] : ''; |
|
192 | + $message = isset($notice['message']) ? $notice['message'] : ''; |
|
193 | 193 | |
194 | - if( !empty( $notice['dismiss'] ) ) { |
|
194 | + if (!empty($notice['dismiss'])) { |
|
195 | 195 | |
196 | 196 | $dismiss = esc_attr($notice['dismiss']); |
197 | 197 | |
198 | - $url = esc_url( add_query_arg( array( 'gv-dismiss' => wp_create_nonce( 'dismiss' ), 'notice' => $dismiss ) ) ); |
|
198 | + $url = esc_url(add_query_arg(array('gv-dismiss' => wp_create_nonce('dismiss'), 'notice' => $dismiss))); |
|
199 | 199 | |
200 | 200 | $align = is_rtl() ? 'alignleft' : 'alignright'; |
201 | - $message .= '<a href="'.$url.'" data-notice="'.$dismiss.'" class="' . $align . ' button button-link">'.esc_html__('Dismiss', 'gravityview' ).'</a></p>'; |
|
201 | + $message .= '<a href="'.$url.'" data-notice="'.$dismiss.'" class="'.$align.' button button-link">'.esc_html__('Dismiss', 'gravityview').'</a></p>'; |
|
202 | 202 | } |
203 | 203 | |
204 | - $output .= wpautop( $message ); |
|
204 | + $output .= wpautop($message); |
|
205 | 205 | |
206 | 206 | $output .= '<div class="clear"></div>'; |
207 | 207 | $output .= '</div>'; |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | echo $output; |
212 | 212 | |
213 | - unset( $output, $align, $message, $notices ); |
|
213 | + unset($output, $align, $message, $notices); |
|
214 | 214 | |
215 | 215 | //reset the notices handler |
216 | 216 | self::$admin_notices = array(); |
@@ -223,14 +223,14 @@ discard block |
||
223 | 223 | * @param array $notice Array with `class`, `message`, `dismiss` and `cap` keys. The message is not escaped. |
224 | 224 | * @return void |
225 | 225 | */ |
226 | - public static function add_notice( $notice = array() ) { |
|
226 | + public static function add_notice($notice = array()) { |
|
227 | 227 | |
228 | - if( !isset( $notice['message'] ) ) { |
|
229 | - do_action( 'gravityview_log_error', 'GravityView_Admin[add_notice] Notice not set', $notice ); |
|
228 | + if (!isset($notice['message'])) { |
|
229 | + do_action('gravityview_log_error', 'GravityView_Admin[add_notice] Notice not set', $notice); |
|
230 | 230 | return; |
231 | 231 | } |
232 | 232 | |
233 | - $notice['class'] = empty( $notice['class'] ) ? 'error' : $notice['class']; |
|
233 | + $notice['class'] = empty($notice['class']) ? 'error' : $notice['class']; |
|
234 | 234 | |
235 | 235 | self::$admin_notices[] = $notice; |
236 | 236 | } |
@@ -5,220 +5,220 @@ |
||
5 | 5 | */ |
6 | 6 | class GravityView_Change_Entry_Creator { |
7 | 7 | |
8 | - function __construct() { |
|
9 | - |
|
10 | - /** |
|
11 | - * @since 1.5.1 |
|
12 | - */ |
|
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | - |
|
15 | - // ONLY ADMIN FROM HERE ON. |
|
16 | - if( !is_admin() ) { return; } |
|
17 | - |
|
18 | - /** |
|
19 | - * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | - * @since 1.7.4 |
|
21 | - * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | - */ |
|
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | - return; |
|
25 | - } |
|
26 | - |
|
27 | - /** |
|
28 | - * Use `init` to fix bbPress warning |
|
29 | - * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | - */ |
|
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
32 | - |
|
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
8 | + function __construct() { |
|
9 | + |
|
10 | + /** |
|
11 | + * @since 1.5.1 |
|
12 | + */ |
|
13 | + add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | + |
|
15 | + // ONLY ADMIN FROM HERE ON. |
|
16 | + if( !is_admin() ) { return; } |
|
17 | + |
|
18 | + /** |
|
19 | + * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | + * @since 1.7.4 |
|
21 | + * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | + */ |
|
23 | + if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | + return; |
|
25 | + } |
|
26 | + |
|
27 | + /** |
|
28 | + * Use `init` to fix bbPress warning |
|
29 | + * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | + */ |
|
31 | + add_action('init', array( $this, 'load'), 100 ); |
|
32 | + |
|
33 | + add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
34 | 34 | |
35 | - } |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | - * |
|
40 | - * @since 1.5.1 |
|
41 | - * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | - * @param int $user_id WordPress User ID |
|
43 | - * @param array $config User registration feed configuration |
|
44 | - * @param array $entry GF Entry array |
|
45 | - * @param string $password User password |
|
46 | - * @return void |
|
47 | - */ |
|
48 | - function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
37 | + /** |
|
38 | + * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | + * |
|
40 | + * @since 1.5.1 |
|
41 | + * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | + * @param int $user_id WordPress User ID |
|
43 | + * @param array $config User registration feed configuration |
|
44 | + * @param array $entry GF Entry array |
|
45 | + * @param string $password User password |
|
46 | + * @return void |
|
47 | + */ |
|
48 | + function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
49 | 49 | |
50 | - /** |
|
51 | - * Disable assigning the new user to the entry by returning false. |
|
52 | - * @param int $user_id WordPress User ID |
|
53 | - * @param array $config User registration feed configuration |
|
54 | - * @param array $entry GF Entry array |
|
55 | - */ |
|
56 | - $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | - |
|
58 | - // If filter returns false, do not process |
|
59 | - if( empty( $assign_to_lead ) ) { |
|
60 | - return; |
|
61 | - } |
|
50 | + /** |
|
51 | + * Disable assigning the new user to the entry by returning false. |
|
52 | + * @param int $user_id WordPress User ID |
|
53 | + * @param array $config User registration feed configuration |
|
54 | + * @param array $entry GF Entry array |
|
55 | + */ |
|
56 | + $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | + |
|
58 | + // If filter returns false, do not process |
|
59 | + if( empty( $assign_to_lead ) ) { |
|
60 | + return; |
|
61 | + } |
|
62 | 62 | |
63 | - // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | - $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
63 | + // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | + $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
65 | 65 | |
66 | - if( empty( $result ) ) { |
|
67 | - $status = __('Error', 'gravityview'); |
|
68 | - } else { |
|
69 | - $status = __('Success', 'gravityview'); |
|
70 | - } |
|
71 | - |
|
72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
66 | + if( empty( $result ) ) { |
|
67 | + $status = __('Error', 'gravityview'); |
|
68 | + } else { |
|
69 | + $status = __('Success', 'gravityview'); |
|
70 | + } |
|
71 | + |
|
72 | + $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
73 | 73 | |
74 | - do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
74 | + do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
75 | 75 | |
76 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
76 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
77 | 77 | |
78 | - } |
|
78 | + } |
|
79 | 79 | |
80 | - /** |
|
81 | - * Disable previous functionality; use this one as the canonical. |
|
82 | - * @return void |
|
83 | - */ |
|
84 | - function prevent_conflicts() { |
|
80 | + /** |
|
81 | + * Disable previous functionality; use this one as the canonical. |
|
82 | + * @return void |
|
83 | + */ |
|
84 | + function prevent_conflicts() { |
|
85 | 85 | |
86 | - // Plugin that was provided here: |
|
87 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
88 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10, 2); |
|
89 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10, 2); |
|
86 | + // Plugin that was provided here: |
|
87 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
88 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10, 2); |
|
89 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10, 2); |
|
90 | 90 | |
91 | - // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
92 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
91 | + // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
92 | + if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
93 | 93 | |
94 | - $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
94 | + $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
95 | 95 | |
96 | - // Now, no validation is required in the methods; let's hook in. |
|
97 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
96 | + // Now, no validation is required in the methods; let's hook in. |
|
97 | + remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
98 | 98 | |
99 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10, 2); |
|
99 | + remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10, 2); |
|
100 | 100 | |
101 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10, 2); |
|
102 | - } |
|
101 | + remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10, 2); |
|
102 | + } |
|
103 | 103 | |
104 | - } |
|
104 | + } |
|
105 | 105 | |
106 | - /** |
|
107 | - * @since 3.6.3 |
|
108 | - * @return void |
|
109 | - */ |
|
110 | - function load() { |
|
106 | + /** |
|
107 | + * @since 3.6.3 |
|
108 | + * @return void |
|
109 | + */ |
|
110 | + function load() { |
|
111 | 111 | |
112 | - // Does GF exist? |
|
113 | - if( !class_exists('GFCommon') ) { |
|
114 | - return; |
|
115 | - } |
|
112 | + // Does GF exist? |
|
113 | + if( !class_exists('GFCommon') ) { |
|
114 | + return; |
|
115 | + } |
|
116 | 116 | |
117 | - // Can the user edit entries? |
|
118 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
119 | - return; |
|
120 | - } |
|
117 | + // Can the user edit entries? |
|
118 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
119 | + return; |
|
120 | + } |
|
121 | 121 | |
122 | - // If screen mode isn't set, then we're in the wrong place. |
|
123 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
124 | - return; |
|
125 | - } |
|
122 | + // If screen mode isn't set, then we're in the wrong place. |
|
123 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
124 | + return; |
|
125 | + } |
|
126 | 126 | |
127 | - // Now, no validation is required in the methods; let's hook in. |
|
128 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
127 | + // Now, no validation is required in the methods; let's hook in. |
|
128 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
129 | 129 | |
130 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
130 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
131 | 131 | |
132 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
132 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
133 | 133 | |
134 | - } |
|
134 | + } |
|
135 | 135 | |
136 | - /** |
|
137 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
138 | - * @return void |
|
139 | - */ |
|
140 | - function set_screen_mode() { |
|
136 | + /** |
|
137 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
138 | + * @return void |
|
139 | + */ |
|
140 | + function set_screen_mode() { |
|
141 | 141 | |
142 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
143 | - if( rgget('screen_mode') === 'edit' ) { |
|
144 | - $_POST["screen_mode"] = 'edit'; |
|
145 | - } |
|
142 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
143 | + if( rgget('screen_mode') === 'edit' ) { |
|
144 | + $_POST["screen_mode"] = 'edit'; |
|
145 | + } |
|
146 | 146 | |
147 | - } |
|
147 | + } |
|
148 | 148 | |
149 | - /** |
|
150 | - * When the entry creator is changed, add a note to the entry |
|
151 | - * @param array $form GF entry array |
|
152 | - * @param int $entry_id Entry ID |
|
153 | - * @return void |
|
154 | - */ |
|
155 | - function update_entry_creator($form, $entry_id) { |
|
156 | - global $current_user; |
|
149 | + /** |
|
150 | + * When the entry creator is changed, add a note to the entry |
|
151 | + * @param array $form GF entry array |
|
152 | + * @param int $entry_id Entry ID |
|
153 | + * @return void |
|
154 | + */ |
|
155 | + function update_entry_creator($form, $entry_id) { |
|
156 | + global $current_user; |
|
157 | 157 | |
158 | - // Update the entry |
|
159 | - $created_by = absint( rgpost('created_by') ); |
|
158 | + // Update the entry |
|
159 | + $created_by = absint( rgpost('created_by') ); |
|
160 | 160 | |
161 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
161 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
162 | 162 | |
163 | - // If the creator has changed, let's add a note about who it used to be. |
|
164 | - $originally_created_by = rgpost('originally_created_by'); |
|
163 | + // If the creator has changed, let's add a note about who it used to be. |
|
164 | + $originally_created_by = rgpost('originally_created_by'); |
|
165 | 165 | |
166 | - // If there's no owner and there didn't used to be, keep going |
|
167 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
168 | - return; |
|
169 | - } |
|
166 | + // If there's no owner and there didn't used to be, keep going |
|
167 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
168 | + return; |
|
169 | + } |
|
170 | 170 | |
171 | - // If the values have changed |
|
172 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
171 | + // If the values have changed |
|
172 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
173 | 173 | |
174 | - $user_data = get_userdata($current_user->ID); |
|
174 | + $user_data = get_userdata($current_user->ID); |
|
175 | 175 | |
176 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
176 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
177 | 177 | |
178 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
178 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
179 | 179 | |
180 | - if( !empty( $originally_created_by ) ) { |
|
181 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
182 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
183 | - } |
|
180 | + if( !empty( $originally_created_by ) ) { |
|
181 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
182 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
183 | + } |
|
184 | 184 | |
185 | - if( !empty( $created_by ) ) { |
|
186 | - $created_by_user_data = get_userdata($created_by); |
|
187 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
188 | - } |
|
185 | + if( !empty( $created_by ) ) { |
|
186 | + $created_by_user_data = get_userdata($created_by); |
|
187 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
188 | + } |
|
189 | 189 | |
190 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
191 | - } |
|
190 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
191 | + } |
|
192 | 192 | |
193 | - } |
|
193 | + } |
|
194 | 194 | |
195 | - /** |
|
196 | - * Output the select to change the entry creator |
|
197 | - * @param int $form_id GF Form ID |
|
198 | - * @param array $entry GF entry array |
|
199 | - * @return void |
|
200 | - */ |
|
201 | - function add_select($form_id, $entry ) { |
|
195 | + /** |
|
196 | + * Output the select to change the entry creator |
|
197 | + * @param int $form_id GF Form ID |
|
198 | + * @param array $entry GF entry array |
|
199 | + * @return void |
|
200 | + */ |
|
201 | + function add_select($form_id, $entry ) { |
|
202 | 202 | |
203 | - if( rgpost('screen_mode') !== 'edit' ) { |
|
204 | - return; |
|
205 | - } |
|
203 | + if( rgpost('screen_mode') !== 'edit' ) { |
|
204 | + return; |
|
205 | + } |
|
206 | 206 | |
207 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
207 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
208 | 208 | |
209 | - $output = '<label for="change_created_by">'; |
|
210 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
211 | - $output .= '</label> |
|
209 | + $output = '<label for="change_created_by">'; |
|
210 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
211 | + $output .= '</label> |
|
212 | 212 | <select name="created_by" id="change_created_by" class="widefat">'; |
213 | - $output .= '<option value=""> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
214 | - foreach($users as $user) { |
|
215 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
216 | - } |
|
217 | - $output .= '</select>'; |
|
218 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
219 | - echo $output; |
|
220 | - |
|
221 | - } |
|
213 | + $output .= '<option value=""> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
214 | + foreach($users as $user) { |
|
215 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
216 | + } |
|
217 | + $output .= '</select>'; |
|
218 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
219 | + echo $output; |
|
220 | + |
|
221 | + } |
|
222 | 222 | |
223 | 223 | } |
224 | 224 |
@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * @since 1.5.1 |
12 | 12 | */ |
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
13 | + add_action('gform_user_registered', array($this, 'assign_new_user_to_lead'), 10, 4); |
|
14 | 14 | |
15 | 15 | // ONLY ADMIN FROM HERE ON. |
16 | - if( !is_admin() ) { return; } |
|
16 | + if (!is_admin()) { return; } |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
20 | 20 | * @since 1.7.4 |
21 | 21 | * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
22 | 22 | */ |
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
23 | + if (apply_filters('gravityview_disable_change_entry_creator', false)) { |
|
24 | 24 | return; |
25 | 25 | } |
26 | 26 | |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | * Use `init` to fix bbPress warning |
29 | 29 | * @see https://bbpress.trac.wordpress.org/ticket/2309 |
30 | 30 | */ |
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
31 | + add_action('init', array($this, 'load'), 100); |
|
32 | 32 | |
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
33 | + add_action('plugins_loaded', array($this, 'prevent_conflicts')); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param string $password User password |
46 | 46 | * @return void |
47 | 47 | */ |
48 | - function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
48 | + function assign_new_user_to_lead($user_id, $config, $entry = array(), $password = '') { |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Disable assigning the new user to the entry by returning false. |
@@ -53,27 +53,27 @@ discard block |
||
53 | 53 | * @param array $config User registration feed configuration |
54 | 54 | * @param array $entry GF Entry array |
55 | 55 | */ |
56 | - $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
56 | + $assign_to_lead = apply_filters('gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry); |
|
57 | 57 | |
58 | 58 | // If filter returns false, do not process |
59 | - if( empty( $assign_to_lead ) ) { |
|
59 | + if (empty($assign_to_lead)) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | |
63 | 63 | // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
64 | - $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
64 | + $result = RGFormsModel::update_lead_property($entry['id'], 'created_by', $user_id, false, true); |
|
65 | 65 | |
66 | - if( empty( $result ) ) { |
|
66 | + if (empty($result)) { |
|
67 | 67 | $status = __('Error', 'gravityview'); |
68 | 68 | } else { |
69 | 69 | $status = __('Success', 'gravityview'); |
70 | 70 | } |
71 | 71 | |
72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
72 | + $note = sprintf(_x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id); |
|
73 | 73 | |
74 | - do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
74 | + do_action('gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note); |
|
75 | 75 | |
76 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
76 | + GravityView_Entry_Notes::add_note($entry['id'], -1, 'GravityView', $note, 'gravityview'); |
|
77 | 77 | |
78 | 78 | } |
79 | 79 | |
@@ -89,16 +89,16 @@ discard block |
||
89 | 89 | remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10, 2); |
90 | 90 | |
91 | 91 | // Disable for Gravity Forms Add-ons 3.6.2 and lower |
92 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
92 | + if (class_exists('KWS_GF_Change_Lead_Creator')) { |
|
93 | 93 | |
94 | 94 | $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
95 | 95 | |
96 | 96 | // Now, no validation is required in the methods; let's hook in. |
97 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
97 | + remove_action('admin_init', array($Old_Lead_Creator, 'set_screen_mode')); |
|
98 | 98 | |
99 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10, 2); |
|
99 | + remove_action("gform_entry_info", array($Old_Lead_Creator, 'add_select'), 10, 2); |
|
100 | 100 | |
101 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10, 2); |
|
101 | + remove_action("gform_after_update_entry", array($Old_Lead_Creator, 'update_entry_creator'), 10, 2); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | } |
@@ -110,26 +110,26 @@ discard block |
||
110 | 110 | function load() { |
111 | 111 | |
112 | 112 | // Does GF exist? |
113 | - if( !class_exists('GFCommon') ) { |
|
113 | + if (!class_exists('GFCommon')) { |
|
114 | 114 | return; |
115 | 115 | } |
116 | 116 | |
117 | 117 | // Can the user edit entries? |
118 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
118 | + if (!GVCommon::has_cap(array('gravityforms_edit_entries', 'gravityview_edit_entries'))) { |
|
119 | 119 | return; |
120 | 120 | } |
121 | 121 | |
122 | 122 | // If screen mode isn't set, then we're in the wrong place. |
123 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
123 | + if (empty($_REQUEST['screen_mode'])) { |
|
124 | 124 | return; |
125 | 125 | } |
126 | 126 | |
127 | 127 | // Now, no validation is required in the methods; let's hook in. |
128 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
128 | + add_action('admin_init', array(&$this, 'set_screen_mode')); |
|
129 | 129 | |
130 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
130 | + add_action("gform_entry_info", array(&$this, 'add_select'), 10, 2); |
|
131 | 131 | |
132 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
132 | + add_action("gform_after_update_entry", array(&$this, 'update_entry_creator'), 10, 2); |
|
133 | 133 | |
134 | 134 | } |
135 | 135 | |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | function set_screen_mode() { |
141 | 141 | |
142 | 142 | // If $_GET['screen_mode'] is set to edit, set $_POST value |
143 | - if( rgget('screen_mode') === 'edit' ) { |
|
143 | + if (rgget('screen_mode') === 'edit') { |
|
144 | 144 | $_POST["screen_mode"] = 'edit'; |
145 | 145 | } |
146 | 146 | |
@@ -156,38 +156,38 @@ discard block |
||
156 | 156 | global $current_user; |
157 | 157 | |
158 | 158 | // Update the entry |
159 | - $created_by = absint( rgpost('created_by') ); |
|
159 | + $created_by = absint(rgpost('created_by')); |
|
160 | 160 | |
161 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
161 | + RGFormsModel::update_lead_property($entry_id, 'created_by', $created_by); |
|
162 | 162 | |
163 | 163 | // If the creator has changed, let's add a note about who it used to be. |
164 | 164 | $originally_created_by = rgpost('originally_created_by'); |
165 | 165 | |
166 | 166 | // If there's no owner and there didn't used to be, keep going |
167 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
167 | + if (empty($originally_created_by) && empty($created_by)) { |
|
168 | 168 | return; |
169 | 169 | } |
170 | 170 | |
171 | 171 | // If the values have changed |
172 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
172 | + if (absint($originally_created_by) !== absint($created_by)) { |
|
173 | 173 | |
174 | 174 | $user_data = get_userdata($current_user->ID); |
175 | 175 | |
176 | 176 | $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
177 | 177 | |
178 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
178 | + $original_name = $created_by_name = esc_attr_x('No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
179 | 179 | |
180 | - if( !empty( $originally_created_by ) ) { |
|
180 | + if (!empty($originally_created_by)) { |
|
181 | 181 | $originally_created_by_user_data = get_userdata($originally_created_by); |
182 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
182 | + $original_name = sprintf($user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID); |
|
183 | 183 | } |
184 | 184 | |
185 | - if( !empty( $created_by ) ) { |
|
186 | - $created_by_user_data = get_userdata($created_by); |
|
187 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
185 | + if (!empty($created_by)) { |
|
186 | + $created_by_user_data = get_userdata($created_by); |
|
187 | + $created_by_name = sprintf($user_format, $created_by_user_data->display_name, $created_by_user_data->ID); |
|
188 | 188 | } |
189 | 189 | |
190 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
190 | + GravityView_Entry_Notes::add_note($entry_id, $current_user->ID, $user_data->display_name, sprintf(__('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name), 'note'); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | } |
@@ -198,24 +198,24 @@ discard block |
||
198 | 198 | * @param array $entry GF entry array |
199 | 199 | * @return void |
200 | 200 | */ |
201 | - function add_select($form_id, $entry ) { |
|
201 | + function add_select($form_id, $entry) { |
|
202 | 202 | |
203 | - if( rgpost('screen_mode') !== 'edit' ) { |
|
203 | + if (rgpost('screen_mode') !== 'edit') { |
|
204 | 204 | return; |
205 | 205 | } |
206 | 206 | |
207 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
207 | + $users = GVCommon::get_users('change_entry_creator'); |
|
208 | 208 | |
209 | 209 | $output = '<label for="change_created_by">'; |
210 | 210 | $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
211 | 211 | $output .= '</label> |
212 | 212 | <select name="created_by" id="change_created_by" class="widefat">'; |
213 | - $output .= '<option value=""> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
214 | - foreach($users as $user) { |
|
215 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
213 | + $output .= '<option value=""> — '.esc_attr_x('No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
214 | + foreach ($users as $user) { |
|
215 | + $output .= '<option value="'.$user->ID.'"'.selected($entry['created_by'], $user->ID, false).'>'.esc_attr($user->display_name.' ('.$user->user_nicename.')').'</option>'; |
|
216 | 216 | } |
217 | 217 | $output .= '</select>'; |
218 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
218 | + $output .= '<input name="originally_created_by" value="'.esc_attr($entry['created_by']).'" type="hidden" />'; |
|
219 | 219 | echo $output; |
220 | 220 | |
221 | 221 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | /** If this file is called directly, abort. */ |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if (!defined('ABSPATH')) { |
|
5 | 5 | die; |
6 | 6 | } |
7 | 7 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @param string $link_format |
76 | 76 | * @param string $after_link |
77 | 77 | */ |
78 | - function __construct( $entries = array(), $post_id = 0, $form = array(), $link_format = '', $after_link = '', $context = '' ) { |
|
78 | + function __construct($entries = array(), $post_id = 0, $form = array(), $link_format = '', $after_link = '', $context = '') { |
|
79 | 79 | |
80 | 80 | $this->entries = $entries; |
81 | 81 | $this->post_id = $post_id; |
@@ -90,28 +90,28 @@ discard block |
||
90 | 90 | /** |
91 | 91 | * @param int $post_id |
92 | 92 | */ |
93 | - public function set_post_id( $post_id ) { |
|
93 | + public function set_post_id($post_id) { |
|
94 | 94 | $this->post_id = $post_id; |
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
98 | 98 | * @param string $link_format |
99 | 99 | */ |
100 | - public function set_link_format( $link_format ) { |
|
100 | + public function set_link_format($link_format) { |
|
101 | 101 | $this->link_format = $link_format; |
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
105 | 105 | * @param boolean $skip_current_entry |
106 | 106 | */ |
107 | - public function set_skip_current_entry( $skip_current_entry ) { |
|
107 | + public function set_skip_current_entry($skip_current_entry) { |
|
108 | 108 | $this->skip_current_entry = (bool)$skip_current_entry; |
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
112 | 112 | * @param string $after_link |
113 | 113 | */ |
114 | - public function set_after_link( $after_link ) { |
|
114 | + public function set_after_link($after_link) { |
|
115 | 115 | $this->after_link = $after_link; |
116 | 116 | } |
117 | 117 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * Set the message when there are no entries to display |
120 | 120 | * @param string $empty_message |
121 | 121 | */ |
122 | - public function set_empty_message( $empty_message ) { |
|
122 | + public function set_empty_message($empty_message) { |
|
123 | 123 | $this->empty_message = $empty_message; |
124 | 124 | } |
125 | 125 | |
@@ -127,23 +127,23 @@ discard block |
||
127 | 127 | * Set the context in which this entry list is being displayed. |
128 | 128 | * @param string $context |
129 | 129 | */ |
130 | - public function set_context( $context ) { |
|
130 | + public function set_context($context) { |
|
131 | 131 | $this->context = $context; |
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | 135 | * @param string $wrapper_tag |
136 | 136 | */ |
137 | - public function set_wrapper_tag( $wrapper_tag ) { |
|
138 | - $this->wrapper_tag = esc_attr( $wrapper_tag ); |
|
137 | + public function set_wrapper_tag($wrapper_tag) { |
|
138 | + $this->wrapper_tag = esc_attr($wrapper_tag); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
142 | 142 | * |
143 | 143 | * @param string $item_tag |
144 | 144 | */ |
145 | - public function set_item_tag( $item_tag ) { |
|
146 | - $this->item_tag = esc_attr( $item_tag ); |
|
145 | + public function set_item_tag($item_tag) { |
|
146 | + $this->item_tag = esc_attr($item_tag); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -170,32 +170,32 @@ discard block |
||
170 | 170 | public function get_output() { |
171 | 171 | |
172 | 172 | // No Entries |
173 | - if( empty( $this->entries ) ) { |
|
173 | + if (empty($this->entries)) { |
|
174 | 174 | return '<div class="gv-no-results">'.$this->empty_message.'</div>'; |
175 | 175 | } |
176 | 176 | |
177 | 177 | $output = ''; |
178 | 178 | $current_entry = GravityView_View::getInstance()->getCurrentEntry(); |
179 | 179 | |
180 | - $output .= '<'. $this->wrapper_tag .'>'; |
|
180 | + $output .= '<'.$this->wrapper_tag.'>'; |
|
181 | 181 | |
182 | - foreach( $this->entries as $entry ) { |
|
182 | + foreach ($this->entries as $entry) { |
|
183 | 183 | |
184 | - if( $this->skip_entry( $entry, $current_entry ) ) { |
|
184 | + if ($this->skip_entry($entry, $current_entry)) { |
|
185 | 185 | continue; |
186 | 186 | } |
187 | 187 | |
188 | - $output .= $this->get_item_output( $entry ); |
|
188 | + $output .= $this->get_item_output($entry); |
|
189 | 189 | } |
190 | 190 | |
191 | - $output .= '</'. $this->wrapper_tag .'>'; |
|
191 | + $output .= '</'.$this->wrapper_tag.'>'; |
|
192 | 192 | |
193 | 193 | /** |
194 | 194 | * @filter `gravityview/widget/recent-entries/output` Modify the HTML of the Recent Entries widget output |
195 | 195 | * @param string $output HTML to be displayed |
196 | 196 | * @param GravityView_Entry_List $this The current class instance |
197 | 197 | */ |
198 | - $output = apply_filters( 'gravityview/widget/recent-entries/output', $output, $this ); |
|
198 | + $output = apply_filters('gravityview/widget/recent-entries/output', $output, $this); |
|
199 | 199 | |
200 | 200 | return $output; |
201 | 201 | } |
@@ -208,18 +208,18 @@ discard block |
||
208 | 208 | * |
209 | 209 | * @return bool True: Skip entry; False: don't skip entry |
210 | 210 | */ |
211 | - private function skip_entry( $entry, $current_entry ) { |
|
211 | + private function skip_entry($entry, $current_entry) { |
|
212 | 212 | |
213 | 213 | // If skip entry is off, or there's no current entry, return false |
214 | - if( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { |
|
214 | + if (empty($this->skip_current_entry) || empty($current_entry)) { |
|
215 | 215 | return false; |
216 | 216 | } |
217 | 217 | |
218 | 218 | // If in Single or Edit mode, $current_entry will be an array. |
219 | - $current_entry_id = is_array( $current_entry ) ? $current_entry['id'] : $current_entry; |
|
219 | + $current_entry_id = is_array($current_entry) ? $current_entry['id'] : $current_entry; |
|
220 | 220 | |
221 | 221 | // If the entry ID matches the current entry, yes: skip |
222 | - if( $entry['id'] === $current_entry_id ) { |
|
222 | + if ($entry['id'] === $current_entry_id) { |
|
223 | 223 | return true; |
224 | 224 | } |
225 | 225 | |
@@ -240,13 +240,13 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @return string HTML output for the entry |
242 | 242 | */ |
243 | - private function get_item_output( $entry ) { |
|
243 | + private function get_item_output($entry) { |
|
244 | 244 | |
245 | - $link = GravityView_API::entry_link( $entry, $this->post_id ); |
|
245 | + $link = GravityView_API::entry_link($entry, $this->post_id); |
|
246 | 246 | |
247 | - $item_output = gravityview_get_link( $link, $this->link_format ); |
|
247 | + $item_output = gravityview_get_link($link, $this->link_format); |
|
248 | 248 | |
249 | - if( !empty( $this->after_link ) ) { |
|
249 | + if (!empty($this->after_link)) { |
|
250 | 250 | |
251 | 251 | /** |
252 | 252 | * @filter `gravityview/entry-list/after-link` Modify the content displayed after the entry link in an entry list |
@@ -255,14 +255,14 @@ discard block |
||
255 | 255 | * @param array $entry Gravity Forms entry array |
256 | 256 | * @param GravityView_Entry_List $this The current class instance |
257 | 257 | */ |
258 | - $after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>'.$this->after_link.'</div>', $entry, $this ); |
|
258 | + $after_link = apply_filters('gravityview/entry-list/after-link', '<div>'.$this->after_link.'</div>', $entry, $this); |
|
259 | 259 | |
260 | 260 | $item_output .= $after_link; |
261 | 261 | } |
262 | 262 | |
263 | - $item_output = GravityView_API::replace_variables( $item_output, $this->form, $entry ); |
|
263 | + $item_output = GravityView_API::replace_variables($item_output, $this->form, $entry); |
|
264 | 264 | |
265 | - $item_output = '<'. $this->item_tag .'>'. $item_output .'</'. $this->item_tag .'>'; |
|
265 | + $item_output = '<'.$this->item_tag.'>'.$item_output.'</'.$this->item_tag.'>'; |
|
266 | 266 | |
267 | 267 | /** |
268 | 268 | * @filter `gravityview/entry-list/item` Modify each item's output in an entry list |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | * @param array $entry Gravity Forms entry array |
272 | 272 | * @param GravityView_Entry_List $this The current class instance |
273 | 273 | */ |
274 | - $item_output = apply_filters( 'gravityview/entry-list/item', $item_output, $entry, $this ); |
|
274 | + $item_output = apply_filters('gravityview/entry-list/item', $item_output, $entry, $this); |
|
275 | 275 | |
276 | 276 | return $item_output; |
277 | 277 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | * @since 1.15 |
18 | 18 | */ |
19 | 19 | private function add_hooks() { |
20 | - add_filter( 'gform_notes_avatar', array( 'GravityView_Entry_Notes', 'filter_avatar' ), 10, 2 ); |
|
20 | + add_filter('gform_notes_avatar', array('GravityView_Entry_Notes', 'filter_avatar'), 10, 2); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param string $note Note content. |
32 | 32 | * @param string $note_type Type of note. Default: `gravityview` |
33 | 33 | */ |
34 | - public static function add_note( $lead_id, $user_id, $user_name, $note = '', $note_type = 'gravityview' ) { |
|
34 | + public static function add_note($lead_id, $user_id, $user_name, $note = '', $note_type = 'gravityview') { |
|
35 | 35 | |
36 | 36 | $default_note = array( |
37 | 37 | 'lead_id' => 0, |
@@ -47,12 +47,12 @@ discard block |
||
47 | 47 | * @since 1.15.2 |
48 | 48 | * @param array $note Array with `lead_id`, `user_id`, `user_name`, `note`, and `note_type` key value pairs |
49 | 49 | */ |
50 | - $note = apply_filters( 'gravityview/entry_notes/add_note', compact( 'lead_id', 'user_id', 'user_name', 'note', 'note_type' ) ); |
|
50 | + $note = apply_filters('gravityview/entry_notes/add_note', compact('lead_id', 'user_id', 'user_name', 'note', 'note_type')); |
|
51 | 51 | |
52 | 52 | // Make sure the keys are all set |
53 | - $note = wp_parse_args( $note, $default_note ); |
|
53 | + $note = wp_parse_args($note, $default_note); |
|
54 | 54 | |
55 | - GFFormsModel::add_note( intval( $note['lead_id'] ), intval( $note['user_id'] ), esc_attr( $note['user_name'] ), $note['note'], esc_attr( $note['note_type'] ) ); |
|
55 | + GFFormsModel::add_note(intval($note['lead_id']), intval($note['user_id']), esc_attr($note['user_name']), $note['note'], esc_attr($note['note_type'])); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | * @see GFFormsModel::delete_note() |
61 | 61 | * @param int $note_id Entry note ID |
62 | 62 | */ |
63 | - public static function delete_note( $note_id ) { |
|
64 | - GFFormsModel::delete_note( $note_id ); |
|
63 | + public static function delete_note($note_id) { |
|
64 | + GFFormsModel::delete_note($note_id); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | * @todo Write more efficient delete note method using SQL |
71 | 71 | * @param int[] $note_ids Array of entry note ids |
72 | 72 | */ |
73 | - public static function delete_notes( $note_ids = array() ) { |
|
73 | + public static function delete_notes($note_ids = array()) { |
|
74 | 74 | |
75 | - if( !is_array( $note_ids ) ) { |
|
76 | - do_action( 'gravityview_log_error', __METHOD__ . ' - Note IDs not an array', $note_ids ); |
|
75 | + if (!is_array($note_ids)) { |
|
76 | + do_action('gravityview_log_error', __METHOD__.' - Note IDs not an array', $note_ids); |
|
77 | 77 | } |
78 | 78 | |
79 | - GFFormsModel::delete_notes( $note_ids ); |
|
79 | + GFFormsModel::delete_notes($note_ids); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @return stdClass[] Integer-keyed array of note objects |
89 | 89 | */ |
90 | - public static function get_notes( $entry_id ) { |
|
91 | - $notes = GFFormsModel::get_lead_notes( $entry_id ); |
|
90 | + public static function get_notes($entry_id) { |
|
91 | + $notes = GFFormsModel::get_lead_notes($entry_id); |
|
92 | 92 | |
93 | 93 | /** |
94 | 94 | * @filter `gravityview/entry_notes/get_notes` Modify the notes array for an entry |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * @param stdClass[] $notes Integer-keyed array of note objects |
97 | 97 | * @param int $entry_id Entry to get notes for |
98 | 98 | */ |
99 | - $notes = apply_filters( 'gravityview/entry_notes/get_notes', $notes, $entry_id ); |
|
99 | + $notes = apply_filters('gravityview/entry_notes/get_notes', $notes, $entry_id); |
|
100 | 100 | |
101 | 101 | return $notes; |
102 | 102 | } |
@@ -109,10 +109,10 @@ discard block |
||
109 | 109 | * @param object $note Note object with id, user_id, date_created, value, note_type, user_name, user_email vars |
110 | 110 | * @return string Possibly-modified avatar |
111 | 111 | */ |
112 | - public static function filter_avatar( $avatar = '', $note ) { |
|
112 | + public static function filter_avatar($avatar = '', $note) { |
|
113 | 113 | |
114 | - if( 'gravityview' === $note->note_type && -1 === (int)$note->user_id ) { |
|
115 | - $avatar = sprintf( '<img src="%s" width="48" height="48" alt="GravityView" class="avatar avatar-48 gravityview-avatar" />', esc_url_raw( plugins_url( 'assets/images/floaty-avatar.png', GRAVITYVIEW_FILE ) ) ); |
|
114 | + if ('gravityview' === $note->note_type && -1 === (int)$note->user_id) { |
|
115 | + $avatar = sprintf('<img src="%s" width="48" height="48" alt="GravityView" class="avatar avatar-48 gravityview-avatar" />', esc_url_raw(plugins_url('assets/images/floaty-avatar.png', GRAVITYVIEW_FILE))); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | return $avatar; |
@@ -23,7 +23,7 @@ |
||
23 | 23 | var $style = NULL; |
24 | 24 | |
25 | 25 | /** |
26 | - * String representing size of image - Choose from "full", "medium", "thumb", "tiny" |
|
26 | + * String representing size of image - Choose from "full", "medium", "thumb", "tiny" |
|
27 | 27 | * @var string |
28 | 28 | */ |
29 | 29 | var $size = NULL; |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | |
52 | - function __construct( $atts = array() ) { |
|
52 | + function __construct($atts = array()) { |
|
53 | 53 | |
54 | 54 | $defaults = array( |
55 | 55 | 'width' => $this->width, |
@@ -63,13 +63,13 @@ discard block |
||
63 | 63 | 'validate_src' => true |
64 | 64 | ); |
65 | 65 | |
66 | - $atts = wp_parse_args( $atts, $defaults ); |
|
66 | + $atts = wp_parse_args($atts, $defaults); |
|
67 | 67 | |
68 | - foreach( $atts as $key => $val ) { |
|
68 | + foreach ($atts as $key => $val) { |
|
69 | 69 | $this->{$key} = $val; |
70 | 70 | } |
71 | 71 | |
72 | - $this->class = !empty( $this->class ) ? esc_attr( implode( ' ', (array)$this->class ) ) : $this->class; |
|
72 | + $this->class = !empty($this->class) ? esc_attr(implode(' ', (array)$this->class)) : $this->class; |
|
73 | 73 | |
74 | 74 | $this->set_image_size(); |
75 | 75 | |
@@ -85,17 +85,17 @@ discard block |
||
85 | 85 | */ |
86 | 86 | function validate_image_src() { |
87 | 87 | |
88 | - if ( !$this->validate_src ) { return true; } |
|
88 | + if (!$this->validate_src) { return true; } |
|
89 | 89 | |
90 | - $info = pathinfo( $this->src ); |
|
90 | + $info = pathinfo($this->src); |
|
91 | 91 | |
92 | 92 | /** |
93 | 93 | * @filter `gravityview_image_extensions` Extensions that GravityView recognizes as valid images to be shown in an `img` tag |
94 | 94 | * @param array $image_exts Default: `['jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico']` |
95 | 95 | */ |
96 | - $image_exts = apply_filters( 'gravityview_image_extensions', array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico' )); |
|
96 | + $image_exts = apply_filters('gravityview_image_extensions', array('jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico')); |
|
97 | 97 | |
98 | - return isset( $info['extension'] ) && in_array( strtolower( $info['extension'] ), $image_exts); |
|
98 | + return isset($info['extension']) && in_array(strtolower($info['extension']), $image_exts); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -103,20 +103,20 @@ discard block |
||
103 | 103 | * |
104 | 104 | * @return void |
105 | 105 | */ |
106 | - public function set_image_size( $string = NULL, $width = NULL, $height = NULL ) { |
|
106 | + public function set_image_size($string = NULL, $width = NULL, $height = NULL) { |
|
107 | 107 | |
108 | 108 | |
109 | 109 | // If there is no width or height passed |
110 | - if ( empty( $width ) || empty( $height ) ) { |
|
110 | + if (empty($width) || empty($height)) { |
|
111 | 111 | |
112 | 112 | // And there is no string size passed |
113 | 113 | // And we want to get the image size using PHP |
114 | - if ( empty( $string ) && !empty( $this->getimagesize ) ) { |
|
114 | + if (empty($string) && !empty($this->getimagesize)) { |
|
115 | 115 | |
116 | - $image_size = getimagesize( $this->src ); |
|
116 | + $image_size = getimagesize($this->src); |
|
117 | 117 | |
118 | - if ( !empty( $image_size ) ) { |
|
119 | - list( $width, $height ) = $image_size; |
|
118 | + if (!empty($image_size)) { |
|
119 | + list($width, $height) = $image_size; |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | } |
@@ -127,14 +127,14 @@ discard block |
||
127 | 127 | * @filter `gravityview_image_sizes` Modify the image size presets used by GravityView_Image class |
128 | 128 | * @param array $image_sizes Array of image sizes with the key being the size slug, and the value being an array with `width` and `height` defined, in pixels |
129 | 129 | */ |
130 | - $image_sizes = apply_filters( 'gravityview_image_sizes', array( |
|
130 | + $image_sizes = apply_filters('gravityview_image_sizes', array( |
|
131 | 131 | 'tiny' => array('width' => 40, 'height' => 30), |
132 | 132 | 'small' => array('width' => 100, 'height' => 75), |
133 | 133 | 'medium' => array('width' => 250, 'height' => 188), |
134 | 134 | 'large' => array('width' => 448, 'height' => 336), |
135 | - ) ); |
|
135 | + )); |
|
136 | 136 | |
137 | - switch( $this->size ) { |
|
137 | + switch ($this->size) { |
|
138 | 138 | case 'tiny': |
139 | 139 | extract($image_sizes['tiny']); |
140 | 140 | break; |
@@ -153,8 +153,8 @@ discard block |
||
153 | 153 | break; |
154 | 154 | default: |
155 | 155 | // Verify that the passed sizes are integers. |
156 | - $width = !empty( $width ) ? intval( $width ) : intval( $this->width ); |
|
157 | - $height = !empty( $height ) ? intval( $height ) : intval( $this->height ); |
|
156 | + $width = !empty($width) ? intval($width) : intval($this->width); |
|
157 | + $height = !empty($height) ? intval($height) : intval($this->height); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | } |
@@ -171,18 +171,18 @@ discard block |
||
171 | 171 | */ |
172 | 172 | public function html() { |
173 | 173 | |
174 | - if ( ! $this->validate_image_src() ) { |
|
174 | + if (!$this->validate_image_src()) { |
|
175 | 175 | $html = ''; |
176 | 176 | } else { |
177 | 177 | $atts = ''; |
178 | - foreach ( array( 'width', 'height', 'alt', 'title', 'class' ) as $attr ) { |
|
178 | + foreach (array('width', 'height', 'alt', 'title', 'class') as $attr) { |
|
179 | 179 | |
180 | - if ( empty( $this->{$attr} ) ) { continue; } |
|
180 | + if (empty($this->{$attr} )) { continue; } |
|
181 | 181 | |
182 | - $atts .= sprintf( ' %s="%s"', $attr, esc_attr( $this->{$attr} ) ); |
|
182 | + $atts .= sprintf(' %s="%s"', $attr, esc_attr($this->{$attr} )); |
|
183 | 183 | } |
184 | 184 | |
185 | - $html = sprintf( '<img src="%s" %s />', esc_url_raw( $this->src ), $atts ); |
|
185 | + $html = sprintf('<img src="%s" %s />', esc_url_raw($this->src), $atts); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
@@ -190,6 +190,6 @@ discard block |
||
190 | 190 | * @param string $html the generated image html |
191 | 191 | * @param GravityView_Image $this The current image object |
192 | 192 | */ |
193 | - return apply_filters( 'gravityview_image_html', $html, $this ); |
|
193 | + return apply_filters('gravityview_image_html', $html, $this); |
|
194 | 194 | } |
195 | 195 | } |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | add_action( 'gravityview_log_debug', array( $this, 'log_debug'), 10, 2 ); |
13 | 13 | |
14 | 14 | // Enable debug with Gravity Forms Logging Add-on |
15 | - add_filter( 'gform_logging_supported', array( $this, 'enable_gform_logging' ) ); |
|
15 | + add_filter( 'gform_logging_supported', array( $this, 'enable_gform_logging' ) ); |
|
16 | 16 | |
17 | - // Load Debug Bar integration |
|
18 | - add_filter( 'debug_bar_panels', array( $this, 'add_debug_bar' ) ); |
|
17 | + // Load Debug Bar integration |
|
18 | + add_filter( 'debug_bar_panels', array( $this, 'add_debug_bar' ) ); |
|
19 | 19 | |
20 | 20 | } |
21 | 21 | |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | * @param array $supported_plugins List of plugins |
45 | 45 | */ |
46 | 46 | public function enable_gform_logging( $supported_plugins ) { |
47 | - $supported_plugins['gravityview'] = 'GravityView'; |
|
48 | - return $supported_plugins; |
|
47 | + $supported_plugins['gravityview'] = 'GravityView'; |
|
48 | + return $supported_plugins; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | |
98 | 98 | if ( class_exists("GFLogging") ) { |
99 | 99 | GFLogging::include_logger(); |
100 | - GFLogging::log_message( 'gravityview', $function( $message, true ) . $function($data, true), KLogger::DEBUG ); |
|
101 | - } |
|
100 | + GFLogging::log_message( 'gravityview', $function( $message, true ) . $function($data, true), KLogger::DEBUG ); |
|
101 | + } |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | static function log_error( $message = '', $data = null ) { |
@@ -116,8 +116,8 @@ discard block |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | if ( class_exists("GFLogging") ) { |
119 | - GFLogging::include_logger(); |
|
120 | - GFLogging::log_message( 'gravityview', $function ( $message, true ) . $function ($data, true), KLogger::ERROR ); |
|
119 | + GFLogging::include_logger(); |
|
120 | + GFLogging::log_message( 'gravityview', $function ( $message, true ) . $function ($data, true), KLogger::ERROR ); |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | |
8 | 8 | function __construct() { |
9 | 9 | |
10 | - add_action( 'gravityview_log_error', array( $this, 'log_error'), 10, 2 ); |
|
10 | + add_action('gravityview_log_error', array($this, 'log_error'), 10, 2); |
|
11 | 11 | |
12 | - add_action( 'gravityview_log_debug', array( $this, 'log_debug'), 10, 2 ); |
|
12 | + add_action('gravityview_log_debug', array($this, 'log_debug'), 10, 2); |
|
13 | 13 | |
14 | 14 | // Enable debug with Gravity Forms Logging Add-on |
15 | - add_filter( 'gform_logging_supported', array( $this, 'enable_gform_logging' ) ); |
|
15 | + add_filter('gform_logging_supported', array($this, 'enable_gform_logging')); |
|
16 | 16 | |
17 | 17 | // Load Debug Bar integration |
18 | - add_filter( 'debug_bar_panels', array( $this, 'add_debug_bar' ) ); |
|
18 | + add_filter('debug_bar_panels', array($this, 'add_debug_bar')); |
|
19 | 19 | |
20 | 20 | } |
21 | 21 | |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @see http://wordpress.org/plugins/debug-bar/ |
26 | 26 | */ |
27 | - public function add_debug_bar( $panels ) { |
|
27 | + public function add_debug_bar($panels) { |
|
28 | 28 | |
29 | - if ( ! class_exists( 'Debug_Bar_Panel' ) ) { |
|
29 | + if (!class_exists('Debug_Bar_Panel')) { |
|
30 | 30 | return; |
31 | 31 | } |
32 | 32 | |
33 | - if ( ! class_exists( 'GravityView_Debug_Bar' ) ) { |
|
34 | - include_once( GRAVITYVIEW_DIR . 'includes/class-debug-bar.php' ); |
|
33 | + if (!class_exists('GravityView_Debug_Bar')) { |
|
34 | + include_once(GRAVITYVIEW_DIR.'includes/class-debug-bar.php'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | $panels[] = new GravityView_Debug_Bar; |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * Enables debug with Gravity Forms logging add-on |
44 | 44 | * @param array $supported_plugins List of plugins |
45 | 45 | */ |
46 | - public function enable_gform_logging( $supported_plugins ) { |
|
46 | + public function enable_gform_logging($supported_plugins) { |
|
47 | 47 | $supported_plugins['gravityview'] = 'GravityView'; |
48 | 48 | return $supported_plugins; |
49 | 49 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @return string "print_r" or "var_export" |
73 | 73 | */ |
74 | 74 | static function get_print_function() { |
75 | - if( ob_get_level() > 0 ) { |
|
75 | + if (ob_get_level() > 0) { |
|
76 | 76 | $function = 'var_export'; |
77 | 77 | } else { |
78 | 78 | $function = 'print_r'; |
@@ -81,43 +81,43 @@ discard block |
||
81 | 81 | return $function; |
82 | 82 | } |
83 | 83 | |
84 | - static function log_debug( $message = '', $data = null ) { |
|
84 | + static function log_debug($message = '', $data = null) { |
|
85 | 85 | |
86 | 86 | $function = self::get_print_function(); |
87 | 87 | |
88 | 88 | $notice = array( |
89 | - 'message' => $function( $message, true ), |
|
89 | + 'message' => $function($message, true), |
|
90 | 90 | 'data' => $data, |
91 | - 'backtrace' => function_exists('wp_debug_backtrace_summary') ? wp_debug_backtrace_summary( null, 3 ) : '', |
|
91 | + 'backtrace' => function_exists('wp_debug_backtrace_summary') ? wp_debug_backtrace_summary(null, 3) : '', |
|
92 | 92 | ); |
93 | 93 | |
94 | - if( !in_array( $notice, self::$notices ) ) { |
|
94 | + if (!in_array($notice, self::$notices)) { |
|
95 | 95 | self::$notices[] = $notice; |
96 | 96 | } |
97 | 97 | |
98 | - if ( class_exists("GFLogging") ) { |
|
98 | + if (class_exists("GFLogging")) { |
|
99 | 99 | GFLogging::include_logger(); |
100 | - GFLogging::log_message( 'gravityview', $function( $message, true ) . $function($data, true), KLogger::DEBUG ); |
|
100 | + GFLogging::log_message('gravityview', $function($message, true).$function($data, true), KLogger::DEBUG); |
|
101 | 101 | } |
102 | 102 | } |
103 | 103 | |
104 | - static function log_error( $message = '', $data = null ) { |
|
104 | + static function log_error($message = '', $data = null) { |
|
105 | 105 | |
106 | 106 | $function = self::get_print_function(); |
107 | 107 | |
108 | 108 | $error = array( |
109 | 109 | 'message' => $message, |
110 | 110 | 'data' => $data, |
111 | - 'backtrace' => function_exists('wp_debug_backtrace_summary') ? wp_debug_backtrace_summary( null, 3 ) : '', |
|
111 | + 'backtrace' => function_exists('wp_debug_backtrace_summary') ? wp_debug_backtrace_summary(null, 3) : '', |
|
112 | 112 | ); |
113 | 113 | |
114 | - if( !in_array( $error, self::$errors ) ) { |
|
114 | + if (!in_array($error, self::$errors)) { |
|
115 | 115 | self::$errors[] = $error; |
116 | 116 | } |
117 | 117 | |
118 | - if ( class_exists("GFLogging") ) { |
|
118 | + if (class_exists("GFLogging")) { |
|
119 | 119 | GFLogging::include_logger(); |
120 | - GFLogging::log_message( 'gravityview', $function ( $message, true ) . $function ($data, true), KLogger::ERROR ); |
|
120 | + GFLogging::log_message('gravityview', $function($message, true).$function($data, true), KLogger::ERROR); |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | class GravityView_Migrate { |
16 | 16 | |
17 | 17 | function __construct() { |
18 | - add_action( 'admin_init', array( $this, 'update_settings' ), 1 ); |
|
18 | + add_action('admin_init', array($this, 'update_settings'), 1); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public function update_settings() { |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | private function maybe_migrate_search_widget() { |
33 | 33 | |
34 | 34 | // check if search migration is already performed |
35 | - $is_updated = get_option( 'gv_migrate_searchwidget' ); |
|
36 | - if ( $is_updated ) { |
|
35 | + $is_updated = get_option('gv_migrate_searchwidget'); |
|
36 | + if ($is_updated) { |
|
37 | 37 | return; |
38 | 38 | } else { |
39 | 39 | $this->update_search_on_views(); |
@@ -51,22 +51,22 @@ discard block |
||
51 | 51 | $redux_settings = $this->get_redux_settings(); |
52 | 52 | |
53 | 53 | // No need to process |
54 | - if( false === $redux_settings ) { |
|
54 | + if (false === $redux_settings) { |
|
55 | 55 | return; |
56 | 56 | } |
57 | 57 | |
58 | - if( empty( $redux_settings['license_key_status'] ) ) { |
|
59 | - $redux_settings = $this->get_redux_license_status( $redux_settings ); |
|
58 | + if (empty($redux_settings['license_key_status'])) { |
|
59 | + $redux_settings = $this->get_redux_license_status($redux_settings); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | // Get the current app settings (just defaults) |
63 | 63 | $current = GravityView_Settings::get_instance()->get_app_settings(); |
64 | 64 | |
65 | 65 | // Merge the redux settings with the defaults |
66 | - $updated_settings = wp_parse_args( $redux_settings, $current ); |
|
66 | + $updated_settings = wp_parse_args($redux_settings, $current); |
|
67 | 67 | |
68 | 68 | // Update the defaults to the new merged |
69 | - GravityView_Settings::get_instance()->update_app_settings( $updated_settings ); |
|
69 | + GravityView_Settings::get_instance()->update_app_settings($updated_settings); |
|
70 | 70 | |
71 | 71 | // And now remove the previous option, so this is a one-time thing. |
72 | 72 | delete_option('gravityview_settings'); |
@@ -82,20 +82,20 @@ discard block |
||
82 | 82 | * |
83 | 83 | * @return array |
84 | 84 | */ |
85 | - function get_redux_license_status( $redux_settings = array() ) { |
|
85 | + function get_redux_license_status($redux_settings = array()) { |
|
86 | 86 | |
87 | 87 | $data = array( |
88 | 88 | 'edd_action' => 'check_license', |
89 | - 'license' => rgget('license_key', $redux_settings ), |
|
89 | + 'license' => rgget('license_key', $redux_settings), |
|
90 | 90 | 'update' => false, |
91 | 91 | 'format' => 'object', |
92 | 92 | ); |
93 | 93 | |
94 | - $license_call = GravityView_Settings::get_instance()->get_license_handler()->license_call( $data ); |
|
94 | + $license_call = GravityView_Settings::get_instance()->get_license_handler()->license_call($data); |
|
95 | 95 | |
96 | - if( is_object( $license_call ) && isset( $license_call->license ) ) { |
|
96 | + if (is_object($license_call) && isset($license_call->license)) { |
|
97 | 97 | $redux_settings['license_key_status'] = $license_call->license; |
98 | - $redux_settings['license_key_response'] = json_encode( $license_call ); |
|
98 | + $redux_settings['license_key_response'] = json_encode($license_call); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | return $redux_settings; |
@@ -112,31 +112,31 @@ discard block |
||
112 | 112 | $redux_option = get_option('gravityview_settings'); |
113 | 113 | |
114 | 114 | // No Redux settings? Don't proceed. |
115 | - if( false === $redux_option ) { |
|
115 | + if (false === $redux_option) { |
|
116 | 116 | return false; |
117 | 117 | } |
118 | 118 | |
119 | 119 | |
120 | 120 | $redux_settings = array( |
121 | - 'support-email' => rgget( 'support-email', $redux_option ), |
|
122 | - 'no-conflict-mode' => ( rgget( 'no-conflict-mode', $redux_option ) ? '1' : '0' ), |
|
121 | + 'support-email' => rgget('support-email', $redux_option), |
|
122 | + 'no-conflict-mode' => (rgget('no-conflict-mode', $redux_option) ? '1' : '0'), |
|
123 | 123 | ); |
124 | 124 | |
125 | - if( $license_array = rgget( 'license', $redux_option ) ) { |
|
125 | + if ($license_array = rgget('license', $redux_option)) { |
|
126 | 126 | |
127 | - $redux_settings['license_key'] = $license_key = rgget( 'license', $license_array ); |
|
127 | + $redux_settings['license_key'] = $license_key = rgget('license', $license_array); |
|
128 | 128 | |
129 | 129 | $redux_last_changed_values = get_option('gravityview_settings-transients'); |
130 | 130 | |
131 | 131 | // This contains the last response for license validation |
132 | - if( !empty( $redux_last_changed_values ) && $saved_values = rgget( 'changed_values', $redux_last_changed_values ) ) { |
|
132 | + if (!empty($redux_last_changed_values) && $saved_values = rgget('changed_values', $redux_last_changed_values)) { |
|
133 | 133 | |
134 | - $saved_license = rgget('license', $saved_values ); |
|
134 | + $saved_license = rgget('license', $saved_values); |
|
135 | 135 | |
136 | 136 | // Only use the last-saved values if they are for the same license |
137 | - if( $saved_license && rgget( 'license', $saved_license ) === $license_key ) { |
|
138 | - $redux_settings['license_key_status'] = rgget( 'status', $saved_license ); |
|
139 | - $redux_settings['license_key_response'] = rgget( 'response', $saved_license ); |
|
137 | + if ($saved_license && rgget('license', $saved_license) === $license_key) { |
|
138 | + $redux_settings['license_key_status'] = rgget('status', $saved_license); |
|
139 | + $redux_settings['license_key_response'] = rgget('response', $saved_license); |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | /** ---- Migrate from old search widget to new search widget ---- */ |
149 | 149 | function update_search_on_views() { |
150 | 150 | |
151 | - if( !class_exists('GravityView_Widget_Search') ) { |
|
152 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/search-widget/class-search-widget.php' ); |
|
151 | + if (!class_exists('GravityView_Widget_Search')) { |
|
152 | + include_once(GRAVITYVIEW_DIR.'includes/extensions/search-widget/class-search-widget.php'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | // Loop through all the views |
@@ -159,94 +159,94 @@ discard block |
||
159 | 159 | 'posts_per_page' => -1, |
160 | 160 | ); |
161 | 161 | |
162 | - $views = get_posts( $query_args ); |
|
162 | + $views = get_posts($query_args); |
|
163 | 163 | |
164 | - foreach( $views as $view ) { |
|
164 | + foreach ($views as $view) { |
|
165 | 165 | |
166 | - $widgets = get_post_meta( $view->ID, '_gravityview_directory_widgets', true ); |
|
166 | + $widgets = get_post_meta($view->ID, '_gravityview_directory_widgets', true); |
|
167 | 167 | $search_fields = null; |
168 | 168 | |
169 | - if( empty( $widgets ) || !is_array( $widgets ) ) { continue; } |
|
169 | + if (empty($widgets) || !is_array($widgets)) { continue; } |
|
170 | 170 | |
171 | - do_action( 'gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] Loading View ID: ', $view->ID ); |
|
171 | + do_action('gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] Loading View ID: ', $view->ID); |
|
172 | 172 | |
173 | - foreach( $widgets as $area => $ws ) { |
|
174 | - foreach( $ws as $k => $widget ) { |
|
175 | - if( $widget['id'] !== 'search_bar' ) { continue; } |
|
173 | + foreach ($widgets as $area => $ws) { |
|
174 | + foreach ($ws as $k => $widget) { |
|
175 | + if ($widget['id'] !== 'search_bar') { continue; } |
|
176 | 176 | |
177 | - if( is_null( $search_fields ) ) { |
|
178 | - $search_fields = $this->get_search_fields( $view->ID ); |
|
177 | + if (is_null($search_fields)) { |
|
178 | + $search_fields = $this->get_search_fields($view->ID); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | // check widget settings: |
182 | 182 | // [search_free] => 1 |
183 | 183 | // [search_date] => 1 |
184 | 184 | $search_generic = array(); |
185 | - if( !empty( $widget['search_free'] ) ) { |
|
186 | - $search_generic[] = array( 'field' => 'search_all', 'input' => 'input_text' ); |
|
185 | + if (!empty($widget['search_free'])) { |
|
186 | + $search_generic[] = array('field' => 'search_all', 'input' => 'input_text'); |
|
187 | 187 | } |
188 | - if( !empty( $widget['search_date'] ) ) { |
|
189 | - $search_generic[] = array( 'field' => 'entry_date', 'input' => 'date' ); |
|
188 | + if (!empty($widget['search_date'])) { |
|
189 | + $search_generic[] = array('field' => 'entry_date', 'input' => 'date'); |
|
190 | 190 | } |
191 | 191 | |
192 | - $search_config = array_merge( $search_generic, $search_fields ); |
|
192 | + $search_config = array_merge($search_generic, $search_fields); |
|
193 | 193 | |
194 | 194 | // don't throw '[]' when json_encode an empty array |
195 | - if( empty( $search_config ) ) { |
|
195 | + if (empty($search_config)) { |
|
196 | 196 | $search_config = ''; |
197 | 197 | } else { |
198 | - $search_config = json_encode( $search_config ); |
|
198 | + $search_config = json_encode($search_config); |
|
199 | 199 | } |
200 | 200 | |
201 | - $widgets[ $area ][ $k ]['search_fields'] = $search_config; |
|
202 | - $widgets[ $area ][ $k ]['search_layout'] = 'horizontal'; |
|
201 | + $widgets[$area][$k]['search_fields'] = $search_config; |
|
202 | + $widgets[$area][$k]['search_layout'] = 'horizontal'; |
|
203 | 203 | |
204 | - do_action( 'gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] Updated Widget: ', $widgets[ $area ][ $k ] ); |
|
204 | + do_action('gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] Updated Widget: ', $widgets[$area][$k]); |
|
205 | 205 | } |
206 | 206 | } |
207 | 207 | |
208 | 208 | // update widgets view |
209 | - update_post_meta( $view->ID, '_gravityview_directory_widgets', $widgets ); |
|
209 | + update_post_meta($view->ID, '_gravityview_directory_widgets', $widgets); |
|
210 | 210 | |
211 | 211 | } // foreach Views |
212 | 212 | |
213 | 213 | // all done! enjoy the new Search Widget! |
214 | - update_option( 'gv_migrate_searchwidget', true ); |
|
214 | + update_option('gv_migrate_searchwidget', true); |
|
215 | 215 | |
216 | - do_action( 'gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] All done! enjoy the new Search Widget!' ); |
|
216 | + do_action('gravityview_log_debug', '[GravityView_Migrate/update_search_on_views] All done! enjoy the new Search Widget!'); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | |
220 | - function get_search_fields( $view_id ) { |
|
220 | + function get_search_fields($view_id) { |
|
221 | 221 | |
222 | - $form_id = gravityview_get_form_id( $view_id ); |
|
223 | - $form = gravityview_get_form( $form_id ); |
|
222 | + $form_id = gravityview_get_form_id($view_id); |
|
223 | + $form = gravityview_get_form($form_id); |
|
224 | 224 | |
225 | 225 | $search_fields = array(); |
226 | 226 | |
227 | 227 | // check view fields' settings |
228 | - $fields = get_post_meta( $view_id, '_gravityview_directory_fields', true ); |
|
228 | + $fields = get_post_meta($view_id, '_gravityview_directory_fields', true); |
|
229 | 229 | |
230 | - if( !empty( $fields ) && is_array( $fields ) ) { |
|
230 | + if (!empty($fields) && is_array($fields)) { |
|
231 | 231 | |
232 | - foreach( $fields as $t => $fs ) { |
|
232 | + foreach ($fields as $t => $fs) { |
|
233 | 233 | |
234 | - foreach( $fs as $k => $field ) { |
|
234 | + foreach ($fs as $k => $field) { |
|
235 | 235 | // is field a search_filter ? |
236 | - if( empty( $field['search_filter'] ) ) { continue; } |
|
236 | + if (empty($field['search_filter'])) { continue; } |
|
237 | 237 | |
238 | 238 | // get field type & calculate the input type (by default) |
239 | - $form_field = gravityview_get_field( $form, $field['id'] ); |
|
239 | + $form_field = gravityview_get_field($form, $field['id']); |
|
240 | 240 | |
241 | - if( empty( $form_field['type'] ) ) { |
|
241 | + if (empty($form_field['type'])) { |
|
242 | 242 | continue; |
243 | 243 | } |
244 | 244 | |
245 | 245 | // depending on the field type assign a group of possible search field types |
246 | - $type = GravityView_Widget_Search::get_search_input_types( $field['id'], $form_field['type'] ); |
|
246 | + $type = GravityView_Widget_Search::get_search_input_types($field['id'], $form_field['type']); |
|
247 | 247 | |
248 | 248 | // add field to config |
249 | - $search_fields[] = array( 'field' => $field['id'], 'input' => $type ); |
|
249 | + $search_fields[] = array('field' => $field['id'], 'input' => $type); |
|
250 | 250 | |
251 | 251 | } |
252 | 252 | } |
@@ -1,15 +1,15 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * GravityView Migrate Class - where awesome features become even better, seamlessly! |
|
4 | - * |
|
5 | - * @package GravityView |
|
6 | - * @author Zack Katz <[email protected]> |
|
7 | - * @license ToBeDefined |
|
8 | - * @link http://www.katzwebservices.com |
|
9 | - * @copyright Copyright 2014, Katz Web Services, Inc. |
|
10 | - * |
|
11 | - * @since 1.2 |
|
12 | - */ |
|
3 | + * GravityView Migrate Class - where awesome features become even better, seamlessly! |
|
4 | + * |
|
5 | + * @package GravityView |
|
6 | + * @author Zack Katz <[email protected]> |
|
7 | + * @license ToBeDefined |
|
8 | + * @link http://www.katzwebservices.com |
|
9 | + * @copyright Copyright 2014, Katz Web Services, Inc. |
|
10 | + * |
|
11 | + * @since 1.2 |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | |
15 | 15 | class GravityView_Migrate { |
@@ -180,8 +180,8 @@ discard block |
||
180 | 180 | |
181 | 181 | // check widget settings: |
182 | 182 | // [search_free] => 1 |
183 | - // [search_date] => 1 |
|
184 | - $search_generic = array(); |
|
183 | + // [search_date] => 1 |
|
184 | + $search_generic = array(); |
|
185 | 185 | if( !empty( $widget['search_free'] ) ) { |
186 | 186 | $search_generic[] = array( 'field' => 'search_all', 'input' => 'input_text' ); |
187 | 187 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | private function add_hooks() { |
26 | 26 | |
27 | 27 | // Shortcode to render view (directory) |
28 | - add_shortcode( 'gravityview', array( $this, 'shortcode' ) ); |
|
28 | + add_shortcode('gravityview', array($this, 'shortcode')); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -39,23 +39,23 @@ discard block |
||
39 | 39 | * @param string|null $content Content passed inside the shortcode |
40 | 40 | * @return null|string If admin, null. Otherwise, output of $this->render_view() |
41 | 41 | */ |
42 | - function shortcode( $passed_atts, $content = null ) { |
|
42 | + function shortcode($passed_atts, $content = null) { |
|
43 | 43 | |
44 | 44 | // Don't process when saving post. |
45 | - if ( is_admin() ) { |
|
45 | + if (is_admin()) { |
|
46 | 46 | return null; |
47 | 47 | } |
48 | 48 | |
49 | - do_action( 'gravityview_log_debug', __FUNCTION__ . ' $passed_atts: ', $passed_atts ); |
|
49 | + do_action('gravityview_log_debug', __FUNCTION__.' $passed_atts: ', $passed_atts); |
|
50 | 50 | |
51 | 51 | // Get details about the current View |
52 | - if( !empty( $passed_atts['detail'] ) ) { |
|
53 | - return $this->get_view_detail( $passed_atts['detail'] ); |
|
52 | + if (!empty($passed_atts['detail'])) { |
|
53 | + return $this->get_view_detail($passed_atts['detail']); |
|
54 | 54 | } |
55 | 55 | |
56 | - $atts = $this->parse_and_sanitize_atts( $passed_atts ); |
|
56 | + $atts = $this->parse_and_sanitize_atts($passed_atts); |
|
57 | 57 | |
58 | - return GravityView_frontend::getInstance()->render_view( $atts ); |
|
58 | + return GravityView_frontend::getInstance()->render_view($atts); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -76,26 +76,26 @@ discard block |
||
76 | 76 | * |
77 | 77 | * @return array Valid and sanitized attribute pairs |
78 | 78 | */ |
79 | - private function parse_and_sanitize_atts( $passed_atts ) { |
|
79 | + private function parse_and_sanitize_atts($passed_atts) { |
|
80 | 80 | |
81 | - $defaults = GravityView_View_Data::get_default_args( true ); |
|
81 | + $defaults = GravityView_View_Data::get_default_args(true); |
|
82 | 82 | |
83 | - $supported_atts = array_fill_keys( array_keys( $defaults ), '' ); |
|
83 | + $supported_atts = array_fill_keys(array_keys($defaults), ''); |
|
84 | 84 | |
85 | 85 | // Whittle down the attributes to only valid pairs |
86 | - $filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' ); |
|
86 | + $filtered_atts = shortcode_atts($supported_atts, $passed_atts, 'gravityview'); |
|
87 | 87 | |
88 | 88 | // Only keep the passed attributes after making sure that they're valid pairs |
89 | - $filtered_atts = function_exists( 'array_intersect_key' ) ? array_intersect_key( $passed_atts, $filtered_atts ) : $filtered_atts; |
|
89 | + $filtered_atts = function_exists('array_intersect_key') ? array_intersect_key($passed_atts, $filtered_atts) : $filtered_atts; |
|
90 | 90 | |
91 | 91 | $atts = array(); |
92 | 92 | |
93 | - foreach( $filtered_atts as $key => $passed_value ) { |
|
93 | + foreach ($filtered_atts as $key => $passed_value) { |
|
94 | 94 | |
95 | 95 | // Allow using {get} merge tags in shortcode attributes |
96 | - $passed_value = GravityView_Merge_Tags::replace_get_variables( $passed_value ); |
|
96 | + $passed_value = GravityView_Merge_Tags::replace_get_variables($passed_value); |
|
97 | 97 | |
98 | - switch( $defaults[ $key ]['type'] ) { |
|
98 | + switch ($defaults[$key]['type']) { |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Make sure number fields are numeric. |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | * @see http://php.net/manual/en/function.is-numeric.php#107326 |
104 | 104 | */ |
105 | 105 | case 'number': |
106 | - if( is_numeric( $passed_value ) ) { |
|
107 | - $atts[ $key ] = ( $passed_value + 0 ); |
|
106 | + if (is_numeric($passed_value)) { |
|
107 | + $atts[$key] = ($passed_value + 0); |
|
108 | 108 | } |
109 | 109 | break; |
110 | 110 | |
111 | 111 | // Checkboxes should be 1 or 0 |
112 | 112 | case 'checkbox': |
113 | - $atts[ $key ] = gv_empty( $passed_value ) ? 0 : 1; |
|
113 | + $atts[$key] = gv_empty($passed_value) ? 0 : 1; |
|
114 | 114 | break; |
115 | 115 | |
116 | 116 | /** |
@@ -118,15 +118,15 @@ discard block |
||
118 | 118 | */ |
119 | 119 | case 'select': |
120 | 120 | case 'radio': |
121 | - $options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options']; |
|
122 | - if( in_array( $passed_value, array_keys( $options ) ) ) { |
|
123 | - $atts[ $key ] = $passed_value; |
|
121 | + $options = isset($defaults[$key]['choices']) ? $defaults[$key]['choices'] : $defaults[$key]['options']; |
|
122 | + if (in_array($passed_value, array_keys($options))) { |
|
123 | + $atts[$key] = $passed_value; |
|
124 | 124 | } |
125 | 125 | break; |
126 | 126 | |
127 | 127 | case 'text': |
128 | 128 | default: |
129 | - $atts[ $key ] = $passed_value; |
|
129 | + $atts[$key] = $passed_value; |
|
130 | 130 | break; |
131 | 131 | } |
132 | 132 | } |
@@ -143,26 +143,26 @@ discard block |
||
143 | 143 | * |
144 | 144 | * @return string Detail information |
145 | 145 | */ |
146 | - private function get_view_detail( $detail = '' ) { |
|
146 | + private function get_view_detail($detail = '') { |
|
147 | 147 | |
148 | 148 | $gravityview_view = GravityView_View::getInstance(); |
149 | 149 | $return = ''; |
150 | 150 | |
151 | - switch( $detail ) { |
|
151 | + switch ($detail) { |
|
152 | 152 | case 'total_entries': |
153 | - $return = number_format_i18n( $gravityview_view->getTotalEntries() ); |
|
153 | + $return = number_format_i18n($gravityview_view->getTotalEntries()); |
|
154 | 154 | break; |
155 | 155 | case 'first_entry': |
156 | 156 | $paging = $gravityview_view->getPaginationCounts(); |
157 | - $return = empty( $paging ) ? '' : number_format_i18n( $paging['first'] ); |
|
157 | + $return = empty($paging) ? '' : number_format_i18n($paging['first']); |
|
158 | 158 | break; |
159 | 159 | case 'last_entry': |
160 | 160 | $paging = $gravityview_view->getPaginationCounts(); |
161 | - $return = empty( $paging ) ? '' : number_format_i18n( $paging['last'] ); |
|
161 | + $return = empty($paging) ? '' : number_format_i18n($paging['last']); |
|
162 | 162 | break; |
163 | 163 | case 'page_size': |
164 | 164 | $paging = $gravityview_view->getPaging(); |
165 | - $return = number_format_i18n( $paging['page_size'] ); |
|
165 | + $return = number_format_i18n($paging['page_size']); |
|
166 | 166 | break; |
167 | 167 | } |
168 | 168 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @since 1.13 |
172 | 172 | * @param string $return Existing output |
173 | 173 | */ |
174 | - $return = apply_filters( 'gravityview/shortcode/detail/' . $detail, $return ); |
|
174 | + $return = apply_filters('gravityview/shortcode/detail/'.$detail, $return); |
|
175 | 175 | |
176 | 176 | return $return; |
177 | 177 | } |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | |
18 | 18 | // Load custom post types. It's a static method. |
19 | 19 | // Load even when invalid to allow for export |
20 | - add_action( 'init', array( 'GravityView_Post_Types', 'init_post_types' ) ); |
|
20 | + add_action('init', array('GravityView_Post_Types', 'init_post_types')); |
|
21 | 21 | |
22 | - if( GravityView_Compatibility::is_valid() ) { |
|
23 | - add_action( 'init', array( 'GravityView_Post_Types', 'init_rewrite' ) ); |
|
22 | + if (GravityView_Compatibility::is_valid()) { |
|
23 | + add_action('init', array('GravityView_Post_Types', 'init_rewrite')); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | |
@@ -39,11 +39,11 @@ discard block |
||
39 | 39 | * @since 1.13 |
40 | 40 | * @param boolean $is_hierarchical Default: false |
41 | 41 | */ |
42 | - $is_hierarchical = (bool)apply_filters( 'gravityview_is_hierarchical', false ); |
|
42 | + $is_hierarchical = (bool)apply_filters('gravityview_is_hierarchical', false); |
|
43 | 43 | |
44 | - $supports = array( 'title', 'revisions' ); |
|
44 | + $supports = array('title', 'revisions'); |
|
45 | 45 | |
46 | - if( $is_hierarchical ) { |
|
46 | + if ($is_hierarchical) { |
|
47 | 47 | $supports[] = 'page-attributes'; |
48 | 48 | } |
49 | 49 | |
@@ -54,30 +54,30 @@ discard block |
||
54 | 54 | * @param array $supports Array of features associated with a functional area of the edit screen. Default: 'title', 'revisions'. If $is_hierarchical, also 'page-attributes' |
55 | 55 | * @param[in] boolean $is_hierarchical Do Views support parent/child relationships? See `gravityview_is_hierarchical` filter. |
56 | 56 | */ |
57 | - $supports = apply_filters( 'gravityview_post_type_support', $supports, $is_hierarchical ); |
|
57 | + $supports = apply_filters('gravityview_post_type_support', $supports, $is_hierarchical); |
|
58 | 58 | |
59 | 59 | //Register Custom Post Type - gravityview |
60 | 60 | $labels = array( |
61 | - 'name' => _x( 'Views', 'Post Type General Name', 'gravityview' ), |
|
62 | - 'singular_name' => _x( 'View', 'Post Type Singular Name', 'gravityview' ), |
|
63 | - 'menu_name' => _x( 'Views', 'Menu name', 'gravityview' ), |
|
64 | - 'parent_item_colon' => __( 'Parent View:', 'gravityview' ), |
|
65 | - 'all_items' => __( 'All Views', 'gravityview' ), |
|
66 | - 'view_item' => _x( 'View', 'View Item', 'gravityview' ), |
|
67 | - 'add_new_item' => __( 'Add New View', 'gravityview' ), |
|
68 | - 'add_new' => __( 'New View', 'gravityview' ), |
|
69 | - 'edit_item' => __( 'Edit View', 'gravityview' ), |
|
70 | - 'update_item' => __( 'Update View', 'gravityview' ), |
|
71 | - 'search_items' => __( 'Search Views', 'gravityview' ), |
|
61 | + 'name' => _x('Views', 'Post Type General Name', 'gravityview'), |
|
62 | + 'singular_name' => _x('View', 'Post Type Singular Name', 'gravityview'), |
|
63 | + 'menu_name' => _x('Views', 'Menu name', 'gravityview'), |
|
64 | + 'parent_item_colon' => __('Parent View:', 'gravityview'), |
|
65 | + 'all_items' => __('All Views', 'gravityview'), |
|
66 | + 'view_item' => _x('View', 'View Item', 'gravityview'), |
|
67 | + 'add_new_item' => __('Add New View', 'gravityview'), |
|
68 | + 'add_new' => __('New View', 'gravityview'), |
|
69 | + 'edit_item' => __('Edit View', 'gravityview'), |
|
70 | + 'update_item' => __('Update View', 'gravityview'), |
|
71 | + 'search_items' => __('Search Views', 'gravityview'), |
|
72 | 72 | 'not_found' => self::no_views_text(), |
73 | - 'not_found_in_trash' => __( 'No Views found in Trash', 'gravityview' ), |
|
74 | - 'filter_items_list' => __( 'Filter Views list', 'gravityview' ), |
|
75 | - 'items_list_navigation' => __( 'Views list navigation', 'gravityview' ), |
|
76 | - 'items_list' => __( 'Views list', 'gravityview' ), |
|
73 | + 'not_found_in_trash' => __('No Views found in Trash', 'gravityview'), |
|
74 | + 'filter_items_list' => __('Filter Views list', 'gravityview'), |
|
75 | + 'items_list_navigation' => __('Views list navigation', 'gravityview'), |
|
76 | + 'items_list' => __('Views list', 'gravityview'), |
|
77 | 77 | ); |
78 | 78 | $args = array( |
79 | - 'label' => __( 'view', 'gravityview' ), |
|
80 | - 'description' => __( 'Create views based on a Gravity Forms form', 'gravityview' ), |
|
79 | + 'label' => __('view', 'gravityview'), |
|
80 | + 'description' => __('Create views based on a Gravity Forms form', 'gravityview'), |
|
81 | 81 | 'labels' => $labels, |
82 | 82 | 'supports' => $supports, |
83 | 83 | 'hierarchical' => $is_hierarchical, |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @param[in,out] boolean `true`: allow Views to be accessible directly. `false`: Only allow Views to be embedded via shortcode. Default: `true` |
89 | 89 | * @param int $view_id The ID of the View currently being requested. `0` for general setting |
90 | 90 | */ |
91 | - 'public' => apply_filters( 'gravityview_direct_access', GravityView_Compatibility::is_valid(), 0 ), |
|
91 | + 'public' => apply_filters('gravityview_direct_access', GravityView_Compatibility::is_valid(), 0), |
|
92 | 92 | 'show_ui' => GravityView_Compatibility::is_valid(), |
93 | 93 | 'show_in_menu' => GravityView_Compatibility::is_valid(), |
94 | 94 | 'show_in_nav_menus' => true, |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @since 1.7.3 |
102 | 102 | * @param boolean False: don't have frontend archive; True: yes, have archive. Default: false |
103 | 103 | */ |
104 | - 'has_archive' => apply_filters( 'gravityview_has_archive', false ), |
|
104 | + 'has_archive' => apply_filters('gravityview_has_archive', false), |
|
105 | 105 | 'exclude_from_search' => true, |
106 | 106 | 'rewrite' => array( |
107 | 107 | /** |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | * @see http://docs.gravityview.co/article/62-changing-the-view-slug |
110 | 110 | * @param string $slug The slug shown in the URL |
111 | 111 | */ |
112 | - 'slug' => apply_filters( 'gravityview_slug', 'view' ) |
|
112 | + 'slug' => apply_filters('gravityview_slug', 'view') |
|
113 | 113 | ), |
114 | 114 | 'capability_type' => 'gravityview', |
115 | 115 | 'map_meta_cap' => true, |
116 | 116 | ); |
117 | 117 | |
118 | - register_post_type( 'gravityview', $args ); |
|
118 | + register_post_type('gravityview', $args); |
|
119 | 119 | |
120 | 120 | } |
121 | 121 | |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | $endpoint = self::get_entry_var_name(); |
132 | 132 | |
133 | 133 | //add_permastruct( "{$endpoint}", $endpoint.'/%'.$endpoint.'%/?', true); |
134 | - add_rewrite_endpoint( "{$endpoint}", EP_ALL ); |
|
134 | + add_rewrite_endpoint("{$endpoint}", EP_ALL); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | * @filter `gravityview_directory_endpoint` Change the slug used for single entries |
148 | 148 | * @param[in,out] string $endpoint Slug to use when accessing single entry. Default: `entry` |
149 | 149 | */ |
150 | - $endpoint = apply_filters( 'gravityview_directory_endpoint', 'entry' ); |
|
150 | + $endpoint = apply_filters('gravityview_directory_endpoint', 'entry'); |
|
151 | 151 | |
152 | - return sanitize_title( $endpoint ); |
|
152 | + return sanitize_title($endpoint); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -159,20 +159,20 @@ discard block |
||
159 | 159 | */ |
160 | 160 | static function no_views_text() { |
161 | 161 | |
162 | - if( !class_exists( 'GravityView_Admin' ) ) { |
|
163 | - require_once( GRAVITYVIEW_DIR .'includes/class-admin.php' ); |
|
162 | + if (!class_exists('GravityView_Admin')) { |
|
163 | + require_once(GRAVITYVIEW_DIR.'includes/class-admin.php'); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | // Floaty the astronaut |
167 | 167 | $image = GravityView_Admin::get_floaty(); |
168 | 168 | |
169 | - if( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
|
170 | - $output = sprintf( esc_attr__( "%sYou don't have any active views. Let’s go %screate one%s!%s\n\nIf you feel like you're lost in space and need help getting started, check out the %sGetting Started%s page.", 'gravityview' ), '<h3>', '<a href="' . admin_url( 'post-new.php?post_type=gravityview' ) . '">', '</a>', '</h3>', '<a href="' . admin_url( 'edit.php?post_type=gravityview&page=gv-getting-started' ) . '">', '</a>' ); |
|
169 | + if (GVCommon::has_cap('edit_gravityviews')) { |
|
170 | + $output = sprintf(esc_attr__("%sYou don't have any active views. Let’s go %screate one%s!%s\n\nIf you feel like you're lost in space and need help getting started, check out the %sGetting Started%s page.", 'gravityview'), '<h3>', '<a href="'.admin_url('post-new.php?post_type=gravityview').'">', '</a>', '</h3>', '<a href="'.admin_url('edit.php?post_type=gravityview&page=gv-getting-started').'">', '</a>'); |
|
171 | 171 | } else { |
172 | - $output = esc_attr__( 'There are no active Views', 'gravityview' ); |
|
172 | + $output = esc_attr__('There are no active Views', 'gravityview'); |
|
173 | 173 | } |
174 | 174 | |
175 | - return $image . wpautop( $output ); |
|
175 | + return $image.wpautop($output); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 |