@@ -62,28 +62,28 @@ discard block |
||
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
65 | - * When on the Add/Edit View screen, suggest most popular articles related to that |
|
66 | - * |
|
65 | + * When on the Add/Edit View screen, suggest most popular articles related to that |
|
66 | + * |
|
67 | 67 | * @param array $localization_data Data to be passed to the Support Port JS |
68 | 68 | * |
69 | 69 | * @return array |
70 | 70 | */ |
71 | 71 | function suggest_support_articles( $localization_data = array() ) { |
72 | 72 | |
73 | - if( ! gravityview()->request->is_view() ) { |
|
74 | - return $localization_data; |
|
75 | - } |
|
73 | + if( ! gravityview()->request->is_view() ) { |
|
74 | + return $localization_data; |
|
75 | + } |
|
76 | 76 | |
77 | 77 | $localization_data['suggest'] = array( |
78 | - '57ef23539033602e61d4a560', |
|
79 | - '54c67bb9e4b0512429885513', |
|
80 | - '54c67bb9e4b0512429885512', |
|
81 | - '54c67bbbe4b07997ea3f3f6b', |
|
82 | - '54d1a33ae4b086c0c0964ce9', |
|
83 | - '57ef253c9033602e61d4a563', |
|
84 | - '552355bfe4b0221aadf2572b', |
|
85 | - '54c67bcde4b051242988553e', |
|
86 | - ); |
|
78 | + '57ef23539033602e61d4a560', |
|
79 | + '54c67bb9e4b0512429885513', |
|
80 | + '54c67bb9e4b0512429885512', |
|
81 | + '54c67bbbe4b07997ea3f3f6b', |
|
82 | + '54d1a33ae4b086c0c0964ce9', |
|
83 | + '57ef253c9033602e61d4a563', |
|
84 | + '552355bfe4b0221aadf2572b', |
|
85 | + '54c67bcde4b051242988553e', |
|
86 | + ); |
|
87 | 87 | |
88 | 88 | return $localization_data; |
89 | 89 | } |
@@ -174,11 +174,11 @@ discard block |
||
174 | 174 | |
175 | 175 | if( 'form_list' === GFForms::get_page() ) { |
176 | 176 | $priority = 790; |
177 | - } |
|
177 | + } |
|
178 | 178 | |
179 | 179 | if( empty( $connected_views ) ) { |
180 | 180 | |
181 | - $menu_items['gravityview'] = array( |
|
181 | + $menu_items['gravityview'] = array( |
|
182 | 182 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
183 | 183 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
184 | 184 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -209,14 +209,14 @@ discard block |
||
209 | 209 | // If there were no items added, then let's create the parent menu |
210 | 210 | if( $sub_menu_items ) { |
211 | 211 | |
212 | - $sub_menu_items[] = array( |
|
213 | - 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
|
214 | - 'link_class' => 'gv-create-view', |
|
215 | - 'icon' => '<i> + </i>', |
|
216 | - 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
|
217 | - 'url' => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ), |
|
218 | - 'capabilities' => array( 'edit_gravityviews' ), |
|
219 | - ); |
|
212 | + $sub_menu_items[] = array( |
|
213 | + 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
|
214 | + 'link_class' => 'gv-create-view', |
|
215 | + 'icon' => '<i> + </i>', |
|
216 | + 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
|
217 | + 'url' => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ), |
|
218 | + 'capabilities' => array( 'edit_gravityviews' ), |
|
219 | + ); |
|
220 | 220 | |
221 | 221 | |
222 | 222 | /** |
@@ -619,16 +619,16 @@ discard block |
||
619 | 619 | /** |
620 | 620 | * Render html for displaying available fields based on a Form ID |
621 | 621 | * |
622 | - * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action |
|
622 | + * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action |
|
623 | 623 | * |
624 | 624 | * @param int $form Gravity Forms Form ID (default: '') |
625 | 625 | * @param string $context (default: 'single') |
626 | - * |
|
626 | + * |
|
627 | 627 | * @return void |
628 | 628 | */ |
629 | 629 | function render_available_fields( $form = 0, $context = 'single' ) { |
630 | 630 | |
631 | - // Determine if form is a preset and convert it to an array with fields |
|
631 | + // Determine if form is a preset and convert it to an array with fields |
|
632 | 632 | $form = ( is_string( $form ) && preg_match( '/^preset_/', $form ) ) ? GravityView_Ajax::pre_get_form_fields( $form ) : $form; |
633 | 633 | |
634 | 634 | /** |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | |
641 | 641 | if ( ! is_array( $blacklist_field_types ) ) { |
642 | 642 | |
643 | - gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) ); |
|
643 | + gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) ); |
|
644 | 644 | |
645 | 645 | $blacklist_field_types = array(); |
646 | 646 | } |
@@ -778,12 +778,12 @@ discard block |
||
778 | 778 | /** |
779 | 779 | * @since 1.7.2 |
780 | 780 | */ |
781 | - 'other_entries' => array( |
|
782 | - 'label' => __('Other Entries', 'gravityview'), |
|
783 | - 'type' => 'other_entries', |
|
784 | - 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), |
|
785 | - ), |
|
786 | - ); |
|
781 | + 'other_entries' => array( |
|
782 | + 'label' => __('Other Entries', 'gravityview'), |
|
783 | + 'type' => 'other_entries', |
|
784 | + 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), |
|
785 | + ), |
|
786 | + ); |
|
787 | 787 | |
788 | 788 | if( 'single' !== $zone) { |
789 | 789 | |
@@ -955,9 +955,9 @@ discard block |
||
955 | 955 | |
956 | 956 | $joined_forms = gravityview_get_joined_forms( $post->ID ); |
957 | 957 | |
958 | - foreach ( $joined_forms as $form ) { |
|
959 | - $available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone ); |
|
960 | - } |
|
958 | + foreach ( $joined_forms as $form ) { |
|
959 | + $available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone ); |
|
960 | + } |
|
961 | 961 | } else { |
962 | 962 | $available_items[ $form ] = \GV\Widget::registered(); |
963 | 963 | } |
@@ -985,9 +985,9 @@ discard block |
||
985 | 985 | |
986 | 986 | if ( $form_id ) { |
987 | 987 | $original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ; |
988 | - } else { |
|
988 | + } else { |
|
989 | 989 | $original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ; |
990 | - } |
|
990 | + } |
|
991 | 991 | |
992 | 992 | if ( !$original_item ) { |
993 | 993 | gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) ); |
@@ -1039,7 +1039,7 @@ discard block |
||
1039 | 1039 | |
1040 | 1040 | /** |
1041 | 1041 | * Render the widget active areas |
1042 | - * @param string $template_id The current slug of the selected View template |
|
1042 | + * @param string $template_id The current slug of the selected View template |
|
1043 | 1043 | * @param string $zone Either 'header' or 'footer' |
1044 | 1044 | * @param string $post_id Current Post ID (view) |
1045 | 1045 | * @return string html |
@@ -1230,7 +1230,7 @@ discard block |
||
1230 | 1230 | } |
1231 | 1231 | |
1232 | 1232 | // Add the GV font (with the Astronaut) |
1233 | - wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version ); |
|
1233 | + wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version ); |
|
1234 | 1234 | wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version ); |
1235 | 1235 | |
1236 | 1236 | wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true ); |
@@ -1238,64 +1238,64 @@ discard block |
||
1238 | 1238 | if( GFForms::get_page() === 'form_list' ) { |
1239 | 1239 | wp_enqueue_style( 'gravityview_views_styles' ); |
1240 | 1240 | return; |
1241 | - } |
|
1241 | + } |
|
1242 | 1242 | |
1243 | 1243 | // Don't process any scripts below here if it's not a GravityView page. |
1244 | 1244 | if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
1245 | - return; |
|
1245 | + return; |
|
1246 | 1246 | } |
1247 | 1247 | |
1248 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
1249 | - wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version ); |
|
1250 | - |
|
1251 | - // Enqueue scripts |
|
1252 | - wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version ); |
|
1253 | - |
|
1254 | - wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1255 | - 'cookiepath' => COOKIEPATH, |
|
1256 | - 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1257 | - 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
|
1258 | - 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
|
1259 | - 'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ), |
|
1260 | - 'label_add_search_field' => __( 'Add Search Field', 'gravityview' ), |
|
1261 | - 'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ), |
|
1262 | - 'label_close' => __( 'Close', 'gravityview' ), |
|
1263 | - 'label_cancel' => __( 'Cancel', 'gravityview' ), |
|
1264 | - 'label_continue' => __( 'Continue', 'gravityview' ), |
|
1265 | - 'label_ok' => __( 'Ok', 'gravityview' ), |
|
1266 | - 'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ), |
|
1267 | - 'loading_text' => esc_html__( 'Loading…', 'gravityview' ), |
|
1268 | - 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
|
1269 | - 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
|
1270 | - 'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ), |
|
1271 | - )); |
|
1248 | + wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
1249 | + wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version ); |
|
1250 | + |
|
1251 | + // Enqueue scripts |
|
1252 | + wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version ); |
|
1253 | + |
|
1254 | + wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1255 | + 'cookiepath' => COOKIEPATH, |
|
1256 | + 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1257 | + 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
|
1258 | + 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
|
1259 | + 'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ), |
|
1260 | + 'label_add_search_field' => __( 'Add Search Field', 'gravityview' ), |
|
1261 | + 'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ), |
|
1262 | + 'label_close' => __( 'Close', 'gravityview' ), |
|
1263 | + 'label_cancel' => __( 'Cancel', 'gravityview' ), |
|
1264 | + 'label_continue' => __( 'Continue', 'gravityview' ), |
|
1265 | + 'label_ok' => __( 'Ok', 'gravityview' ), |
|
1266 | + 'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ), |
|
1267 | + 'loading_text' => esc_html__( 'Loading…', 'gravityview' ), |
|
1268 | + 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
|
1269 | + 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
|
1270 | + 'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ), |
|
1271 | + )); |
|
1272 | 1272 | |
1273 | 1273 | wp_enqueue_style( 'gravityview_views_styles' ); |
1274 | 1274 | |
1275 | - // Enqueue scripts needed for merge tags |
|
1276 | - self::enqueue_gravity_forms_scripts(); |
|
1275 | + // Enqueue scripts needed for merge tags |
|
1276 | + self::enqueue_gravity_forms_scripts(); |
|
1277 | 1277 | } |
1278 | 1278 | |
1279 | 1279 | /** |
1280 | 1280 | * Enqueue Gravity Forms scripts, needed for Merge Tags |
1281 | - * |
|
1282 | - * @since 1.0.5-beta |
|
1283 | - * |
|
1284 | - * @return void |
|
1281 | + * |
|
1282 | + * @since 1.0.5-beta |
|
1283 | + * |
|
1284 | + * @return void |
|
1285 | 1285 | */ |
1286 | 1286 | static function enqueue_gravity_forms_scripts() { |
1287 | 1287 | GFForms::register_scripts(); |
1288 | 1288 | |
1289 | 1289 | $scripts = array( |
1290 | - 'sack', |
|
1291 | - 'gform_gravityforms', |
|
1292 | - 'gform_forms', |
|
1293 | - 'gform_form_admin', |
|
1294 | - 'jquery-ui-autocomplete' |
|
1290 | + 'sack', |
|
1291 | + 'gform_gravityforms', |
|
1292 | + 'gform_forms', |
|
1293 | + 'gform_form_admin', |
|
1294 | + 'jquery-ui-autocomplete' |
|
1295 | 1295 | ); |
1296 | 1296 | |
1297 | 1297 | if ( wp_is_mobile() ) { |
1298 | - $scripts[] = 'jquery-touch-punch'; |
|
1298 | + $scripts[] = 'jquery-touch-punch'; |
|
1299 | 1299 | } |
1300 | 1300 | |
1301 | 1301 | wp_enqueue_script( $scripts ); |
@@ -10,42 +10,42 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | if ( ! defined( 'WPINC' ) ) { |
13 | - die; |
|
13 | + die; |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | |
17 | 17 | class GravityView_Edit_Entry_Admin { |
18 | 18 | |
19 | - protected $loader; |
|
19 | + protected $loader; |
|
20 | 20 | |
21 | - function __construct( GravityView_Edit_Entry $loader ) { |
|
22 | - $this->loader = $loader; |
|
23 | - } |
|
21 | + function __construct( GravityView_Edit_Entry $loader ) { |
|
22 | + $this->loader = $loader; |
|
23 | + } |
|
24 | 24 | |
25 | - function load() { |
|
25 | + function load() { |
|
26 | 26 | |
27 | - if( !is_admin() ) { |
|
28 | - return; |
|
29 | - } |
|
27 | + if( !is_admin() ) { |
|
28 | + return; |
|
29 | + } |
|
30 | 30 | |
31 | - // Add Edit Link as a default field, outside those set in the Gravity Form form |
|
32 | - add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 ); |
|
31 | + // Add Edit Link as a default field, outside those set in the Gravity Form form |
|
32 | + add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 ); |
|
33 | 33 | |
34 | - // For the Edit Entry Link, you don't want visible to all users. |
|
35 | - add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps' ), 10, 5 ); |
|
34 | + // For the Edit Entry Link, you don't want visible to all users. |
|
35 | + add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps' ), 10, 5 ); |
|
36 | 36 | |
37 | - // Modify the field options based on the name of the field type |
|
38 | - add_filter( 'gravityview_template_edit_link_options', array( $this, 'edit_link_field_options' ), 10, 5 ); |
|
37 | + // Modify the field options based on the name of the field type |
|
38 | + add_filter( 'gravityview_template_edit_link_options', array( $this, 'edit_link_field_options' ), 10, 5 ); |
|
39 | 39 | |
40 | - // add tooltips |
|
41 | - add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips') ); |
|
40 | + // add tooltips |
|
41 | + add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips') ); |
|
42 | 42 | |
43 | - // custom fields' options for zone EDIT |
|
44 | - add_filter( 'gravityview_template_field_options', array( $this, 'field_options' ), 10, 6 ); |
|
43 | + // custom fields' options for zone EDIT |
|
44 | + add_filter( 'gravityview_template_field_options', array( $this, 'field_options' ), 10, 6 ); |
|
45 | 45 | |
46 | - // Add Edit Entry settings to View Settings |
|
47 | - add_action( 'gravityview/metaboxes/edit_entry', array( $this, 'view_settings_metabox' ) ); |
|
48 | - } |
|
46 | + // Add Edit Entry settings to View Settings |
|
47 | + add_action( 'gravityview/metaboxes/edit_entry', array( $this, 'view_settings_metabox' ) ); |
|
48 | + } |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Render Edit Entry View metabox settings |
@@ -69,101 +69,101 @@ discard block |
||
69 | 69 | GravityView_Render_Settings::render_setting_row( 'edit_redirect_url', $current_settings ); |
70 | 70 | } |
71 | 71 | |
72 | - /** |
|
73 | - * Add Edit Link as a default field, outside those set in the Gravity Form form |
|
74 | - * @param array $entry_default_fields Existing fields |
|
75 | - * @param string|array $form form_ID or form object |
|
76 | - * @param string $zone Either 'single', 'directory', 'header', 'footer' |
|
77 | - */ |
|
78 | - function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
|
79 | - |
|
80 | - if( $zone !== 'edit' ) { |
|
81 | - |
|
82 | - $entry_default_fields['edit_link'] = array( |
|
83 | - 'label' => __('Edit Entry', 'gravityview'), |
|
84 | - 'type' => 'edit_link', |
|
85 | - 'desc' => __('A link to edit the entry. Visible based on View settings.', 'gravityview'), |
|
86 | - 'icon' => 'dashicons-welcome-write-blog', |
|
87 | - ); |
|
88 | - |
|
89 | - } |
|
90 | - |
|
91 | - return $entry_default_fields; |
|
92 | - } |
|
93 | - |
|
94 | - /** |
|
95 | - * Change wording for the Edit context to read Entry Creator |
|
96 | - * |
|
97 | - * @param array $visibility_caps Array of capabilities to display in field dropdown. |
|
98 | - * @param string $field_type Type of field options to render (`field` or `widget`) |
|
99 | - * @param string $template_id Table slug |
|
100 | - * @param float $field_id GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by` |
|
101 | - * @param string $context What context are we in? Example: `single` or `directory` |
|
102 | - * @param string $input_type (textarea, list, select, etc.) |
|
103 | - * @return array Array of field options with `label`, `value`, `type`, `default` keys |
|
104 | - */ |
|
105 | - function modify_visibility_caps( $visibility_caps = array(), $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
|
106 | - |
|
107 | - $caps = $visibility_caps; |
|
108 | - |
|
109 | - // If we're configuring fields in the edit context, we want a limited selection |
|
110 | - if( $context === 'edit' ) { |
|
111 | - |
|
112 | - // Remove other built-in caps. |
|
113 | - unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] ); |
|
114 | - |
|
115 | - $caps['read'] = _x('Entry Creator','User capability', 'gravityview'); |
|
116 | - } |
|
117 | - |
|
118 | - return $caps; |
|
119 | - } |
|
120 | - |
|
121 | - /** |
|
122 | - * Add "Edit Link Text" setting to the edit_link field settings |
|
123 | - * |
|
124 | - * @param array $field_options |
|
125 | - * @param string $template_id |
|
126 | - * @param string $field_id |
|
127 | - * @param string $context |
|
128 | - * @param string $input_type |
|
129 | - * |
|
130 | - * @return array $field_options, with "Edit Link Text" field option |
|
131 | - */ |
|
132 | - function edit_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
|
133 | - |
|
134 | - // Always a link, never a filter |
|
135 | - unset( $field_options['show_as_link'], $field_options['search_filter'] ); |
|
136 | - |
|
137 | - // Edit Entry link should only appear to visitors capable of editing entries |
|
138 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
139 | - |
|
140 | - $add_option['edit_link'] = array( |
|
141 | - 'type' => 'text', |
|
142 | - 'label' => __( 'Edit Link Text', 'gravityview' ), |
|
143 | - 'desc' => NULL, |
|
144 | - 'value' => __('Edit Entry', 'gravityview'), |
|
145 | - 'merge_tags' => true, |
|
146 | - ); |
|
147 | - |
|
148 | - return array_merge( $add_option, $field_options ); |
|
149 | - } |
|
150 | - |
|
151 | - /** |
|
152 | - * Add tooltips |
|
153 | - * @param array $tooltips Existing tooltips |
|
154 | - * @return array Modified tooltips |
|
155 | - */ |
|
156 | - function tooltips( $tooltips ) { |
|
157 | - |
|
158 | - $return = $tooltips; |
|
159 | - |
|
160 | - $return['allow_edit_cap'] = array( |
|
161 | - 'title' => __('Limiting Edit Access', 'gravityview'), |
|
162 | - 'value' => __('Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview'), |
|
163 | - ); |
|
164 | - |
|
165 | - return $return; |
|
166 | - } |
|
72 | + /** |
|
73 | + * Add Edit Link as a default field, outside those set in the Gravity Form form |
|
74 | + * @param array $entry_default_fields Existing fields |
|
75 | + * @param string|array $form form_ID or form object |
|
76 | + * @param string $zone Either 'single', 'directory', 'header', 'footer' |
|
77 | + */ |
|
78 | + function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
|
79 | + |
|
80 | + if( $zone !== 'edit' ) { |
|
81 | + |
|
82 | + $entry_default_fields['edit_link'] = array( |
|
83 | + 'label' => __('Edit Entry', 'gravityview'), |
|
84 | + 'type' => 'edit_link', |
|
85 | + 'desc' => __('A link to edit the entry. Visible based on View settings.', 'gravityview'), |
|
86 | + 'icon' => 'dashicons-welcome-write-blog', |
|
87 | + ); |
|
88 | + |
|
89 | + } |
|
90 | + |
|
91 | + return $entry_default_fields; |
|
92 | + } |
|
93 | + |
|
94 | + /** |
|
95 | + * Change wording for the Edit context to read Entry Creator |
|
96 | + * |
|
97 | + * @param array $visibility_caps Array of capabilities to display in field dropdown. |
|
98 | + * @param string $field_type Type of field options to render (`field` or `widget`) |
|
99 | + * @param string $template_id Table slug |
|
100 | + * @param float $field_id GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by` |
|
101 | + * @param string $context What context are we in? Example: `single` or `directory` |
|
102 | + * @param string $input_type (textarea, list, select, etc.) |
|
103 | + * @return array Array of field options with `label`, `value`, `type`, `default` keys |
|
104 | + */ |
|
105 | + function modify_visibility_caps( $visibility_caps = array(), $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
|
106 | + |
|
107 | + $caps = $visibility_caps; |
|
108 | + |
|
109 | + // If we're configuring fields in the edit context, we want a limited selection |
|
110 | + if( $context === 'edit' ) { |
|
111 | + |
|
112 | + // Remove other built-in caps. |
|
113 | + unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] ); |
|
114 | + |
|
115 | + $caps['read'] = _x('Entry Creator','User capability', 'gravityview'); |
|
116 | + } |
|
117 | + |
|
118 | + return $caps; |
|
119 | + } |
|
120 | + |
|
121 | + /** |
|
122 | + * Add "Edit Link Text" setting to the edit_link field settings |
|
123 | + * |
|
124 | + * @param array $field_options |
|
125 | + * @param string $template_id |
|
126 | + * @param string $field_id |
|
127 | + * @param string $context |
|
128 | + * @param string $input_type |
|
129 | + * |
|
130 | + * @return array $field_options, with "Edit Link Text" field option |
|
131 | + */ |
|
132 | + function edit_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
|
133 | + |
|
134 | + // Always a link, never a filter |
|
135 | + unset( $field_options['show_as_link'], $field_options['search_filter'] ); |
|
136 | + |
|
137 | + // Edit Entry link should only appear to visitors capable of editing entries |
|
138 | + unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
139 | + |
|
140 | + $add_option['edit_link'] = array( |
|
141 | + 'type' => 'text', |
|
142 | + 'label' => __( 'Edit Link Text', 'gravityview' ), |
|
143 | + 'desc' => NULL, |
|
144 | + 'value' => __('Edit Entry', 'gravityview'), |
|
145 | + 'merge_tags' => true, |
|
146 | + ); |
|
147 | + |
|
148 | + return array_merge( $add_option, $field_options ); |
|
149 | + } |
|
150 | + |
|
151 | + /** |
|
152 | + * Add tooltips |
|
153 | + * @param array $tooltips Existing tooltips |
|
154 | + * @return array Modified tooltips |
|
155 | + */ |
|
156 | + function tooltips( $tooltips ) { |
|
157 | + |
|
158 | + $return = $tooltips; |
|
159 | + |
|
160 | + $return['allow_edit_cap'] = array( |
|
161 | + 'title' => __('Limiting Edit Access', 'gravityview'), |
|
162 | + 'value' => __('Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview'), |
|
163 | + ); |
|
164 | + |
|
165 | + return $return; |
|
166 | + } |
|
167 | 167 | |
168 | 168 | /** |
169 | 169 | * Add "Edit Link Text" setting to the edit_link field settings |
@@ -179,37 +179,37 @@ discard block |
||
179 | 179 | */ |
180 | 180 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
181 | 181 | |
182 | - // We only want to modify the settings for the edit context |
|
183 | - if( 'edit' !== $context ) { |
|
184 | - |
|
185 | - /** |
|
186 | - * @since 1.8.4 |
|
187 | - */ |
|
188 | - $field_options['new_window'] = array( |
|
189 | - 'type' => 'checkbox', |
|
190 | - 'label' => __( 'Open link in a new tab or window?', 'gravityview' ), |
|
191 | - 'value' => false, |
|
192 | - ); |
|
193 | - |
|
194 | - return $field_options; |
|
195 | - } |
|
196 | - |
|
197 | - // Entry field is only for logged in users |
|
198 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
199 | - |
|
200 | - $add_options = array( |
|
201 | - 'allow_edit_cap' => array( |
|
202 | - 'type' => 'select', |
|
203 | - 'label' => __( 'Make field editable to:', 'gravityview' ), |
|
204 | - 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
|
205 | - 'tooltip' => 'allow_edit_cap', |
|
206 | - 'class' => 'widefat', |
|
207 | - 'value' => 'read', // Default: entry creator |
|
208 | - ), |
|
209 | - ); |
|
210 | - |
|
211 | - return array_merge( $field_options, $add_options ); |
|
212 | - } |
|
182 | + // We only want to modify the settings for the edit context |
|
183 | + if( 'edit' !== $context ) { |
|
184 | + |
|
185 | + /** |
|
186 | + * @since 1.8.4 |
|
187 | + */ |
|
188 | + $field_options['new_window'] = array( |
|
189 | + 'type' => 'checkbox', |
|
190 | + 'label' => __( 'Open link in a new tab or window?', 'gravityview' ), |
|
191 | + 'value' => false, |
|
192 | + ); |
|
193 | + |
|
194 | + return $field_options; |
|
195 | + } |
|
196 | + |
|
197 | + // Entry field is only for logged in users |
|
198 | + unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
199 | + |
|
200 | + $add_options = array( |
|
201 | + 'allow_edit_cap' => array( |
|
202 | + 'type' => 'select', |
|
203 | + 'label' => __( 'Make field editable to:', 'gravityview' ), |
|
204 | + 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
|
205 | + 'tooltip' => 'allow_edit_cap', |
|
206 | + 'class' => 'widefat', |
|
207 | + 'value' => 'read', // Default: entry creator |
|
208 | + ), |
|
209 | + ); |
|
210 | + |
|
211 | + return array_merge( $field_options, $add_options ); |
|
212 | + } |
|
213 | 213 | |
214 | 214 | |
215 | 215 | } // end class |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * |
271 | 271 | * Verify permissions. Check expected $_POST. Parse args, then send to process_delete_notes |
272 | 272 | * |
273 | - * @since 1.17 |
|
273 | + * @since 1.17 |
|
274 | 274 | * |
275 | 275 | * @see process_delete_notes |
276 | 276 | * |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | 'subject-label' => __( 'Subject', 'gravityview' ), |
424 | 424 | 'subject' => __( 'Email subject', 'gravityview' ), |
425 | 425 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
426 | - 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
426 | + 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
427 | 427 | 'also-email' => __( 'Also email this note to', 'gravityview' ), |
428 | 428 | 'error-add-note' => __( 'There was an error adding the note.', 'gravityview' ), |
429 | 429 | 'error-invalid' => __( 'The request was invalid. Refresh the page and try again.', 'gravityview' ), |
@@ -493,11 +493,11 @@ discard block |
||
493 | 493 | |
494 | 494 | if ( $context instanceof \GV\Template_Context ) { |
495 | 495 | |
496 | - ob_start(); |
|
497 | - $context->template->get_template_part( 'note', 'detail', true ); |
|
498 | - $note_detail_html = ob_get_clean(); |
|
496 | + ob_start(); |
|
497 | + $context->template->get_template_part( 'note', 'detail', true ); |
|
498 | + $note_detail_html = ob_get_clean(); |
|
499 | 499 | |
500 | - ob_start(); |
|
500 | + ob_start(); |
|
501 | 501 | $context->template->get_template_part( 'note', $note_row_template, true ); |
502 | 502 | $note_row = ob_get_clean(); |
503 | 503 | } else { |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | 'gv-note-to-custom' => '', |
757 | 757 | 'gv-note-subject' => '', |
758 | 758 | 'gv-note-content' => '', |
759 | - 'current-url' => '', |
|
759 | + 'current-url' => '', |
|
760 | 760 | ); |
761 | 761 | |
762 | 762 | $current_user = wp_get_current_user(); |
@@ -808,9 +808,9 @@ discard block |
||
808 | 808 | $message .= $this->get_email_footer( $email_footer, $is_html, $email_data ); |
809 | 809 | |
810 | 810 | /** |
811 | - * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
811 | + * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
812 | 812 | * @since 1.18 |
813 | - * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
813 | + * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
814 | 814 | */ |
815 | 815 | $wpautop_email = apply_filters( 'gravityview/field/notes/wpautop_email', true ); |
816 | 816 | |
@@ -830,12 +830,12 @@ discard block |
||
830 | 830 | } |
831 | 831 | |
832 | 832 | /** |
833 | - * Get the footer for Entry Note emails |
|
834 | - * |
|
835 | - * `{url}` is replaced by the URL of the page where the note form was embedded |
|
836 | - * |
|
837 | - * @since 1.18 |
|
838 | - * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
833 | + * Get the footer for Entry Note emails |
|
834 | + * |
|
835 | + * `{url}` is replaced by the URL of the page where the note form was embedded |
|
836 | + * |
|
837 | + * @since 1.18 |
|
838 | + * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
839 | 839 | * |
840 | 840 | * @param string $email_footer The message footer value |
841 | 841 | * @param bool $is_html True: Email is being sent as HTML; False: sent as text |
@@ -844,10 +844,10 @@ discard block |
||
844 | 844 | */ |
845 | 845 | private function get_email_footer( $email_footer = '', $is_html = true, $email_data = array() ) { |
846 | 846 | |
847 | - $output = ''; |
|
847 | + $output = ''; |
|
848 | 848 | |
849 | 849 | if( ! empty( $email_footer ) ) { |
850 | - $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
850 | + $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
851 | 851 | $url = html_entity_decode( $url ); |
852 | 852 | $url = site_url( $url ); |
853 | 853 |