@@ -5,239 +5,239 @@ |
||
| 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_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
| 65 | - |
|
| 66 | - if ( false === $result ) { |
|
| 67 | - $status = __('Error', 'gravityview'); |
|
| 68 | - global $wpdb; |
|
| 69 | - $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
| 70 | - } else { |
|
| 71 | - $status = __('Success', 'gravityview'); |
|
| 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 | - |
|
| 75 | - gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
| 76 | - |
|
| 77 | - /** |
|
| 78 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 79 | - * @since 1.21.5 |
|
| 80 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 81 | - */ |
|
| 82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 83 | - return; |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Disable previous functionality; use this one as the canonical. |
|
| 92 | - * @return void |
|
| 93 | - */ |
|
| 94 | - function prevent_conflicts() { |
|
| 95 | - |
|
| 96 | - // Plugin that was provided here: |
|
| 97 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
| 98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 100 | - |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * @since 3.6.3 |
|
| 105 | - * @return void |
|
| 106 | - */ |
|
| 107 | - function load() { |
|
| 108 | - |
|
| 109 | - // Does GF exist? |
|
| 110 | - if( !class_exists('GFCommon') ) { |
|
| 111 | - return; |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - // Can the user edit entries? |
|
| 115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 116 | - return; |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - // If screen mode isn't set, then we're in the wrong place. |
|
| 120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 121 | - return; |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - // Now, no validation is required in the methods; let's hook in. |
|
| 125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 126 | - |
|
| 127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 128 | - |
|
| 129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 130 | - |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - /** |
|
| 134 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 135 | - * @return void |
|
| 136 | - */ |
|
| 137 | - function set_screen_mode() { |
|
| 138 | - |
|
| 139 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 140 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 141 | - $_POST["screen_mode"] = 'edit'; |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * When the entry creator is changed, add a note to the entry |
|
| 148 | - * @param array $form GF entry array |
|
| 149 | - * @param int $entry_id Entry ID |
|
| 150 | - * @return void |
|
| 151 | - */ |
|
| 152 | - function update_entry_creator($form, $entry_id) { |
|
| 153 | - global $current_user; |
|
| 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_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
| 65 | + |
|
| 66 | + if ( false === $result ) { |
|
| 67 | + $status = __('Error', 'gravityview'); |
|
| 68 | + global $wpdb; |
|
| 69 | + $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
| 70 | + } else { |
|
| 71 | + $status = __('Success', 'gravityview'); |
|
| 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 | + |
|
| 75 | + gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
| 76 | + |
|
| 77 | + /** |
|
| 78 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 79 | + * @since 1.21.5 |
|
| 80 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 81 | + */ |
|
| 82 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 83 | + return; |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Disable previous functionality; use this one as the canonical. |
|
| 92 | + * @return void |
|
| 93 | + */ |
|
| 94 | + function prevent_conflicts() { |
|
| 95 | + |
|
| 96 | + // Plugin that was provided here: |
|
| 97 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
| 98 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 99 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 100 | + |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * @since 3.6.3 |
|
| 105 | + * @return void |
|
| 106 | + */ |
|
| 107 | + function load() { |
|
| 108 | + |
|
| 109 | + // Does GF exist? |
|
| 110 | + if( !class_exists('GFCommon') ) { |
|
| 111 | + return; |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + // Can the user edit entries? |
|
| 115 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 116 | + return; |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + // If screen mode isn't set, then we're in the wrong place. |
|
| 120 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 121 | + return; |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + // Now, no validation is required in the methods; let's hook in. |
|
| 125 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 126 | + |
|
| 127 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 128 | + |
|
| 129 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 130 | + |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + /** |
|
| 134 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 135 | + * @return void |
|
| 136 | + */ |
|
| 137 | + function set_screen_mode() { |
|
| 138 | + |
|
| 139 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 140 | + if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 141 | + $_POST["screen_mode"] = 'edit'; |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * When the entry creator is changed, add a note to the entry |
|
| 148 | + * @param array $form GF entry array |
|
| 149 | + * @param int $entry_id Entry ID |
|
| 150 | + * @return void |
|
| 151 | + */ |
|
| 152 | + function update_entry_creator($form, $entry_id) { |
|
| 153 | + global $current_user; |
|
| 154 | 154 | |
| 155 | - // Update the entry |
|
| 156 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
| 155 | + // Update the entry |
|
| 156 | + $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
| 157 | 157 | |
| 158 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 158 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 159 | 159 | |
| 160 | - // If the creator has changed, let's add a note about who it used to be. |
|
| 161 | - $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
| 160 | + // If the creator has changed, let's add a note about who it used to be. |
|
| 161 | + $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
| 162 | 162 | |
| 163 | - // If there's no owner and there didn't used to be, keep going |
|
| 164 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 165 | - return; |
|
| 166 | - } |
|
| 163 | + // If there's no owner and there didn't used to be, keep going |
|
| 164 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 165 | + return; |
|
| 166 | + } |
|
| 167 | 167 | |
| 168 | - // If the values have changed |
|
| 169 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 168 | + // If the values have changed |
|
| 169 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 170 | 170 | |
| 171 | - $user_data = get_userdata($current_user->ID); |
|
| 171 | + $user_data = get_userdata($current_user->ID); |
|
| 172 | 172 | |
| 173 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 173 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 174 | 174 | |
| 175 | - $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'); |
|
| 175 | + $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'); |
|
| 176 | 176 | |
| 177 | - if( !empty( $originally_created_by ) ) { |
|
| 178 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 179 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 180 | - } |
|
| 177 | + if( !empty( $originally_created_by ) ) { |
|
| 178 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 179 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 180 | + } |
|
| 181 | 181 | |
| 182 | - if( !empty( $created_by ) ) { |
|
| 183 | - $created_by_user_data = get_userdata($created_by); |
|
| 184 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 185 | - } |
|
| 182 | + if( !empty( $created_by ) ) { |
|
| 183 | + $created_by_user_data = get_userdata($created_by); |
|
| 184 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | - 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' ); |
|
| 188 | - } |
|
| 187 | + 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' ); |
|
| 188 | + } |
|
| 189 | 189 | |
| 190 | - } |
|
| 190 | + } |
|
| 191 | 191 | |
| 192 | - /** |
|
| 193 | - * Output the select to change the entry creator |
|
| 194 | - * @param int $form_id GF Form ID |
|
| 195 | - * @param array $entry GF entry array |
|
| 196 | - * @return void |
|
| 197 | - */ |
|
| 198 | - function add_select($form_id, $entry ) { |
|
| 192 | + /** |
|
| 193 | + * Output the select to change the entry creator |
|
| 194 | + * @param int $form_id GF Form ID |
|
| 195 | + * @param array $entry GF entry array |
|
| 196 | + * @return void |
|
| 197 | + */ |
|
| 198 | + function add_select($form_id, $entry ) { |
|
| 199 | 199 | |
| 200 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 201 | - return; |
|
| 202 | - } |
|
| 200 | + if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 201 | + return; |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
| 204 | + $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
| 205 | 205 | |
| 206 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 206 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 207 | 207 | |
| 208 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 208 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 209 | 209 | |
| 210 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 211 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 210 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 211 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 212 | 212 | |
| 213 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 214 | - $users = array_merge( $users, $created_by_user ); |
|
| 215 | - } |
|
| 216 | - } |
|
| 213 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 214 | + $users = array_merge( $users, $created_by_user ); |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - $output = '<label for="change_created_by">'; |
|
| 219 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 220 | - $output .= '</label>'; |
|
| 218 | + $output = '<label for="change_created_by">'; |
|
| 219 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 220 | + $output .= '</label>'; |
|
| 221 | 221 | |
| 222 | - // If there are users who are not being shown, show a warning. |
|
| 223 | - // TODO: Use AJAX instead of <select> |
|
| 224 | - $count_users = count_users(); |
|
| 225 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 226 | - $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>'; |
|
| 227 | - } |
|
| 222 | + // If there are users who are not being shown, show a warning. |
|
| 223 | + // TODO: Use AJAX instead of <select> |
|
| 224 | + $count_users = count_users(); |
|
| 225 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 226 | + $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>'; |
|
| 227 | + } |
|
| 228 | 228 | |
| 229 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 230 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 231 | - foreach($users as $user) { |
|
| 232 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 233 | - } |
|
| 234 | - $output .= '</select>'; |
|
| 235 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 229 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 230 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 231 | + foreach($users as $user) { |
|
| 232 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 233 | + } |
|
| 234 | + $output .= '</select>'; |
|
| 235 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 236 | 236 | |
| 237 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 237 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 238 | 238 | |
| 239 | - echo $output; |
|
| 240 | - } |
|
| 239 | + echo $output; |
|
| 240 | + } |
|
| 241 | 241 | |
| 242 | 242 | } |
| 243 | 243 | |
@@ -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 | |
@@ -56,20 +56,20 @@ discard block |
||
| 56 | 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_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
| 64 | + $result = RGFormsModel::update_entry_property( (int)$entry[ 'id' ], 'created_by', (int)$user_id, false, true ); |
|
| 65 | 65 | |
| 66 | 66 | if ( false === $result ) { |
| 67 | - $status = __('Error', 'gravityview'); |
|
| 67 | + $status = __( 'Error', 'gravityview' ); |
|
| 68 | 68 | global $wpdb; |
| 69 | 69 | $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
| 70 | 70 | } else { |
| 71 | - $status = __('Success', 'gravityview'); |
|
| 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 ); |
|
| 71 | + $status = __( 'Success', 'gravityview' ); |
|
| 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 | 74 | |
| 75 | 75 | gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
@@ -79,11 +79,11 @@ discard block |
||
| 79 | 79 | * @since 1.21.5 |
| 80 | 80 | * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
| 81 | 81 | */ |
| 82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | + if ( apply_filters( 'gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 83 | 83 | return; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 86 | + GravityView_Entry_Notes::add_note( $entry[ 'id' ], -1, 'GravityView', $note, 'gravityview' ); |
|
| 87 | 87 | |
| 88 | 88 | } |
| 89 | 89 | |
@@ -95,8 +95,8 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | // Plugin that was provided here: |
| 97 | 97 | // @link https://gravityview.co/support/documentation/201991205/ |
| 98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 98 | + remove_action( "gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 99 | + remove_action( "gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 100 | 100 | |
| 101 | 101 | } |
| 102 | 102 | |
@@ -107,26 +107,26 @@ discard block |
||
| 107 | 107 | function load() { |
| 108 | 108 | |
| 109 | 109 | // Does GF exist? |
| 110 | - if( !class_exists('GFCommon') ) { |
|
| 110 | + if ( ! class_exists( 'GFCommon' ) ) { |
|
| 111 | 111 | return; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | // Can the user edit entries? |
| 115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 115 | + if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 116 | 116 | return; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | // If screen mode isn't set, then we're in the wrong place. |
| 120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 120 | + if ( empty( $_REQUEST[ 'screen_mode' ] ) ) { |
|
| 121 | 121 | return; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | // Now, no validation is required in the methods; let's hook in. |
| 125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 125 | + add_action( 'admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 126 | 126 | |
| 127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 127 | + add_action( "gform_entry_info", array( &$this, 'add_select' ), 10, 2 ); |
|
| 128 | 128 | |
| 129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 129 | + add_action( "gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2 ); |
|
| 130 | 130 | |
| 131 | 131 | } |
| 132 | 132 | |
@@ -137,8 +137,8 @@ discard block |
||
| 137 | 137 | function set_screen_mode() { |
| 138 | 138 | |
| 139 | 139 | // If $_GET['screen_mode'] is set to edit, set $_POST value |
| 140 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 141 | - $_POST["screen_mode"] = 'edit'; |
|
| 140 | + if ( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
| 141 | + $_POST[ "screen_mode" ] = 'edit'; |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | } |
@@ -149,11 +149,11 @@ discard block |
||
| 149 | 149 | * @param int $entry_id Entry ID |
| 150 | 150 | * @return void |
| 151 | 151 | */ |
| 152 | - function update_entry_creator($form, $entry_id) { |
|
| 152 | + function update_entry_creator( $form, $entry_id ) { |
|
| 153 | 153 | global $current_user; |
| 154 | 154 | |
| 155 | 155 | // Update the entry |
| 156 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
| 156 | + $created_by = absint( \GV\Utils::_POST( 'created_by' ) ); |
|
| 157 | 157 | |
| 158 | 158 | RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
| 159 | 159 | |
@@ -161,30 +161,30 @@ discard block |
||
| 161 | 161 | $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
| 162 | 162 | |
| 163 | 163 | // If there's no owner and there didn't used to be, keep going |
| 164 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 164 | + if ( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 165 | 165 | return; |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | // If the values have changed |
| 169 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 169 | + if ( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 170 | 170 | |
| 171 | - $user_data = get_userdata($current_user->ID); |
|
| 171 | + $user_data = get_userdata( $current_user->ID ); |
|
| 172 | 172 | |
| 173 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 173 | + $user_format = _x( '%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview' ); |
|
| 174 | 174 | |
| 175 | - $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'); |
|
| 175 | + $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' ); |
|
| 176 | 176 | |
| 177 | - if( !empty( $originally_created_by ) ) { |
|
| 178 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 177 | + if ( ! empty( $originally_created_by ) ) { |
|
| 178 | + $originally_created_by_user_data = get_userdata( $originally_created_by ); |
|
| 179 | 179 | $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - if( !empty( $created_by ) ) { |
|
| 183 | - $created_by_user_data = get_userdata($created_by); |
|
| 182 | + if ( ! empty( $created_by ) ) { |
|
| 183 | + $created_by_user_data = get_userdata( $created_by ); |
|
| 184 | 184 | $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - 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' ); |
|
| 187 | + 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' ); |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | } |
@@ -195,9 +195,9 @@ discard block |
||
| 195 | 195 | * @param array $entry GF entry array |
| 196 | 196 | * @return void |
| 197 | 197 | */ |
| 198 | - function add_select($form_id, $entry ) { |
|
| 198 | + function add_select( $form_id, $entry ) { |
|
| 199 | 199 | |
| 200 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 200 | + if ( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
| 201 | 201 | return; |
| 202 | 202 | } |
| 203 | 203 | |
@@ -216,23 +216,23 @@ discard block |
||
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | $output = '<label for="change_created_by">'; |
| 219 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 219 | + $output .= esc_html__( 'Change Entry Creator:', 'gravityview' ); |
|
| 220 | 220 | $output .= '</label>'; |
| 221 | 221 | |
| 222 | 222 | // If there are users who are not being shown, show a warning. |
| 223 | 223 | // TODO: Use AJAX instead of <select> |
| 224 | 224 | $count_users = count_users(); |
| 225 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 225 | + if ( sizeof( $users ) < $count_users[ 'total_users' ] ) { |
|
| 226 | 226 | $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>'; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
| 230 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 231 | - foreach($users as $user) { |
|
| 232 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 230 | + $output .= '<option value="' . selected( $entry[ 'created_by' ], '0', false ) . '"> — ' . esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview' ) . ' — </option>'; |
|
| 231 | + foreach ( $users as $user ) { |
|
| 232 | + $output .= '<option value="' . $user->ID . '"' . selected( $entry[ 'created_by' ], $user->ID, false ) . '>' . esc_attr( $user->display_name . ' (' . $user->user_nicename . ')' ) . '</option>'; |
|
| 233 | 233 | } |
| 234 | 234 | $output .= '</select>'; |
| 235 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 235 | + $output .= '<input name="originally_created_by" value="' . esc_attr( $entry[ 'created_by' ] ) . '" type="hidden" />'; |
|
| 236 | 236 | |
| 237 | 237 | unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
| 238 | 238 | |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | if( is_array( $search_field['value'] ) ) { |
| 19 | - gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
|
| 19 | + gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
|
| 20 | 20 | $search_field['value'] = reset( $search_field['value'] ); |
| 21 | 21 | } |
| 22 | 22 | |
@@ -10,14 +10,14 @@ discard block |
||
| 10 | 10 | $search_field = $gravityview_view->search_field; |
| 11 | 11 | |
| 12 | 12 | // Make sure that there are choices to display |
| 13 | -if( empty( $search_field['choices'] ) ) { |
|
| 13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
| 14 | 14 | gravityview()->log->debug( 'search-field-select.php - No choices for field' ); |
| 15 | 15 | return; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | -if( is_array( $search_field['value'] ) ) { |
|
| 18 | +if ( is_array( $search_field[ 'value' ] ) ) { |
|
| 19 | 19 | gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
| 20 | - $search_field['value'] = reset( $search_field['value'] ); |
|
| 20 | + $search_field[ 'value' ] = reset( $search_field[ 'value' ] ); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -26,26 +26,26 @@ discard block |
||
| 26 | 26 | * @param string $default_option Default: `—` (—) |
| 27 | 27 | * @param string $field_type Field type: "select" or "multiselect" |
| 28 | 28 | */ |
| 29 | -$default_option = apply_filters('gravityview/extension/search/select_default', '—', 'select' ); |
|
| 29 | +$default_option = apply_filters( 'gravityview/extension/search/select_default', '—', 'select' ); |
|
| 30 | 30 | |
| 31 | 31 | ?> |
| 32 | 32 | <div class="gv-search-box gv-search-field-select"> |
| 33 | - <?php if( ! gv_empty( $search_field['label'], false, false ) ) { ?> |
|
| 34 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
| 33 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false, false ) ) { ?> |
|
| 34 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
| 35 | 35 | <?php } ?> |
| 36 | 36 | <p> |
| 37 | - <select name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"> |
|
| 38 | - <option value="" <?php gv_selected( '', $search_field['value'], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
| 37 | + <select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"> |
|
| 38 | + <option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
| 39 | 39 | <?php |
| 40 | - foreach( $search_field['choices'] as $choice ) { ?> |
|
| 41 | - <?php if ( is_array( $choice['value'] ) ) { ?> |
|
| 42 | - <optgroup label="<?php echo esc_attr( $choice['text'] ); ?>"> |
|
| 43 | - <?php foreach ( $choice['value'] as $subchoice ): ?> |
|
| 44 | - <option value="<?php echo esc_attr( $subchoice['value'] ); ?>"><?php echo esc_html( $subchoice['text'] ); ?></option> |
|
| 40 | + foreach ( $search_field[ 'choices' ] as $choice ) { ?> |
|
| 41 | + <?php if ( is_array( $choice[ 'value' ] ) ) { ?> |
|
| 42 | + <optgroup label="<?php echo esc_attr( $choice[ 'text' ] ); ?>"> |
|
| 43 | + <?php foreach ( $choice[ 'value' ] as $subchoice ): ?> |
|
| 44 | + <option value="<?php echo esc_attr( $subchoice[ 'value' ] ); ?>"><?php echo esc_html( $subchoice[ 'text' ] ); ?></option> |
|
| 45 | 45 | <?php endforeach; ?> |
| 46 | 46 | </optgroup> |
| 47 | 47 | <?php } else { ?> |
| 48 | - <option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $search_field['value'] ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
| 48 | + <option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $search_field[ 'value' ] ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
| 49 | 49 | <?php } ?> |
| 50 | 50 | <?php } ?> |
| 51 | 51 | </select> |
@@ -15,34 +15,34 @@ |
||
| 15 | 15 | $field_info_items = array(); |
| 16 | 16 | |
| 17 | 17 | // Fields with IDs, not like Source URL or Entry ID |
| 18 | - if( is_numeric( $this->id ) ) { |
|
| 18 | + if ( is_numeric( $this->id ) ) { |
|
| 19 | 19 | |
| 20 | - $field_type_title = GFCommon::get_field_type_title( $this->item['input_type'] ); |
|
| 20 | + $field_type_title = GFCommon::get_field_type_title( $this->item[ 'input_type' ] ); |
|
| 21 | 21 | |
| 22 | - $field_info_items[] = array( |
|
| 23 | - 'value' => sprintf( __('Type: %s', 'gravityview'), $field_type_title ) |
|
| 22 | + $field_info_items[ ] = array( |
|
| 23 | + 'value' => sprintf( __( 'Type: %s', 'gravityview' ), $field_type_title ) |
|
| 24 | 24 | ); |
| 25 | 25 | |
| 26 | - $field_info_items[] = array( |
|
| 27 | - 'value' => sprintf( __('Field ID: %s', 'gravityview'), $this->id ), |
|
| 26 | + $field_info_items[ ] = array( |
|
| 27 | + 'value' => sprintf( __( 'Field ID: %s', 'gravityview' ), $this->id ), |
|
| 28 | 28 | ); |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - if( !empty( $this->item['desc'] ) ) { |
|
| 32 | - $field_info_items[] = array( |
|
| 33 | - 'value' => $this->item['desc'] |
|
| 31 | + if ( ! empty( $this->item[ 'desc' ] ) ) { |
|
| 32 | + $field_info_items[ ] = array( |
|
| 33 | + 'value' => $this->item[ 'desc' ] |
|
| 34 | 34 | ); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - if( !empty( $this->item['adminLabel'] ) ) { |
|
| 38 | - $field_info_items[] = array( |
|
| 39 | - 'value' => sprintf( __('Admin Label: %s', 'gravityview' ), $this->item['adminLabel'] ), |
|
| 37 | + if ( ! empty( $this->item[ 'adminLabel' ] ) ) { |
|
| 38 | + $field_info_items[ ] = array( |
|
| 39 | + 'value' => sprintf( __( 'Admin Label: %s', 'gravityview' ), $this->item[ 'adminLabel' ] ), |
|
| 40 | 40 | 'class' => 'gv-sublabel' |
| 41 | 41 | ); |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - $field_info_items[] = array( |
|
| 45 | - 'value' => sprintf( __('Form ID: %s', 'gravityview' ), $this->form_id ), |
|
| 44 | + $field_info_items[ ] = array( |
|
| 45 | + 'value' => sprintf( __( 'Form ID: %s', 'gravityview' ), $this->form_id ), |
|
| 46 | 46 | 'hide_in_picker' => true, |
| 47 | 47 | ); |
| 48 | 48 | |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | protected $form_id; |
| 46 | 46 | |
| 47 | - function __construct( $title = '', $item_id, $item = array(), $settings = array(), $form_id = null) { |
|
| 47 | + function __construct( $title = '', $item_id, $item = array(), $settings = array(), $form_id = null ) { |
|
| 48 | 48 | |
| 49 | 49 | // Backward compat |
| 50 | - if ( ! empty( $item['type'] ) ) { |
|
| 51 | - $item['input_type'] = $item['type']; |
|
| 52 | - unset( $item['type'] ); |
|
| 50 | + if ( ! empty( $item[ 'type' ] ) ) { |
|
| 51 | + $item[ 'input_type' ] = $item[ 'type' ]; |
|
| 52 | + unset( $item[ 'type' ] ); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | // Prevent items from not having index set |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $this->id = $item_id; |
| 72 | 72 | $this->form_id = $form_id; |
| 73 | 73 | $this->settings = $settings; |
| 74 | - $this->label_type = $item['label_type']; |
|
| 74 | + $this->label_type = $item[ 'label_type' ]; |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -115,14 +115,14 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | foreach ( $field_info_items as $item ) { |
| 117 | 117 | |
| 118 | - if( \GV\Utils::get( $item, 'hide_in_picker', false ) ) { |
|
| 118 | + if ( \GV\Utils::get( $item, 'hide_in_picker', false ) ) { |
|
| 119 | 119 | continue; |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - $class = isset( $item['class'] ) ? sanitize_html_class( $item['class'] ) . ' description' : 'description'; |
|
| 122 | + $class = isset( $item[ 'class' ] ) ? sanitize_html_class( $item[ 'class' ] ) . ' description' : 'description'; |
|
| 123 | 123 | // Add the title in case the value's long, in which case, it'll be truncated by CSS. |
| 124 | 124 | $output .= '<span class="' . $class . '">'; |
| 125 | - $output .= esc_html( $item['value'] ); |
|
| 125 | + $output .= esc_html( $item[ 'value' ] ); |
|
| 126 | 126 | $output .= '</span>'; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -150,29 +150,29 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | // $settings_html will just be hidden inputs if empty. Otherwise, it'll have an <ul>. Ugly hack, I know. |
| 152 | 152 | // TODO: Un-hack this |
| 153 | - $hide_settings_link = ( empty( $this->item['settings_html'] ) || strpos( $this->item['settings_html'], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
| 153 | + $hide_settings_link = ( empty( $this->item[ 'settings_html' ] ) || strpos( $this->item[ 'settings_html' ], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
| 154 | 154 | $settings_link = sprintf( '<a href="#settings" class="dashicons-admin-generic dashicons %s" title="%s"></a>', $hide_settings_link, esc_attr( $settings_title ) ); |
| 155 | 155 | |
| 156 | 156 | // Should we show the icon that the field is being used as a link to single entry? |
| 157 | - $hide_show_as_link_class = empty( $this->settings['show_as_link'] ) ? 'hide-if-js' : ''; |
|
| 157 | + $hide_show_as_link_class = empty( $this->settings[ 'show_as_link' ] ) ? 'hide-if-js' : ''; |
|
| 158 | 158 | $show_as_link = '<span class="dashicons dashicons-admin-links ' . $hide_show_as_link_class . '" title="' . esc_attr( $single_link_title ) . '"></span>'; |
| 159 | 159 | |
| 160 | 160 | // When a field label is empty, use the Field ID |
| 161 | 161 | $label = empty( $this->title ) ? sprintf( _x( 'Field #%s (No Label)', 'Label in field picker for empty label', 'gravityview' ), $this->id ) : $this->title; |
| 162 | 162 | |
| 163 | 163 | // If there's a custom label, and show label is checked, use that as the field heading |
| 164 | - if ( ! empty( $this->settings['custom_label'] ) && ! empty( $this->settings['show_label'] ) ) { |
|
| 165 | - $label = $this->settings['custom_label']; |
|
| 166 | - } else if ( ! empty( $this->item['customLabel'] ) ) { |
|
| 167 | - $label = $this->item['customLabel']; |
|
| 164 | + if ( ! empty( $this->settings[ 'custom_label' ] ) && ! empty( $this->settings[ 'show_label' ] ) ) { |
|
| 165 | + $label = $this->settings[ 'custom_label' ]; |
|
| 166 | + } else if ( ! empty( $this->item[ 'customLabel' ] ) ) { |
|
| 167 | + $label = $this->item[ 'customLabel' ]; |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | $output = '<h5 class="selectable gfield field-id-' . esc_attr( $this->id ) . '">'; |
| 171 | 171 | |
| 172 | 172 | $label = esc_attr( $label ); |
| 173 | 173 | |
| 174 | - if ( ! empty( $this->item['parent'] ) ) { |
|
| 175 | - $label .= ' <small>(' . esc_attr( $this->item['parent']['label'] ) . ')</small>'; |
|
| 174 | + if ( ! empty( $this->item[ 'parent' ] ) ) { |
|
| 175 | + $label .= ' <small>(' . esc_attr( $this->item[ 'parent' ][ 'label' ] ) . ')</small>'; |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | // Name of field / widget |
@@ -188,10 +188,10 @@ discard block |
||
| 188 | 188 | |
| 189 | 189 | $output .= '</h5>'; |
| 190 | 190 | |
| 191 | - $container_class = ! empty( $this->item['parent'] ) ? ' gv-child-field' : ''; |
|
| 192 | - $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
| 191 | + $container_class = ! empty( $this->item[ 'parent' ] ) ? ' gv-child-field' : ''; |
|
| 192 | + $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
| 193 | 193 | |
| 194 | - $output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item['input_type'] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item['settings_html'] . '</div>'; |
|
| 194 | + $output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item[ 'input_type' ] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item[ 'settings_html' ] . '</div>'; |
|
| 195 | 195 | |
| 196 | 196 | return $output; |
| 197 | 197 | } |
@@ -58,16 +58,16 @@ |
||
| 58 | 58 | if ( $view->joins ) { |
| 59 | 59 | $form_ids = array(); |
| 60 | 60 | foreach ( $view->joins as $join ) { |
| 61 | - $form_ids[] = $join->join->ID; |
|
| 62 | - $form_ids[] = $join->join_on->ID; |
|
| 61 | + $form_ids[ ] = $join->join->ID; |
|
| 62 | + $form_ids[ ] = $join->join_on->ID; |
|
| 63 | 63 | } |
| 64 | 64 | foreach ( $entry->entries as $e ) { |
| 65 | - if ( ! in_array( $e['form_id'], $form_ids ) ) { |
|
| 65 | + if ( ! in_array( $e[ 'form_id' ], $form_ids ) ) { |
|
| 66 | 66 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $e->ID, 'view_id' => $view->ID ) ); |
| 67 | 67 | return null; |
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | - } else if ( $view->form && $view->form->ID != $entry['form_id'] ) { |
|
| 70 | + } else if ( $view->form && $view->form->ID != $entry[ 'form_id' ] ) { |
|
| 71 | 71 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $entry->ID, 'view_id' => $view->ID ) ); |
| 72 | 72 | return null; |
| 73 | 73 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | if ( ! $entry instanceof Entry ) { |
| 45 | 45 | continue; |
| 46 | 46 | } |
| 47 | - $_entry->entries[ $entry['form_id'] ] = &$entry; |
|
| 47 | + $_entry->entries[ $entry[ 'form_id' ] ] = &$entry; |
|
| 48 | 48 | } |
| 49 | 49 | return $_entry; |
| 50 | 50 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | foreach ( $this->entries as $entry ) { |
| 67 | 67 | $entry = $entry->as_entry(); |
| 68 | - $_entry['_multi'][ $entry['form_id'] ] = $entry; |
|
| 68 | + $_entry[ '_multi' ][ $entry[ 'form_id' ] ] = $entry; |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | public function get_permalink( \GV\View $view = null, \GV\Request $request = null, $track_directory = true ) { |
| 88 | 88 | $slugs = array(); |
| 89 | 89 | add_filter( 'gravityview/entry/slug', $callback = function( $slug ) use ( &$slugs ) { |
| 90 | - $slugs[] = $slug; |
|
| 90 | + $slugs[ ] = $slug; |
|
| 91 | 91 | return implode( ',', $slugs ); |
| 92 | 92 | }, 10, 1 ); |
| 93 | 93 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | public function __destruct() { |
| 95 | - remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback );; |
|
| 95 | + remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback ); ; |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -175,55 +175,55 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | if ( $is_view && $post ) { |
| 177 | 177 | if ( $field_type ) { |
| 178 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
| 179 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
| 180 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
| 181 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
| 182 | - $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
| 183 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
| 184 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
| 185 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
| 178 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
| 179 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
| 180 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
| 181 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
| 182 | + $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
| 183 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
| 184 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
| 185 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
| 189 | - $specifics []= sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
| 190 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
| 191 | - $specifics []= sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
| 188 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
| 189 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
| 190 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
| 191 | + $specifics [ ] = sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | /** Field-specific */ |
| 195 | 195 | if ( $field_id && $form_id ) { |
| 196 | 196 | |
| 197 | 197 | if ( $field_id ) { |
| 198 | - $specifics []= sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
| 199 | - $specifics []= sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
| 198 | + $specifics [ ] = sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
| 199 | + $specifics [ ] = sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | if ( $field_type ) { |
| 203 | - $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
| 204 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
| 205 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
| 206 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
| 207 | - |
|
| 208 | - $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
| 209 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
| 210 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
| 211 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
| 212 | - |
|
| 213 | - $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
| 214 | - $inputType && $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
| 215 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
| 216 | - $inputType && $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
| 203 | + $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
| 204 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
| 205 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
| 206 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
| 207 | + |
|
| 208 | + $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
| 209 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
| 210 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
| 211 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
| 212 | + |
|
| 213 | + $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
| 214 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
| 215 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
| 216 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
| 217 | 217 | } |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | if ( $form_id ) { |
| 221 | 221 | /** Generic field templates */ |
| 222 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
| 223 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
| 222 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
| 223 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
| 224 | 224 | |
| 225 | - $specifics []= sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
| 226 | - $specifics []= sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
| 225 | + $specifics [ ] = sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
| 226 | + $specifics [ ] = sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -231,12 +231,12 @@ discard block |
||
| 231 | 231 | * Ignore some types that conflict. |
| 232 | 232 | */ |
| 233 | 233 | if ( ! in_array( $field_type, array( 'notes' ) ) ) { |
| 234 | - $specifics []= sprintf( '%s.php', $field_type ); |
|
| 235 | - $specifics []= sprintf( 'fields/%s.php', $field_type ); |
|
| 234 | + $specifics [ ] = sprintf( '%s.php', $field_type ); |
|
| 235 | + $specifics [ ] = sprintf( 'fields/%s.php', $field_type ); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
| 239 | - $specifics []= sprintf( '%sfield.php', $slug_dir ); |
|
| 238 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
| 239 | + $specifics [ ] = sprintf( '%sfield.php', $slug_dir ); |
|
| 240 | 240 | |
| 241 | 241 | return array_merge( $specifics, $templates ); |
| 242 | 242 | }; |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | /** Prevent any PHP warnings that may be generated. */ |
| 268 | 268 | ob_start(); |
| 269 | 269 | |
| 270 | - $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $entry['currency'], false, 'html' ); |
|
| 270 | + $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $entry[ 'currency' ], false, 'html' ); |
|
| 271 | 271 | |
| 272 | 272 | if ( $errors = ob_get_clean() ) { |
| 273 | 273 | gravityview()->log->error( 'Errors when calling GFCommon::get_lead_field_display()', array( 'data' => $errors ) ); |
@@ -24,6 +24,6 @@ |
||
| 24 | 24 | $plugin_theme_hooks_files = glob( $include_path . 'class-gravityview-{plugin,theme}-hooks-*.php', $glob_flags ); |
| 25 | 25 | |
| 26 | 26 | // Load all plugin and theme files automatically |
| 27 | -foreach ( (array) $plugin_theme_hooks_files as $gv_hooks_filename ) { |
|
| 27 | +foreach ( (array)$plugin_theme_hooks_files as $gv_hooks_filename ) { |
|
| 28 | 28 | include $gv_hooks_filename; |
| 29 | 29 | } |
| 30 | 30 | \ No newline at end of file |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | function __construct() { |
| 23 | 23 | |
| 24 | 24 | $this->widget_id = 'poll'; |
| 25 | - $this->widget_description = __('Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
| 26 | - $this->widget_subtitle = sprintf( _x('Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
| 25 | + $this->widget_description = __( 'Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
| 26 | + $this->widget_subtitle = sprintf( _x( 'Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
| 27 | 27 | |
| 28 | 28 | $default_values = array( |
| 29 | 29 | 'header' => 1, |
@@ -32,27 +32,27 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | $settings = array( |
| 34 | 34 | 'percentages' => array( |
| 35 | - 'label' => __('Display Percentages', 'gravityview'), |
|
| 35 | + 'label' => __( 'Display Percentages', 'gravityview' ), |
|
| 36 | 36 | 'type' => 'checkbox', |
| 37 | 37 | 'value' => true, |
| 38 | 38 | 'tooltip' => __( 'Display results percentages as part of results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
| 39 | 39 | ), |
| 40 | 40 | 'counts' => array( |
| 41 | - 'label' => __('Display Counts', 'gravityview'), |
|
| 41 | + 'label' => __( 'Display Counts', 'gravityview' ), |
|
| 42 | 42 | 'type' => 'checkbox', |
| 43 | 43 | 'value' => true, |
| 44 | 44 | 'tooltip' => __( 'Display number of times each choice has been selected when displaying results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
| 45 | 45 | ), |
| 46 | 46 | 'style' => array( |
| 47 | 47 | 'type' => 'select', |
| 48 | - 'label' => __('Style', 'gravityview'), |
|
| 48 | + 'label' => __( 'Style', 'gravityview' ), |
|
| 49 | 49 | 'tooltip' => __( 'The Polls Add-On currently supports 4 built in styles: red, green, orange, blue. Defaults to "green".', 'gravityview' ), |
| 50 | 50 | 'value' => 'green', |
| 51 | 51 | 'choices' => array( |
| 52 | - 'green' => __('Green', 'gravityview'), |
|
| 53 | - 'blue' => __('Blue', 'gravityview'), |
|
| 54 | - 'red' => __('Red', 'gravityview'), |
|
| 55 | - 'orange' => __('Orange', 'gravityview'), |
|
| 52 | + 'green' => __( 'Green', 'gravityview' ), |
|
| 53 | + 'blue' => __( 'Blue', 'gravityview' ), |
|
| 54 | + 'red' => __( 'Red', 'gravityview' ), |
|
| 55 | + 'orange' => __( 'Orange', 'gravityview' ), |
|
| 56 | 56 | ), |
| 57 | 57 | ), |
| 58 | 58 | ); |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - parent::__construct( __( 'Poll Results', 'gravityview' ) , null, $default_values, $settings ); |
|
| 65 | + parent::__construct( __( 'Poll Results', 'gravityview' ), null, $default_values, $settings ); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -89,11 +89,11 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $GFPolls = GFPolls::get_instance(); |
| 91 | 91 | |
| 92 | - wp_enqueue_script('gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array('jquery'), $GFPolls->_version); |
|
| 92 | + wp_enqueue_script( 'gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array( 'jquery' ), $GFPolls->_version ); |
|
| 93 | 93 | |
| 94 | 94 | $GFPolls->localize_scripts(); |
| 95 | 95 | |
| 96 | - wp_enqueue_style('gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version); |
|
| 96 | + wp_enqueue_style( 'gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function pre_render_frontend() { |
| 105 | 105 | |
| 106 | - if( ! class_exists('GFPolls') ) { |
|
| 106 | + if ( ! class_exists( 'GFPolls' ) ) { |
|
| 107 | 107 | |
| 108 | 108 | gravityview()->log->error( 'Poll Widget not displayed; the Poll Addon is not loaded' ); |
| 109 | 109 | |
@@ -112,10 +112,10 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | $view = gravityview()->views->get(); |
| 114 | 114 | |
| 115 | - $poll_fields = array( $view->form->form['id'] => GFCommon::get_fields_by_type( $view->form, array( 'poll' ) ) ); |
|
| 115 | + $poll_fields = array( $view->form->form[ 'id' ] => GFCommon::get_fields_by_type( $view->form, array( 'poll' ) ) ); |
|
| 116 | 116 | |
| 117 | 117 | foreach ( $view->joins as $join ) { |
| 118 | - $poll_fields[ $join->join_on->form['id'] ] = GFCommon::get_fields_by_type( $join->join_on->form, array( 'poll' ) ); |
|
| 118 | + $poll_fields[ $join->join_on->form[ 'id' ] ] = GFCommon::get_fields_by_type( $join->join_on->form, array( 'poll' ) ); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | $poll_fields = array_filter( $poll_fields ); |
@@ -167,12 +167,12 @@ discard block |
||
| 167 | 167 | */ |
| 168 | 168 | public function render_frontend( $widget_args, $content = '', $context = '' ) { |
| 169 | 169 | |
| 170 | - if( ! $this->pre_render_frontend() ) { |
|
| 170 | + if ( ! $this->pre_render_frontend() ) { |
|
| 171 | 171 | return; |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | // Make sure the class is loaded in DataTables |
| 175 | - if( !class_exists( 'GFFormDisplay' ) ) { |
|
| 175 | + if ( ! class_exists( 'GFFormDisplay' ) ) { |
|
| 176 | 176 | include_once( GFCommon::get_base_path() . '/form_display.php' ); |
| 177 | 177 | } |
| 178 | 178 | |
@@ -180,14 +180,14 @@ discard block |
||
| 180 | 180 | |
| 181 | 181 | $settings = $this->get_frontend_settings( $widget_args ); |
| 182 | 182 | |
| 183 | - $percentages = empty( $settings['percentages'] ) ? 'false' : 'true'; |
|
| 183 | + $percentages = empty( $settings[ 'percentages' ] ) ? 'false' : 'true'; |
|
| 184 | 184 | |
| 185 | - $counts = empty( $settings['counts'] ) ? 'false' : 'true'; |
|
| 185 | + $counts = empty( $settings[ 'counts' ] ) ? 'false' : 'true'; |
|
| 186 | 186 | |
| 187 | - if( !empty( $settings['field'] ) ) { |
|
| 188 | - $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings['field'], $settings['style'], $percentages, $counts ); |
|
| 187 | + if ( ! empty( $settings[ 'field' ] ) ) { |
|
| 188 | + $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings[ 'field' ], $settings[ 'style' ], $percentages, $counts ); |
|
| 189 | 189 | } else { |
| 190 | - $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings['style'], $percentages, $counts ); |
|
| 190 | + $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings[ 'style' ], $percentages, $counts ); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | $gravityview_view = GravityView_View::getInstance(); |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | $gravityview_view->poll_settings = $settings; |
| 198 | 198 | $gravityview_view->poll_fields = $this->poll_fields; |
| 199 | 199 | |
| 200 | - $gravityview_view->render('widget', 'poll', false ); |
|
| 200 | + $gravityview_view->render( 'widget', 'poll', false ); |
|
| 201 | 201 | |
| 202 | 202 | unset( $gravityview_view->poll_merge_tag, $gravityview_view->poll_settings, $gravityview_view->poll_form, $gravityview_view->poll_fields ); |
| 203 | 203 | } |