jetpack_unauth_file_download_url, , absint( $file[file_id]

jetpack_unauth_file_download_url, , absint( $file[file_id]

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_unauth_file_download_url, , absint( $file[file_id]') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-field.php line 648
    			}
    
    			$file_name = $file['name'] ?? __( 'Attached file', 'jetpack-forms' );
    			$file_size = isset( $file['size'] ) ? size_format( $file['size'] ) : '';
    			$file_url  = apply_filters( 'jetpack_unauth_file_download_url', '', absint( $file['file_id'] ) );
    			$file_type = $file['type'] ?? '';
    
    			$file_items[] = $this->render_email_file_row( $file_name, $file_size, $file_url, $file_type );
    		}
    
    		if ( empty( $file_items ) ) {