外掛說明
Exposes file upload/attachments to the regular service mapping of Forms 3rdparty Integration.
From discussion at https://github.com/zaus/forms-3rdparty-integration/issues/40.
安裝方式
- Unzip, upload plugin folder to your plugins directory (
/wp-content/plugins/) - Make sure Forms 3rdparty Integration is installed and settings have been saved at least once.
- Activate plugin
- Choose how the files will be attached — either:
- as server path
- as url
- as base64-encoded bytes
- as raw contents
- Map to the desired file detail, where “[field]” is the corresponding input field name as you would normally map:
[field]— the filename[field]_attach— the transformed attachment from the previous step[field]_mime— the file’s actual mime-type[field]_size— the file size
常見問題集
- How do I perform the appropriate transforms in custom hooks
-
Using
F3i_Files_Base::Transform($value, $how)where$howis:
*path
*url
*base64
*raw - Gravity Forms input ids cause conflicts
-
Use the ‘label’ option to instead reference file uploads via the field label. You can also set the Advanced > Admin Field Label to use a shorter/non-display label than what users see on the form.
ex) If your upload field
input_5has a very long label “Choose one or more files blah blah blah” you would reference details likeChoose one or more files blah blah blah_attachunless you set an admin label like “FileUpload”, in which case you’d map toFileUpload_attach. You can also use this to attach to different upload fields across forms — normally they might not be able to share the input_id, but if you give them the same admin field label then you only need to map the service once to that admin label. - This only works for GF or CF7, what about Ninja Forms or some other form plugin?
-
Message the author about adding it, or:
1. extendF3i_Files_Baseand declare a methodget_filesthat returns an array of (input_field => filepath)
2. hook toF3i_Files_Base_registerand declare a new instance of your class(A note about Ninja Forms — file uploads are a paid addon, and the author doesn’t have a copy, so adding it wasn’t on the roadmap)
- It doesn’t work right…
-
Drop an issue at https://github.com/zaus/forms-3rdparty-files
使用者評論
這個外掛目前沒有任何使用者評論。
參與者及開發者
變更記錄
0.5.2
- added special GF option to use field labels
- some under-the-hood refactoring for clarity, reuse
0.5
- refactored support for GF single and multifile fields
- fix: collapsing ui
0.4.1
- fix #2 — GF validation errors removes filename, fallback to path basename
0.4
- including
$formin_get_fileshook - consolidating byte handling between ‘raw’ and ‘base64’
- no longer throws an exception if unable to get file, instead returns an error array
- fixed for GF 2.0.7.2 temp path issue #1
- new filter:
_get_pathused for GF bug
0.3
- refactored inheritance, ‘better’ form registration, include ninja forms
0.2
- added “meta” details
- breaking change – removed overwrite setting as unnecessary (due to compatible formatting)
- works with GF and CF7
0.1
IT HAS BEGUN