@@ -341,7 +341,7 @@ |
||
| 341 | 341 | */ |
| 342 | 342 | $content = apply_filters( 'gravityview/fields/fileupload/link_content', $content, $field_compat, $context ); |
| 343 | 343 | |
| 344 | - $content = gravityview_get_link( $link, $content, $link_atts ); |
|
| 344 | + $content = gravityview_get_link( $link, $content, $link_atts ); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | $output_arr[] = array( |
@@ -5,251 +5,251 @@ |
||
| 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') ); |
|
| 34 | - |
|
| 35 | - } |
|
| 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 = '' ) { |
|
| 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 | - } |
|
| 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 ); |
|
| 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 ); |
|
| 73 | - |
|
| 74 | - gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note', $note ) ); |
|
| 75 | - |
|
| 76 | - /** |
|
| 77 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 78 | - * @since 1.21.5 |
|
| 79 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 80 | - */ |
|
| 81 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | - return; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 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 | + |
|
| 35 | + } |
|
| 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 = '' ) { |
|
| 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 | + } |
|
| 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 ); |
|
| 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 ); |
|
| 73 | + |
|
| 74 | + gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note', $note ) ); |
|
| 75 | + |
|
| 76 | + /** |
|
| 77 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 78 | + * @since 1.21.5 |
|
| 79 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 80 | + */ |
|
| 81 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | + return; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 86 | 86 | |
| 87 | - } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | - /** |
|
| 90 | - * Disable previous functionality; use this one as the canonical. |
|
| 91 | - * @return void |
|
| 92 | - */ |
|
| 93 | - function prevent_conflicts() { |
|
| 89 | + /** |
|
| 90 | + * Disable previous functionality; use this one as the canonical. |
|
| 91 | + * @return void |
|
| 92 | + */ |
|
| 93 | + function prevent_conflicts() { |
|
| 94 | 94 | |
| 95 | - // Plugin that was provided here: |
|
| 96 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
| 97 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 99 | - |
|
| 100 | - // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
| 101 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 95 | + // Plugin that was provided here: |
|
| 96 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
| 97 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 99 | + |
|
| 100 | + // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
| 101 | + if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 102 | 102 | |
| 103 | - $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
| 103 | + $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
| 104 | 104 | |
| 105 | - // Now, no validation is required in the methods; let's hook in. |
|
| 106 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 107 | - |
|
| 108 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 109 | - |
|
| 110 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * @since 3.6.3 |
|
| 117 | - * @return void |
|
| 118 | - */ |
|
| 119 | - function load() { |
|
| 105 | + // Now, no validation is required in the methods; let's hook in. |
|
| 106 | + remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 107 | + |
|
| 108 | + remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 109 | + |
|
| 110 | + remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * @since 3.6.3 |
|
| 117 | + * @return void |
|
| 118 | + */ |
|
| 119 | + function load() { |
|
| 120 | 120 | |
| 121 | - // Does GF exist? |
|
| 122 | - if( !class_exists('GFCommon') ) { |
|
| 123 | - return; |
|
| 124 | - } |
|
| 121 | + // Does GF exist? |
|
| 122 | + if( !class_exists('GFCommon') ) { |
|
| 123 | + return; |
|
| 124 | + } |
|
| 125 | 125 | |
| 126 | - // Can the user edit entries? |
|
| 127 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 128 | - return; |
|
| 129 | - } |
|
| 126 | + // Can the user edit entries? |
|
| 127 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 128 | + return; |
|
| 129 | + } |
|
| 130 | 130 | |
| 131 | - // If screen mode isn't set, then we're in the wrong place. |
|
| 132 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 133 | - return; |
|
| 134 | - } |
|
| 131 | + // If screen mode isn't set, then we're in the wrong place. |
|
| 132 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 133 | + return; |
|
| 134 | + } |
|
| 135 | 135 | |
| 136 | - // Now, no validation is required in the methods; let's hook in. |
|
| 137 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 136 | + // Now, no validation is required in the methods; let's hook in. |
|
| 137 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 138 | 138 | |
| 139 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 139 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 140 | 140 | |
| 141 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 141 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 142 | 142 | |
| 143 | - } |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - /** |
|
| 146 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 147 | - * @return void |
|
| 148 | - */ |
|
| 149 | - function set_screen_mode() { |
|
| 145 | + /** |
|
| 146 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 147 | + * @return void |
|
| 148 | + */ |
|
| 149 | + function set_screen_mode() { |
|
| 150 | 150 | |
| 151 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 152 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 153 | - $_POST["screen_mode"] = 'edit'; |
|
| 154 | - } |
|
| 151 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 152 | + if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 153 | + $_POST["screen_mode"] = 'edit'; |
|
| 154 | + } |
|
| 155 | 155 | |
| 156 | - } |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | - /** |
|
| 159 | - * When the entry creator is changed, add a note to the entry |
|
| 160 | - * @param array $form GF entry array |
|
| 161 | - * @param int $entry_id Entry ID |
|
| 162 | - * @return void |
|
| 163 | - */ |
|
| 164 | - function update_entry_creator($form, $entry_id) { |
|
| 165 | - global $current_user; |
|
| 158 | + /** |
|
| 159 | + * When the entry creator is changed, add a note to the entry |
|
| 160 | + * @param array $form GF entry array |
|
| 161 | + * @param int $entry_id Entry ID |
|
| 162 | + * @return void |
|
| 163 | + */ |
|
| 164 | + function update_entry_creator($form, $entry_id) { |
|
| 165 | + global $current_user; |
|
| 166 | 166 | |
| 167 | - // Update the entry |
|
| 168 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
| 167 | + // Update the entry |
|
| 168 | + $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
| 169 | 169 | |
| 170 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 170 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 171 | 171 | |
| 172 | - // If the creator has changed, let's add a note about who it used to be. |
|
| 173 | - $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
| 172 | + // If the creator has changed, let's add a note about who it used to be. |
|
| 173 | + $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
| 174 | 174 | |
| 175 | - // If there's no owner and there didn't used to be, keep going |
|
| 176 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 177 | - return; |
|
| 178 | - } |
|
| 175 | + // If there's no owner and there didn't used to be, keep going |
|
| 176 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 177 | + return; |
|
| 178 | + } |
|
| 179 | 179 | |
| 180 | - // If the values have changed |
|
| 181 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 180 | + // If the values have changed |
|
| 181 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 182 | 182 | |
| 183 | - $user_data = get_userdata($current_user->ID); |
|
| 183 | + $user_data = get_userdata($current_user->ID); |
|
| 184 | 184 | |
| 185 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 185 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 186 | 186 | |
| 187 | - $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'); |
|
| 187 | + $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'); |
|
| 188 | 188 | |
| 189 | - if( !empty( $originally_created_by ) ) { |
|
| 190 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 191 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 192 | - } |
|
| 189 | + if( !empty( $originally_created_by ) ) { |
|
| 190 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 191 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 192 | + } |
|
| 193 | 193 | |
| 194 | - if( !empty( $created_by ) ) { |
|
| 195 | - $created_by_user_data = get_userdata($created_by); |
|
| 196 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 197 | - } |
|
| 194 | + if( !empty( $created_by ) ) { |
|
| 195 | + $created_by_user_data = get_userdata($created_by); |
|
| 196 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 197 | + } |
|
| 198 | 198 | |
| 199 | - 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' ); |
|
| 200 | - } |
|
| 199 | + 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' ); |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | - } |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - /** |
|
| 205 | - * Output the select to change the entry creator |
|
| 206 | - * @param int $form_id GF Form ID |
|
| 207 | - * @param array $entry GF entry array |
|
| 208 | - * @return void |
|
| 209 | - */ |
|
| 210 | - function add_select($form_id, $entry ) { |
|
| 204 | + /** |
|
| 205 | + * Output the select to change the entry creator |
|
| 206 | + * @param int $form_id GF Form ID |
|
| 207 | + * @param array $entry GF entry array |
|
| 208 | + * @return void |
|
| 209 | + */ |
|
| 210 | + function add_select($form_id, $entry ) { |
|
| 211 | 211 | |
| 212 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 213 | - return; |
|
| 214 | - } |
|
| 212 | + if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 213 | + return; |
|
| 214 | + } |
|
| 215 | 215 | |
| 216 | - $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
| 216 | + $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
| 217 | 217 | |
| 218 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 218 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 219 | 219 | |
| 220 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 220 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 221 | 221 | |
| 222 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 223 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 222 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 223 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 224 | 224 | |
| 225 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 226 | - $users = array_merge( $users, $created_by_user ); |
|
| 227 | - } |
|
| 228 | - } |
|
| 225 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 226 | + $users = array_merge( $users, $created_by_user ); |
|
| 227 | + } |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - $output = '<label for="change_created_by">'; |
|
| 231 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 232 | - $output .= '</label>'; |
|
| 230 | + $output = '<label for="change_created_by">'; |
|
| 231 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 232 | + $output .= '</label>'; |
|
| 233 | 233 | |
| 234 | - // If there are users who are not being shown, show a warning. |
|
| 235 | - // TODO: Use AJAX instead of <select> |
|
| 236 | - $count_users = count_users(); |
|
| 237 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 238 | - $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
| 239 | - } |
|
| 234 | + // If there are users who are not being shown, show a warning. |
|
| 235 | + // TODO: Use AJAX instead of <select> |
|
| 236 | + $count_users = count_users(); |
|
| 237 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 238 | + $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 242 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 243 | - foreach($users as $user) { |
|
| 244 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 245 | - } |
|
| 246 | - $output .= '</select>'; |
|
| 247 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 241 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 242 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 243 | + foreach($users as $user) { |
|
| 244 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 245 | + } |
|
| 246 | + $output .= '</select>'; |
|
| 247 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 248 | 248 | |
| 249 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 249 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 250 | 250 | |
| 251 | - echo $output; |
|
| 252 | - } |
|
| 251 | + echo $output; |
|
| 252 | + } |
|
| 253 | 253 | |
| 254 | 254 | } |
| 255 | 255 | |
@@ -328,34 +328,34 @@ discard block |
||
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | /** |
| 331 | - * Get the fields for a specific context |
|
| 332 | - * |
|
| 333 | - * @since 1.19.2 |
|
| 334 | - * |
|
| 331 | + * Get the fields for a specific context |
|
| 332 | + * |
|
| 333 | + * @since 1.19.2 |
|
| 334 | + * |
|
| 335 | 335 | * @param string $context [Optional] "directory", "single", or "edit" |
| 336 | 336 | * |
| 337 | 337 | * @return array Array of GravityView field layout configurations |
| 338 | 338 | */ |
| 339 | 339 | public function getContextFields( $context = '' ) { |
| 340 | 340 | |
| 341 | - if( '' === $context ) { |
|
| 342 | - $context = $this->getContext(); |
|
| 343 | - } |
|
| 341 | + if( '' === $context ) { |
|
| 342 | + $context = $this->getContext(); |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | 345 | $fields = $this->getFields(); |
| 346 | 346 | |
| 347 | - foreach ( (array) $fields as $key => $context_fields ) { |
|
| 347 | + foreach ( (array) $fields as $key => $context_fields ) { |
|
| 348 | 348 | |
| 349 | - // Formatted as `{context}_{template id}-{zone name}`, so we want just the $context to match against |
|
| 350 | - $matches = explode( '_', $key ); |
|
| 349 | + // Formatted as `{context}_{template id}-{zone name}`, so we want just the $context to match against |
|
| 350 | + $matches = explode( '_', $key ); |
|
| 351 | 351 | |
| 352 | - if( isset( $matches[0] ) && $matches[0] === $context ) { |
|
| 353 | - return $context_fields; |
|
| 354 | - } |
|
| 355 | - } |
|
| 352 | + if( isset( $matches[0] ) && $matches[0] === $context ) { |
|
| 353 | + return $context_fields; |
|
| 354 | + } |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | 357 | return array(); |
| 358 | - } |
|
| 358 | + } |
|
| 359 | 359 | |
| 360 | 360 | /** |
| 361 | 361 | * @param array $fields |
@@ -448,10 +448,10 @@ discard block |
||
| 448 | 448 | */ |
| 449 | 449 | public function getPaging() { |
| 450 | 450 | |
| 451 | - $default_params = array( |
|
| 452 | - 'offset' => 0, |
|
| 453 | - 'page_size' => 20, |
|
| 454 | - ); |
|
| 451 | + $default_params = array( |
|
| 452 | + 'offset' => 0, |
|
| 453 | + 'page_size' => 20, |
|
| 454 | + ); |
|
| 455 | 455 | |
| 456 | 456 | return wp_parse_args( $this->paging, $default_params ); |
| 457 | 457 | } |
@@ -508,10 +508,10 @@ discard block |
||
| 508 | 508 | public function getSorting() { |
| 509 | 509 | |
| 510 | 510 | $defaults_params = array( |
| 511 | - 'sort_field' => 'date_created', |
|
| 512 | - 'sort_direction' => 'ASC', |
|
| 513 | - 'is_numeric' => false, |
|
| 514 | - ); |
|
| 511 | + 'sort_field' => 'date_created', |
|
| 512 | + 'sort_direction' => 'ASC', |
|
| 513 | + 'is_numeric' => false, |
|
| 514 | + ); |
|
| 515 | 515 | |
| 516 | 516 | return wp_parse_args( $this->sorting, $defaults_params ); |
| 517 | 517 | } |
@@ -837,7 +837,7 @@ discard block |
||
| 837 | 837 | */ |
| 838 | 838 | public function render_widget_hooks( $view_id_or_context ) { |
| 839 | 839 | |
| 840 | - /** |
|
| 840 | + /** |
|
| 841 | 841 | * @deprecated Numeric argument is deprecated. Pass a \GV\Template_Context instead. |
| 842 | 842 | */ |
| 843 | 843 | if ( is_numeric( $view_id_or_context ) ) { |
@@ -175,10 +175,10 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | if( 'gv_note_add' === $_POST['action'] ) { |
| 177 | 177 | |
| 178 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
| 179 | - do_action( 'gravityview_log_error', __METHOD__ . ': The user isnt allowed to add entry notes.' ); |
|
| 180 | - return; |
|
| 181 | - } |
|
| 178 | + if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
| 179 | + do_action( 'gravityview_log_error', __METHOD__ . ': The user isnt allowed to add entry notes.' ); |
|
| 180 | + return; |
|
| 181 | + } |
|
| 182 | 182 | |
| 183 | 183 | $post = wp_unslash( $_POST ); |
| 184 | 184 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | * |
| 279 | 279 | * Verify permissions. Check expected $_POST. Parse args, then send to process_delete_notes |
| 280 | 280 | * |
| 281 | - * @since 1.17 |
|
| 281 | + * @since 1.17 |
|
| 282 | 282 | * |
| 283 | 283 | * @see process_delete_notes |
| 284 | 284 | * |
@@ -431,7 +431,7 @@ discard block |
||
| 431 | 431 | 'subject-label' => __( 'Subject', 'gravityview' ), |
| 432 | 432 | 'subject' => __( 'Email subject', 'gravityview' ), |
| 433 | 433 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
| 434 | - 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
| 434 | + 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
| 435 | 435 | 'also-email' => __( 'Also email this note to', 'gravityview' ), |
| 436 | 436 | 'error-add-note' => __( 'There was an error adding the note.', 'gravityview' ), |
| 437 | 437 | 'error-invalid' => __( 'The request was invalid. Refresh the page and try again.', 'gravityview' ), |
@@ -501,11 +501,11 @@ discard block |
||
| 501 | 501 | |
| 502 | 502 | if ( $context instanceof \GV\Template_Context ) { |
| 503 | 503 | |
| 504 | - ob_start(); |
|
| 505 | - $context->template->get_template_part( 'note', 'detail', true ); |
|
| 506 | - $note_detail_html = ob_get_clean(); |
|
| 504 | + ob_start(); |
|
| 505 | + $context->template->get_template_part( 'note', 'detail', true ); |
|
| 506 | + $note_detail_html = ob_get_clean(); |
|
| 507 | 507 | |
| 508 | - ob_start(); |
|
| 508 | + ob_start(); |
|
| 509 | 509 | $context->template->get_template_part( 'note', $note_row_template, true ); |
| 510 | 510 | $note_row = ob_get_clean(); |
| 511 | 511 | } else { |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | 'gv-note-to-custom' => '', |
| 762 | 762 | 'gv-note-subject' => '', |
| 763 | 763 | 'gv-note-content' => '', |
| 764 | - 'current-url' => '', |
|
| 764 | + 'current-url' => '', |
|
| 765 | 765 | ); |
| 766 | 766 | |
| 767 | 767 | $current_user = wp_get_current_user(); |
@@ -813,9 +813,9 @@ discard block |
||
| 813 | 813 | $message .= $this->get_email_footer( $email_footer, $is_html, $email_data ); |
| 814 | 814 | |
| 815 | 815 | /** |
| 816 | - * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
| 816 | + * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
| 817 | 817 | * @since 1.18 |
| 818 | - * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
| 818 | + * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
| 819 | 819 | */ |
| 820 | 820 | $wpautop_email = apply_filters( 'gravityview/field/notes/wpautop_email', true ); |
| 821 | 821 | |
@@ -835,12 +835,12 @@ discard block |
||
| 835 | 835 | } |
| 836 | 836 | |
| 837 | 837 | /** |
| 838 | - * Get the footer for Entry Note emails |
|
| 839 | - * |
|
| 840 | - * `{url}` is replaced by the URL of the page where the note form was embedded |
|
| 841 | - * |
|
| 842 | - * @since 1.18 |
|
| 843 | - * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
| 838 | + * Get the footer for Entry Note emails |
|
| 839 | + * |
|
| 840 | + * `{url}` is replaced by the URL of the page where the note form was embedded |
|
| 841 | + * |
|
| 842 | + * @since 1.18 |
|
| 843 | + * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
| 844 | 844 | * |
| 845 | 845 | * @param string $email_footer The message footer value |
| 846 | 846 | * @param bool $is_html True: Email is being sent as HTML; False: sent as text |
@@ -849,10 +849,10 @@ discard block |
||
| 849 | 849 | */ |
| 850 | 850 | private function get_email_footer( $email_footer = '', $is_html = true, $email_data = array() ) { |
| 851 | 851 | |
| 852 | - $output = ''; |
|
| 852 | + $output = ''; |
|
| 853 | 853 | |
| 854 | 854 | if( ! empty( $email_footer ) ) { |
| 855 | - $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
| 855 | + $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
| 856 | 856 | $url = html_entity_decode( $url ); |
| 857 | 857 | $url = site_url( $url ); |
| 858 | 858 | |
@@ -305,12 +305,12 @@ discard block |
||
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | /** |
| 308 | - * @hack |
|
| 309 | - * In case of email/email confirmation, the input for email has the same id as the parent field |
|
| 310 | - */ |
|
| 308 | + * @hack |
|
| 309 | + * In case of email/email confirmation, the input for email has the same id as the parent field |
|
| 310 | + */ |
|
| 311 | 311 | if( 'email' === $field['type'] && false === strpos( $input['id'], '.' ) ) { |
| 312 | - continue; |
|
| 313 | - } |
|
| 312 | + continue; |
|
| 313 | + } |
|
| 314 | 314 | $fields["{$input['id']}"] = array( |
| 315 | 315 | 'label' => \GV\Utils::get( $input, 'label' ), |
| 316 | 316 | 'customLabel' => \GV\Utils::get( $input, 'customLabel' ), |
@@ -1349,7 +1349,7 @@ discard block |
||
| 1349 | 1349 | ), |
| 1350 | 1350 | ); |
| 1351 | 1351 | |
| 1352 | - $fields = $date_created + $fields; |
|
| 1352 | + $fields = $date_created + $fields; |
|
| 1353 | 1353 | |
| 1354 | 1354 | $blacklist_field_types = apply_filters( 'gravityview_blacklist_field_types', $blacklist, NULL ); |
| 1355 | 1355 | |
@@ -1361,13 +1361,13 @@ discard block |
||
| 1361 | 1361 | } |
| 1362 | 1362 | } |
| 1363 | 1363 | |
| 1364 | - /** |
|
| 1365 | - * @filter `gravityview/common/sortable_fields` Filter the sortable fields |
|
| 1366 | - * @since 1.12 |
|
| 1367 | - * @param array $fields Sub-set of GF form fields that are sortable |
|
| 1368 | - * @param int $formid The Gravity Forms form ID that the fields are from |
|
| 1369 | - */ |
|
| 1370 | - $fields = apply_filters( 'gravityview/common/sortable_fields', $fields, $formid ); |
|
| 1364 | + /** |
|
| 1365 | + * @filter `gravityview/common/sortable_fields` Filter the sortable fields |
|
| 1366 | + * @since 1.12 |
|
| 1367 | + * @param array $fields Sub-set of GF form fields that are sortable |
|
| 1368 | + * @param int $formid The Gravity Forms form ID that the fields are from |
|
| 1369 | + */ |
|
| 1370 | + $fields = apply_filters( 'gravityview/common/sortable_fields', $fields, $formid ); |
|
| 1371 | 1371 | |
| 1372 | 1372 | return $fields; |
| 1373 | 1373 | } |
@@ -1659,26 +1659,26 @@ discard block |
||
| 1659 | 1659 | } |
| 1660 | 1660 | |
| 1661 | 1661 | |
| 1662 | - /** |
|
| 1663 | - * Display updated/error notice |
|
| 1664 | - * |
|
| 1665 | - * @since 1.19.2 Added $cap and $object_id parameters |
|
| 1666 | - * |
|
| 1667 | - * @param string $notice text/HTML of notice |
|
| 1668 | - * @param string $class CSS class for notice (`updated` or `error`) |
|
| 1669 | - * @param string $cap [Optional] Define a capability required to show a notice. If not set, displays to all caps. |
|
| 1670 | - * |
|
| 1671 | - * @return string |
|
| 1672 | - */ |
|
| 1673 | - public static function generate_notice( $notice, $class = '', $cap = '', $object_id = null ) { |
|
| 1674 | - |
|
| 1675 | - // If $cap is defined, only show notice if user has capability |
|
| 1676 | - if( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
| 1677 | - return ''; |
|
| 1678 | - } |
|
| 1679 | - |
|
| 1680 | - return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>'; |
|
| 1681 | - } |
|
| 1662 | + /** |
|
| 1663 | + * Display updated/error notice |
|
| 1664 | + * |
|
| 1665 | + * @since 1.19.2 Added $cap and $object_id parameters |
|
| 1666 | + * |
|
| 1667 | + * @param string $notice text/HTML of notice |
|
| 1668 | + * @param string $class CSS class for notice (`updated` or `error`) |
|
| 1669 | + * @param string $cap [Optional] Define a capability required to show a notice. If not set, displays to all caps. |
|
| 1670 | + * |
|
| 1671 | + * @return string |
|
| 1672 | + */ |
|
| 1673 | + public static function generate_notice( $notice, $class = '', $cap = '', $object_id = null ) { |
|
| 1674 | + |
|
| 1675 | + // If $cap is defined, only show notice if user has capability |
|
| 1676 | + if( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
| 1677 | + return ''; |
|
| 1678 | + } |
|
| 1679 | + |
|
| 1680 | + return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>'; |
|
| 1681 | + } |
|
| 1682 | 1682 | |
| 1683 | 1683 | /** |
| 1684 | 1684 | * Inspired on \GFCommon::encode_shortcodes, reverse the encoding by replacing the ascii characters by the shortcode brackets |
@@ -346,14 +346,14 @@ discard block |
||
| 346 | 346 | /** |
| 347 | 347 | * update_approved function. |
| 348 | 348 | * |
| 349 | - * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
| 349 | + * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
| 350 | 350 | * @see GravityView_Entry_Approval::update_approved |
| 351 | - * |
|
| 351 | + * |
|
| 352 | 352 | * @param int $entry_id (default: 0) |
| 353 | 353 | * @param int $approved (default: 0) |
| 354 | 354 | * @param int $form_id (default: 0) |
| 355 | 355 | * @param int $approvedcolumn (default: 0) |
| 356 | - * |
|
| 356 | + * |
|
| 357 | 357 | * @return boolean True: It worked; False: it failed |
| 358 | 358 | */ |
| 359 | 359 | public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
@@ -363,9 +363,9 @@ discard block |
||
| 363 | 363 | /** |
| 364 | 364 | * Calculate the approve field.input id |
| 365 | 365 | * |
| 366 | - * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
| 367 | - * @see GravityView_Entry_Approval::get_approved_column |
|
| 368 | - * |
|
| 366 | + * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
| 367 | + * @see GravityView_Entry_Approval::get_approved_column |
|
| 368 | + * |
|
| 369 | 369 | * @param mixed $form GF Form or Form ID |
| 370 | 370 | * @return false|null|string Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
| 371 | 371 | */ |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
| 487 | 487 | 'bulk_message' => $this->bulk_update_message, |
| 488 | 488 | 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
| 489 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
| 489 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
| 490 | 490 | 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
| 491 | 491 | 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
| 492 | 492 | 'column_link' => esc_url( $this->get_sort_link( $form_id ) ), |
@@ -495,11 +495,11 @@ discard block |
||
| 495 | 495 | } |
| 496 | 496 | |
| 497 | 497 | /** |
| 498 | - * Generate a link to sort by approval status (if there is an Approve/Disapprove field) |
|
| 499 | - * |
|
| 500 | - * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
| 501 | - * numeric, but it does group the approved entries together. |
|
| 502 | - * |
|
| 498 | + * Generate a link to sort by approval status (if there is an Approve/Disapprove field) |
|
| 499 | + * |
|
| 500 | + * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
| 501 | + * numeric, but it does group the approved entries together. |
|
| 502 | + * |
|
| 503 | 503 | * @param int $form_id |
| 504 | 504 | * |
| 505 | 505 | * @return string Sorting link |
@@ -509,20 +509,20 @@ discard block |
||
| 509 | 509 | $approved_column_id = self::get_approved_column( $form_id ); |
| 510 | 510 | |
| 511 | 511 | if( ! $approved_column_id ) { |
| 512 | - return ''; |
|
| 513 | - } |
|
| 512 | + return ''; |
|
| 513 | + } |
|
| 514 | 514 | |
| 515 | - $order = ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc'; |
|
| 515 | + $order = ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc'; |
|
| 516 | 516 | |
| 517 | - $args = array( |
|
| 518 | - 'orderby' => $approved_column_id, |
|
| 519 | - 'order' => $order, |
|
| 520 | - ); |
|
| 517 | + $args = array( |
|
| 518 | + 'orderby' => $approved_column_id, |
|
| 519 | + 'order' => $order, |
|
| 520 | + ); |
|
| 521 | 521 | |
| 522 | - $link = add_query_arg( $args ); |
|
| 522 | + $link = add_query_arg( $args ); |
|
| 523 | 523 | |
| 524 | 524 | return $link; |
| 525 | - } |
|
| 525 | + } |
|
| 526 | 526 | |
| 527 | 527 | /** |
| 528 | 528 | * Get an array of options to be added to the Gravity Forms "Bulk action" dropdown in a "GravityView" option group |
@@ -564,9 +564,9 @@ discard block |
||
| 564 | 564 | // Sanitize the values, just to be sure. |
| 565 | 565 | foreach ( $bulk_actions as $key => $group ) { |
| 566 | 566 | |
| 567 | - if( empty( $group ) ) { |
|
| 568 | - continue; |
|
| 569 | - } |
|
| 567 | + if( empty( $group ) ) { |
|
| 568 | + continue; |
|
| 569 | + } |
|
| 570 | 570 | |
| 571 | 571 | foreach ( $group as $i => $action ) { |
| 572 | 572 | $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
@@ -19,8 +19,8 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | - * Constructor. Add filters to modify output. |
|
| 23 | - * |
|
| 22 | + * Constructor. Add filters to modify output. |
|
| 23 | + * |
|
| 24 | 24 | * @since 2.0.4 |
| 25 | 25 | * |
| 26 | 26 | * @param View $view |
@@ -29,19 +29,19 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function __construct( View $view, Entry_Collection $entries, Request $request ) { |
| 31 | 31 | |
| 32 | - add_filter( 'gravityview/template/field/label', array( __CLASS__, 'add_columns_sort_links' ), 100, 2 ); |
|
| 32 | + add_filter( 'gravityview/template/field/label', array( __CLASS__, 'add_columns_sort_links' ), 100, 2 ); |
|
| 33 | 33 | |
| 34 | 34 | parent::__construct( $view, $entries, $request ); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | - * Add sorting links to HTML columns that support sorting |
|
| 39 | - * |
|
| 40 | - * @since 2.0.4 |
|
| 41 | - * @since 2.0.5 Made static |
|
| 42 | - * |
|
| 43 | - * @static |
|
| 44 | - * |
|
| 38 | + * Add sorting links to HTML columns that support sorting |
|
| 39 | + * |
|
| 40 | + * @since 2.0.4 |
|
| 41 | + * @since 2.0.5 Made static |
|
| 42 | + * |
|
| 43 | + * @static |
|
| 44 | + * |
|
| 45 | 45 | * @param string $column_label Label for the table column |
| 46 | 46 | * @param \GV\Template_Context $context |
| 47 | 47 | * |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | $sort_columns = $context->view->settings->get( 'sort_columns' ); |
| 53 | 53 | |
| 54 | 54 | if ( empty( $sort_columns ) ) { |
| 55 | - return $column_label; |
|
| 55 | + return $column_label; |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | if ( ! \GravityView_frontend::getInstance()->is_field_sortable( $context->field->ID, $context->view->form->form ) ) { |
@@ -193,15 +193,15 @@ discard block |
||
| 193 | 193 | */ |
| 194 | 194 | do_action( 'gravityview/template/table/cells/before', $context ); |
| 195 | 195 | |
| 196 | - /** |
|
| 197 | - * @action `gravityview_table_cells_before` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
| 198 | - * @since 1.0.7 |
|
| 196 | + /** |
|
| 197 | + * @action `gravityview_table_cells_before` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
| 198 | + * @since 1.0.7 |
|
| 199 | 199 | * @param \GravityView_View $this Current GravityView_View object |
| 200 | 200 | * @deprecated Use `gravityview/template/table/cells/before` |
| 201 | - */ |
|
| 202 | - do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
|
| 201 | + */ |
|
| 202 | + do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
|
| 203 | 203 | |
| 204 | - foreach ( $fields->all() as $field ) { |
|
| 204 | + foreach ( $fields->all() as $field ) { |
|
| 205 | 205 | $this->the_field( $field, $entry ); |
| 206 | 206 | } |
| 207 | 207 | |
@@ -212,13 +212,13 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | do_action( 'gravityview/template/table/cells/after', $context ); |
| 214 | 214 | |
| 215 | - /** |
|
| 216 | - * @action `gravityview_table_cells_after` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
| 217 | - * @since 1.0.7 |
|
| 215 | + /** |
|
| 216 | + * @action `gravityview_table_cells_after` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
| 217 | + * @since 1.0.7 |
|
| 218 | 218 | * @param \GravityView_View $this Current GravityView_View object |
| 219 | 219 | * @deprecated Use `gravityview/template/table/cells/after` |
| 220 | - */ |
|
| 221 | - do_action( 'gravityview_table_cells_after', \GravityView_View::getInstance() ); |
|
| 220 | + */ |
|
| 221 | + do_action( 'gravityview_table_cells_after', \GravityView_View::getInstance() ); |
|
| 222 | 222 | |
| 223 | 223 | ?> |
| 224 | 224 | </tr> |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | 'hide_empty' => false, |
| 256 | 256 | 'zone_id' => 'directory_table-columns', |
| 257 | 257 | 'markup' => '<td id="{{ field_id }}" class="{{ class }}">{{ value }}</td>', |
| 258 | - 'form' => $form, |
|
| 258 | + 'form' => $form, |
|
| 259 | 259 | ); |
| 260 | 260 | |
| 261 | 261 | /** Output. */ |
@@ -280,11 +280,11 @@ discard block |
||
| 280 | 280 | do_action( 'gravityview/template/table/body/before', $context ); |
| 281 | 281 | |
| 282 | 282 | /** |
| 283 | - * @action `gravityview_table_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
| 284 | - * @deprecated Use `gravityview/template/table/body/before` |
|
| 285 | - * @since 1.0.7 |
|
| 286 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 287 | - */ |
|
| 283 | + * @action `gravityview_table_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
| 284 | + * @deprecated Use `gravityview/template/table/body/before` |
|
| 285 | + * @since 1.0.7 |
|
| 286 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 287 | + */ |
|
| 288 | 288 | do_action( 'gravityview_table_body_before', \GravityView_View::getInstance() /** ugh! */ ); |
| 289 | 289 | } |
| 290 | 290 | |
@@ -306,11 +306,11 @@ discard block |
||
| 306 | 306 | do_action( 'gravityview/template/table/body/after', $context ); |
| 307 | 307 | |
| 308 | 308 | /** |
| 309 | - * @action `gravityview_table_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
| 310 | - * @deprecated Use `gravityview/template/table/body/after` |
|
| 311 | - * @since 1.0.7 |
|
| 312 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 313 | - */ |
|
| 309 | + * @action `gravityview_table_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
| 310 | + * @deprecated Use `gravityview/template/table/body/after` |
|
| 311 | + * @since 1.0.7 |
|
| 312 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 313 | + */ |
|
| 314 | 314 | do_action( 'gravityview_table_body_after', \GravityView_View::getInstance() /** ugh! */ ); |
| 315 | 315 | } |
| 316 | 316 | |
@@ -151,11 +151,11 @@ discard block |
||
| 151 | 151 | do_action( 'gravityview/template/list/body/before', $context ); |
| 152 | 152 | |
| 153 | 153 | /** |
| 154 | - * @action `gravityview_list_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
| 155 | - * @deprecated Use `gravityview/template/list/body/before` |
|
| 156 | - * @since 1.0.7 |
|
| 157 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 158 | - */ |
|
| 154 | + * @action `gravityview_list_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
| 155 | + * @deprecated Use `gravityview/template/list/body/before` |
|
| 156 | + * @since 1.0.7 |
|
| 157 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 158 | + */ |
|
| 159 | 159 | do_action( 'gravityview_list_body_before', \GravityView_View::getInstance() /** ugh! */ ); |
| 160 | 160 | } |
| 161 | 161 | |
@@ -177,11 +177,11 @@ discard block |
||
| 177 | 177 | do_action( 'gravityview/template/list/body/after', $context ); |
| 178 | 178 | |
| 179 | 179 | /** |
| 180 | - * @action `gravityview_list_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
| 181 | - * @deprecated Use `gravityview/template/list/body/after` |
|
| 182 | - * @since 1.0.7 |
|
| 183 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 184 | - */ |
|
| 180 | + * @action `gravityview_list_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
| 181 | + * @deprecated Use `gravityview/template/list/body/after` |
|
| 182 | + * @since 1.0.7 |
|
| 183 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 184 | + */ |
|
| 185 | 185 | do_action( 'gravityview_list_body_after', \GravityView_View::getInstance() /** ugh! */ ); |
| 186 | 186 | } |
| 187 | 187 | |
@@ -212,11 +212,11 @@ discard block |
||
| 212 | 212 | $zone = str_replace( '/', '_', $zone ); |
| 213 | 213 | |
| 214 | 214 | /** |
| 215 | - * @action `gravityview_list_entry_$zone_before` Inside the `entry`, before any rows are rendered. Can be used to insert additional rows. |
|
| 216 | - * @deprecated Use `gravityview/template/list/entry/$zone/before` |
|
| 217 | - * @since 1.0.7 |
|
| 218 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 219 | - */ |
|
| 215 | + * @action `gravityview_list_entry_$zone_before` Inside the `entry`, before any rows are rendered. Can be used to insert additional rows. |
|
| 216 | + * @deprecated Use `gravityview/template/list/entry/$zone/before` |
|
| 217 | + * @since 1.0.7 |
|
| 218 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 219 | + */ |
|
| 220 | 220 | do_action( sprintf( 'gravityview_list_entry%sbefore', $zone ), $entry->as_entry(), \GravityView_View::getInstance() /** ugh! */ ); |
| 221 | 221 | } |
| 222 | 222 | |
@@ -247,11 +247,11 @@ discard block |
||
| 247 | 247 | $zone = str_replace( '/', '_', $zone ); |
| 248 | 248 | |
| 249 | 249 | /** |
| 250 | - * @action `gravityview_list_entry_$zone_after` Inside the `entry`, after any rows are rendered. Can be used to insert additional rows. |
|
| 251 | - * @deprecated Use `gravityview/template/list/entry/after` |
|
| 252 | - * @since 1.0.7 |
|
| 253 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 254 | - */ |
|
| 250 | + * @action `gravityview_list_entry_$zone_after` Inside the `entry`, after any rows are rendered. Can be used to insert additional rows. |
|
| 251 | + * @deprecated Use `gravityview/template/list/entry/after` |
|
| 252 | + * @since 1.0.7 |
|
| 253 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
| 254 | + */ |
|
| 255 | 255 | do_action( sprintf( 'gravityview_list_entry%safter', $zone ), $entry->as_entry(), \GravityView_View::getInstance() /** ugh! */ ); |
| 256 | 256 | } |
| 257 | 257 | } |
@@ -138,20 +138,20 @@ discard block |
||
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
| 141 | - * Uninstall all traces of GravityView |
|
| 142 | - * |
|
| 143 | - * Note: method is public because parent method is public |
|
| 144 | - * |
|
| 141 | + * Uninstall all traces of GravityView |
|
| 142 | + * |
|
| 143 | + * Note: method is public because parent method is public |
|
| 144 | + * |
|
| 145 | 145 | * @return bool |
| 146 | 146 | */ |
| 147 | 147 | public function uninstall() { |
| 148 | 148 | gravityview()->plugin->uninstall(); |
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | - * Set the path so that Gravity Forms can de-activate GravityView |
|
| 152 | - * @see GFAddOn::uninstall_addon |
|
| 153 | - * @uses deactivate_plugins() |
|
| 154 | - */ |
|
| 151 | + * Set the path so that Gravity Forms can de-activate GravityView |
|
| 152 | + * @see GFAddOn::uninstall_addon |
|
| 153 | + * @uses deactivate_plugins() |
|
| 154 | + */ |
|
| 155 | 155 | $this->_path = GRAVITYVIEW_FILE; |
| 156 | 156 | |
| 157 | 157 | return true; |
@@ -181,42 +181,42 @@ discard block |
||
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
| 184 | - * Get an array of reasons why the plugin might be uninstalled |
|
| 185 | - * |
|
| 186 | - * @since 1.17.5 |
|
| 187 | - * |
|
| 184 | + * Get an array of reasons why the plugin might be uninstalled |
|
| 185 | + * |
|
| 186 | + * @since 1.17.5 |
|
| 187 | + * |
|
| 188 | 188 | * @return array Array of reasons with the label and followup questions for each uninstall reason |
| 189 | 189 | */ |
| 190 | 190 | private function get_uninstall_reasons() { |
| 191 | 191 | $reasons = array( |
| 192 | 192 | 'will-continue' => array( |
| 193 | - 'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ), |
|
| 194 | - ), |
|
| 193 | + 'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ), |
|
| 194 | + ), |
|
| 195 | 195 | 'no-longer-need' => array( |
| 196 | - 'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ), |
|
| 197 | - ), |
|
| 196 | + 'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ), |
|
| 197 | + ), |
|
| 198 | 198 | 'doesnt-work' => array( |
| 199 | - 'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ), |
|
| 200 | - ), |
|
| 199 | + 'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ), |
|
| 200 | + ), |
|
| 201 | 201 | 'found-other' => array( |
| 202 | - 'label' => esc_html__( 'I found a better plugin', 'gravityview' ), |
|
| 203 | - 'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ), |
|
| 204 | - ), |
|
| 202 | + 'label' => esc_html__( 'I found a better plugin', 'gravityview' ), |
|
| 203 | + 'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ), |
|
| 204 | + ), |
|
| 205 | 205 | 'other' => array( |
| 206 | - 'label' => esc_html__( 'Other', 'gravityview' ), |
|
| 207 | - ), |
|
| 206 | + 'label' => esc_html__( 'Other', 'gravityview' ), |
|
| 207 | + ), |
|
| 208 | 208 | ); |
| 209 | 209 | |
| 210 | 210 | shuffle( $reasons ); |
| 211 | 211 | |
| 212 | 212 | return $reasons; |
| 213 | - } |
|
| 213 | + } |
|
| 214 | 214 | |
| 215 | 215 | /** |
| 216 | - * Display a feedback form when the plugin is uninstalled |
|
| 217 | - * |
|
| 218 | - * @since 1.17.5 |
|
| 219 | - * |
|
| 216 | + * Display a feedback form when the plugin is uninstalled |
|
| 217 | + * |
|
| 218 | + * @since 1.17.5 |
|
| 219 | + * |
|
| 220 | 220 | * @return string HTML of the uninstallation form |
| 221 | 221 | */ |
| 222 | 222 | public function uninstall_form() { |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | <h2><?php esc_html_e( 'Why did you uninstall GravityView?', 'gravityview' ); ?></h2> |
| 297 | 297 | <ul> |
| 298 | 298 | <?php |
| 299 | - $reasons = $this->get_uninstall_reasons(); |
|
| 299 | + $reasons = $this->get_uninstall_reasons(); |
|
| 300 | 300 | foreach ( $reasons as $reason ) { |
| 301 | 301 | printf( '<li><label><input name="reason" type="radio" value="other" data-followup="%s"> %s</label></li>', Utils::get( $reason, 'followup' ), Utils::get( $reason, 'label' ) ); |
| 302 | 302 | } |
@@ -390,12 +390,12 @@ discard block |
||
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | public function app_settings_tab() { |
| 393 | - parent::app_settings_tab(); |
|
| 393 | + parent::app_settings_tab(); |
|
| 394 | 394 | |
| 395 | 395 | if ( $this->maybe_uninstall() ) { |
| 396 | - echo $this->uninstall_form(); |
|
| 396 | + echo $this->uninstall_form(); |
|
| 397 | 397 | } |
| 398 | - } |
|
| 398 | + } |
|
| 399 | 399 | |
| 400 | 400 | /** |
| 401 | 401 | * The Settings title |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | * @return array The settings. |
| 481 | 481 | */ |
| 482 | 482 | public function all() { |
| 483 | - return wp_parse_args( get_option( 'gravityformsaddon_' . $this->_slug . '_app_settings', array() ), $this->defaults() ); |
|
| 483 | + return wp_parse_args( get_option( 'gravityformsaddon_' . $this->_slug . '_app_settings', array() ), $this->defaults() ); |
|
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | /** |
@@ -549,8 +549,8 @@ discard block |
||
| 549 | 549 | type="' . $field['type'] . '" |
| 550 | 550 | name="' . esc_attr( $name ) . '" |
| 551 | 551 | value="' . $value . '" ' . |
| 552 | - implode( ' ', $attributes ) . |
|
| 553 | - ' />'; |
|
| 552 | + implode( ' ', $attributes ) . |
|
| 553 | + ' />'; |
|
| 554 | 554 | |
| 555 | 555 | if ( $echo ) { |
| 556 | 556 | echo $html; |
@@ -568,12 +568,12 @@ discard block |
||
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | /** |
| 571 | - * Check whether GravityView is being saved |
|
| 572 | - * |
|
| 573 | - * The generic is_save_postback() is true for all addons |
|
| 574 | - * |
|
| 575 | - * @since 2.0.8 |
|
| 576 | - * |
|
| 571 | + * Check whether GravityView is being saved |
|
| 572 | + * |
|
| 573 | + * The generic is_save_postback() is true for all addons |
|
| 574 | + * |
|
| 575 | + * @since 2.0.8 |
|
| 576 | + * |
|
| 577 | 577 | * @return bool |
| 578 | 578 | */ |
| 579 | 579 | public function is_save_postback() { |
@@ -587,16 +587,16 @@ discard block |
||
| 587 | 587 | */ |
| 588 | 588 | public function license_key_notice() { |
| 589 | 589 | |
| 590 | - if( $this->is_save_postback() ) { |
|
| 591 | - $settings = $this->get_posted_settings(); |
|
| 592 | - $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
| 593 | - $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
| 594 | - } else { |
|
| 595 | - $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
| 596 | - $license_key = $this->get( 'license_key' ); |
|
| 597 | - } |
|
| 590 | + if( $this->is_save_postback() ) { |
|
| 591 | + $settings = $this->get_posted_settings(); |
|
| 592 | + $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
| 593 | + $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
| 594 | + } else { |
|
| 595 | + $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
| 596 | + $license_key = $this->get( 'license_key' ); |
|
| 597 | + } |
|
| 598 | 598 | |
| 599 | - $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
| 599 | + $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
| 600 | 600 | |
| 601 | 601 | $message = esc_html__( 'Your GravityView license %s. This means you’re missing out on updates and support! %sActivate your license%s or %sget a license here%s.', 'gravityview' ); |
| 602 | 602 | |
@@ -610,7 +610,7 @@ discard block |
||
| 610 | 610 | $update_below = false; |
| 611 | 611 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
| 612 | 612 | |
| 613 | - switch ( $license_status ) { |
|
| 613 | + switch ( $license_status ) { |
|
| 614 | 614 | /** @since 1.17 */ |
| 615 | 615 | case 'expired': |
| 616 | 616 | $title = __( 'Expired License', 'gravityview' ); |
@@ -666,12 +666,12 @@ discard block |
||
| 666 | 666 | } |
| 667 | 667 | |
| 668 | 668 | /** |
| 669 | - * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
| 670 | - * |
|
| 671 | - * @since 1.21.5 |
|
| 672 | - * |
|
| 673 | - * @see GFAddOn::scripts() |
|
| 674 | - * |
|
| 669 | + * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
| 670 | + * |
|
| 671 | + * @since 1.21.5 |
|
| 672 | + * |
|
| 673 | + * @see GFAddOn::scripts() |
|
| 674 | + * |
|
| 675 | 675 | * @return array Array of scripts |
| 676 | 676 | */ |
| 677 | 677 | public function scripts() { |
@@ -680,10 +680,10 @@ discard block |
||
| 680 | 680 | $scripts[] = array( |
| 681 | 681 | 'handle' => 'gform_tooltip_init', |
| 682 | 682 | 'enqueue' => array( |
| 683 | - array( |
|
| 684 | - 'admin_page' => array( 'app_settings' ) |
|
| 685 | - ) |
|
| 686 | - ) |
|
| 683 | + array( |
|
| 684 | + 'admin_page' => array( 'app_settings' ) |
|
| 685 | + ) |
|
| 686 | + ) |
|
| 687 | 687 | ); |
| 688 | 688 | |
| 689 | 689 | return $scripts; |
@@ -701,10 +701,10 @@ discard block |
||
| 701 | 701 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
| 702 | 702 | 'version' => Plugin::$version, |
| 703 | 703 | 'deps' => array( |
| 704 | - 'gform_admin', |
|
| 704 | + 'gform_admin', |
|
| 705 | 705 | 'gaddon_form_settings_css', |
| 706 | - 'gform_tooltip', |
|
| 707 | - 'gform_font_awesome', |
|
| 706 | + 'gform_tooltip', |
|
| 707 | + 'gform_font_awesome', |
|
| 708 | 708 | ), |
| 709 | 709 | 'enqueue' => array( |
| 710 | 710 | array( 'admin_page' => array( |
@@ -872,7 +872,7 @@ discard block |
||
| 872 | 872 | array( |
| 873 | 873 | 'label' => _x( 'Show me beta versions if they are available.', 'gravityview' ), |
| 874 | 874 | 'value' => '1', |
| 875 | - 'name' => 'beta', |
|
| 875 | + 'name' => 'beta', |
|
| 876 | 876 | ), |
| 877 | 877 | ), |
| 878 | 878 | 'description' => __( 'You will have early access to the latest GravityView features and improvements. There may be bugs! If you encounter an issue, help make GravityView better by reporting it!', 'gravityview' ), |
@@ -910,38 +910,38 @@ discard block |
||
| 910 | 910 | |
| 911 | 911 | if ( empty( $field['disabled'] ) ) { |
| 912 | 912 | unset( $field['disabled'] ); |
| 913 | - } |
|
| 913 | + } |
|
| 914 | 914 | } |
| 915 | 915 | |
| 916 | - $sections = array( |
|
| 917 | - array( |
|
| 918 | - 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
| 919 | - 'fields' => $fields, |
|
| 920 | - ) |
|
| 921 | - ); |
|
| 916 | + $sections = array( |
|
| 917 | + array( |
|
| 918 | + 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
| 919 | + 'fields' => $fields, |
|
| 920 | + ) |
|
| 921 | + ); |
|
| 922 | 922 | |
| 923 | - // custom 'update settings' button |
|
| 924 | - $button = array( |
|
| 925 | - 'class' => 'button button-primary button-hero', |
|
| 926 | - 'type' => 'save', |
|
| 927 | - ); |
|
| 923 | + // custom 'update settings' button |
|
| 924 | + $button = array( |
|
| 925 | + 'class' => 'button button-primary button-hero', |
|
| 926 | + 'type' => 'save', |
|
| 927 | + ); |
|
| 928 | 928 | |
| 929 | 929 | if ( $disabled_attribute ) { |
| 930 | 930 | $button['disabled'] = $disabled_attribute; |
| 931 | 931 | } |
| 932 | 932 | |
| 933 | - /** |
|
| 934 | - * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
| 935 | - * Extensions can tap in here to insert their own section and settings. |
|
| 936 | - * <code> |
|
| 937 | - * $sections[] = array( |
|
| 938 | - * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
| 939 | - * 'fields' => $settings, |
|
| 940 | - * ); |
|
| 941 | - * </code> |
|
| 942 | - * @param array $extension_settings Empty array, ready for extension settings! |
|
| 943 | - */ |
|
| 944 | - $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
| 933 | + /** |
|
| 934 | + * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
| 935 | + * Extensions can tap in here to insert their own section and settings. |
|
| 936 | + * <code> |
|
| 937 | + * $sections[] = array( |
|
| 938 | + * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
| 939 | + * 'fields' => $settings, |
|
| 940 | + * ); |
|
| 941 | + * </code> |
|
| 942 | + * @param array $extension_settings Empty array, ready for extension settings! |
|
| 943 | + */ |
|
| 944 | + $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
| 945 | 945 | |
| 946 | 946 | // If there are extensions, add a section for them |
| 947 | 947 | if ( ! empty( $extension_sections ) ) { |
@@ -954,13 +954,13 @@ discard block |
||
| 954 | 954 | } |
| 955 | 955 | } |
| 956 | 956 | |
| 957 | - $k = count( $extension_sections ) - 1 ; |
|
| 958 | - $extension_sections[ $k ]['fields'][] = $button; |
|
| 957 | + $k = count( $extension_sections ) - 1 ; |
|
| 958 | + $extension_sections[ $k ]['fields'][] = $button; |
|
| 959 | 959 | $sections = array_merge( $sections, $extension_sections ); |
| 960 | 960 | } else { |
| 961 | - // add the 'update settings' button to the general section |
|
| 962 | - $sections[0]['fields'][] = $button; |
|
| 963 | - } |
|
| 961 | + // add the 'update settings' button to the general section |
|
| 962 | + $sections[0]['fields'][] = $button; |
|
| 963 | + } |
|
| 964 | 964 | |
| 965 | 965 | return $sections; |
| 966 | 966 | } |
@@ -1014,9 +1014,9 @@ discard block |
||
| 1014 | 1014 | */ |
| 1015 | 1015 | protected function settings_edd_license( $field, $echo = true ) { |
| 1016 | 1016 | |
| 1017 | - if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
| 1018 | - $field['input_type'] = 'password'; |
|
| 1019 | - } |
|
| 1017 | + if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
| 1018 | + $field['input_type'] = 'password'; |
|
| 1019 | + } |
|
| 1020 | 1020 | |
| 1021 | 1021 | $text = $this->settings_text( $field, false ); |
| 1022 | 1022 | |
@@ -1033,9 +1033,9 @@ discard block |
||
| 1033 | 1033 | |
| 1034 | 1034 | /** |
| 1035 | 1035 | * Allow pure HTML settings row |
| 1036 | - * |
|
| 1037 | - * @since 2.0.6 |
|
| 1038 | - * |
|
| 1036 | + * |
|
| 1037 | + * @since 2.0.6 |
|
| 1038 | + * |
|
| 1039 | 1039 | * @param array $field |
| 1040 | 1040 | * @param bool $echo Whether to echo the |
| 1041 | 1041 | * |
@@ -1101,19 +1101,19 @@ discard block |
||
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | /** |
| 1104 | - * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
| 1105 | - * |
|
| 1106 | - * Converts `$field['description']` to `$field['gv_description']` |
|
| 1107 | - * Converts `$field['subtitle']` to `$field['description']` |
|
| 1108 | - * |
|
| 1109 | - * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
| 1110 | - * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
| 1111 | - * |
|
| 1112 | - * @since 1.21.5.2 |
|
| 1113 | - * |
|
| 1104 | + * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
| 1105 | + * |
|
| 1106 | + * Converts `$field['description']` to `$field['gv_description']` |
|
| 1107 | + * Converts `$field['subtitle']` to `$field['description']` |
|
| 1108 | + * |
|
| 1109 | + * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
| 1110 | + * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
| 1111 | + * |
|
| 1112 | + * @since 1.21.5.2 |
|
| 1113 | + * |
|
| 1114 | 1114 | * @param array $field |
| 1115 | - * |
|
| 1116 | - * @return void |
|
| 1115 | + * |
|
| 1116 | + * @return void |
|
| 1117 | 1117 | */ |
| 1118 | 1118 | public function single_setting_row( $field ) { |
| 1119 | 1119 | $field['gv_description'] = Utils::get( $field, 'description' ); |