diff --git a/docs/book/v3/element/csrf.md b/docs/book/v3/element/csrf.md index 6f5e4be11..502b1835b 100644 --- a/docs/book/v3/element/csrf.md +++ b/docs/book/v3/element/csrf.md @@ -34,12 +34,14 @@ $form->add([ 'name' => 'csrf', 'options' => [ 'csrf_options' => [ - 'timeout' => 600, + 'timeout' => 600, // optional ], ], ]); ``` +All available options for the validator are listed in the [laminas-validator documentation](https://docs.laminas.dev/laminas-validator/validators/csrf/#supported-options). + > ### Multiple CSRF elements must be uniquely named > > If you are using more than one form on a page, and each contains its own CSRF diff --git a/docs/book/v3/file-upload.md b/docs/book/v3/file-upload.md index 96debf35a..5a9605912 100644 --- a/docs/book/v3/file-upload.md +++ b/docs/book/v3/file-upload.md @@ -738,8 +738,3 @@ Related documentation: - [Laminas\InputFilter\FileInput](https://docs.laminas.dev/laminas-inputfilter/file-input/) - [Upload Progress Handlers](https://docs.laminas.dev/laminas-progressbar/upload/) - [Upload Progress View Helpers](helper/upload-progress-helpers.md) - -External resources and blog posts from the community: - -- [LaminasFileUploadExamples](https://github.com/cgmartin/LaminasFileUploadExamples) : A - Laminas module with several file upload examples. diff --git a/docs/book/v3/form-creation/attributes-or-annotations.md b/docs/book/v3/form-creation/attributes-or-annotations.md index 1f5c08c5b..533ed96f2 100644 --- a/docs/book/v3/form-creation/attributes-or-annotations.md +++ b/docs/book/v3/form-creation/attributes-or-annotations.md @@ -257,7 +257,7 @@ optionally further `options` to pass to the constructor of the filter. as JSON. Additionally, you can use the `priority` argument to modify the order -of the filters in the [filter chain](../../laminas-filter/filter-chains/). +of the filters in the [filter chain](https://docs.laminas.dev/laminas-filter/filter-chains/). This annotation may be specified multiple times. @@ -453,7 +453,7 @@ optionally further `options` to pass to the constructor of the validator. as JSON. Additionally, you can use the `breakChainOnFailure` and the `priority` -argument to modify the [filter chain](../../laminas-validator/validator-chains/). +argument to modify the [validator chain](https://docs.laminas.dev/laminas-validator/validator-chains/). This annotation may be specified multiple times. diff --git a/mkdocs.yml b/mkdocs.yml index 301df5155..f6b92ab1c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -270,3 +270,4 @@ plugins: helper/form-file-session-progress.md: v3/helper/form-file-session-progress.md helper/form-file-upload-progress.md: v3/helper/form-file-upload-progress.md advanced.md: v3/advanced.md + application-integration/usage-in-a-laminas-mvc-application.md: v3/application-integration/usage-in-a-laminas-mvc-application.md