Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 67cf996

Browse files
committed
Updates links from old manual to new documentation
1 parent c8d336c commit 67cf996

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

doc/book/element/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`Zend\Form\Element\File` represents a form file input and
44
provides a default input specification with a type of
5-
[FileInput](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html)
5+
[FileInput](https://docs.zendframework.com/zend-inputfilter/file-input/)
66
(important for handling validators and filters correctly).
77
It is intended for use with the [FormFile](../helper/form-file.md) view helper.
88

doc/book/file-upload.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ The `File` element provides several automated features:
6161
- The form's `enctype` will automatically be set to `multipart/form-data` when
6262
the form's `prepare()` method is called.
6363
- The file element's default input specification will create the correct `Input`
64-
type: [`Zend\InputFilter\FileInput`](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html).
65-
- The `FileInput` will automatically prepend an [UploadFile validator](http://framework.zend.com/manual/current/en/modules/zend.validator.file.html#uploadfile)
64+
type: [`Zend\InputFilter\FileInput`](https://docs.zendframework.com/zend-inputfilter/file-input/).
65+
- The `FileInput` will automatically prepend an [UploadFile validator](https://docs.zendframework.com/zend-validator/validators/file/upload-file/)
6666
to securely validate that the file is actually an uploaded file, and to report
6767
any upload errors to the user.
6868

@@ -189,7 +189,7 @@ array(1) {
189189
> }
190190
> ```
191191
>
192-
> [`Zend\InputFilter\FileInput`](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html) expects the file data be in this
192+
> [`Zend\InputFilter\FileInput`](https://docs.zendframework.com/zend-inputfilter/file-input/) expects the file data be in this
193193
> re-mapped array format.
194194
>
195195
> Note: [PSR-7](http://www.php-fig.org/psr/psr-7/) also remaps the `$_FILES`
@@ -413,7 +413,7 @@ must use a server-side progress solution.
413413

414414
`Zend\ProgressBar\Upload` provides handlers that can give you the actual state
415415
of a file upload in progress. To use this feature, you need to choose one of the
416-
[Upload Progress Handlers](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html)
416+
[Upload Progress Handlers](https://docs.zendframework.com/zend-progressbar/upload/)
417417
(APC, uploadprogress, or Session) and ensure that your server setup has the
418418
appropriate extension or feature enabled.
419419

@@ -672,11 +672,11 @@ Related documentation:
672672

673673
- [Form File Element](element/file.md)
674674
- [Form File View Helper](helper/form-file.md)
675-
- [List of File Validators](http://framework.zend.com/manual/current/en/modules/zend.validator.file.html)
675+
- [List of File Validators](https://docs.zendframework.com/zend-validator/validators/file/intro/)
676676
- [List of File Filters](http://zendframework.github.io/zend-filter/file/)
677677
- [File Post-Redirect-Get Controller Plugin](https://docs.zendframework.com/zend-mvc-plugin-fileprg/)
678-
- [Zend\InputFilter\FileInput](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html)
679-
- [Upload Progress Handlers](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html)
678+
- [Zend\InputFilter\FileInput](https://docs.zendframework.com/zend-inputfilter/file-input/)
679+
- [Upload Progress Handlers](https://docs.zendframework.com/zend-progressbar/upload/)
680680
- [Upload Progress View Helpers](helper/upload-progress-helpers.md)
681681

682682
External resources and blog posts from the community:

doc/book/helper/form-file-apc-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
1313
> The view helper **must** be rendered *before* the file input in the form, or
1414
> upload progress will not work correctly.
1515
16-
Best used with the [Zend\ProgressBar\Upload\ApcProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#apc-progress-handler)
16+
Best used with the [Zend\ProgressBar\Upload\ApcProgress](https://docs.zendframework.com/zend-progressbar/upload/#apc-progress-handler)
1717
handler.
1818

1919
See the `apc.rfc1867` ini setting in the [APC Configuration](http://php.net/apc.configuration)

doc/book/helper/form-file-session-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
1212
> The view helper **must** be rendered *before* the file input in the form, or
1313
> upload progress will not work correctly.
1414
15-
Best used with the [Zend\ProgressBar\Upload\SessionProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#session-progress-handler)
15+
Best used with the [Zend\ProgressBar\Upload\SessionProgress](https://docs.zendframework.com/zend-progressbar/upload/#session-progress-handler)
1616
handler.
1717

1818
See the [Session Upload Progress](http://php.net/session.upload-progress)

doc/book/helper/form-file-upload-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `progress_key` will automatically be added.
1212
> The view helper **must** be rendered *before* the file input in the form, or
1313
> upload progress will not work correctly.
1414
15-
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#upload-progress-handler)
15+
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](https://docs.zendframework.com/zend-progressbar/upload/#upload-progress-handler)
1616
handler.
1717

1818
See the [PECL uploadprogress extension](http://pecl.php.net/package/uploadprogress)

doc/book/helper/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
zend-form comes with an initial set of zend-view helper classes for tasks such
44
as rendering forms, rendering a text input, rendering a selection box, etc.
55

6-
See the [view helpers documentation](http://framework.zend.com/manual/current/en/modules/zend.view.helpers.html)
6+
See the [view helpers documentation](https://docs.zendframework.com/zend-view/helpers/intro/)
77
for more information.

0 commit comments

Comments
 (0)