From 35c89aaff0b9c221bf6a8ede5c84fef96d88c019 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 19:12:52 -0600 Subject: [PATCH 001/191] reverting back to true/false --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 1708e6d0d..7da7ab99c 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -25,7 +25,7 @@ jobs: if [[ "${{ github.event_name }}" == "push" || ( "${{ github.event_name }}" == "create" && "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX ) ]]; then RESULT="true" else - RESULT="true" + RESULT="false" fi echo "result=$RESULT" >> $GITHUB_OUTPUT From 3961e8814a7ebfade3434078389697eb1f4437e5 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 19:14:00 -0600 Subject: [PATCH 002/191] debugging code --- .github/workflows/deploy-documents.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 7da7ab99c..a9381ac41 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -29,6 +29,7 @@ jobs: fi echo "result=$RESULT" >> $GITHUB_OUTPUT + echo "Deploy documents: $RESULT" publish: runs-on: ubuntu-latest From 555543ba7609c5b095a3bf639408c371e3e76605 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 19:14:37 -0600 Subject: [PATCH 003/191] correcting variable --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index a9381ac41..e2e9856e4 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -34,7 +34,7 @@ jobs: publish: runs-on: ubuntu-latest needs: pre-publish - if: needs.publish-determination.outputs.result == 'true' + if: needs.pre-publish.outputs.result == 'true' steps: - name: Checkout repository From 1d20337041cf09cd2c0db9e9b583a2f2c679dab2 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:00:32 -0600 Subject: [PATCH 004/191] again correcting version --- .github/workflows/deploy-documents.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index e2e9856e4..121cd4921 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -55,12 +55,13 @@ jobs: - name: Determine versioning parameters id: determine-versioning - run: echo "data={"version":"5.4.0", "alias"="latest"}" >> $GITHUB_OUTPUT + run: echo "data={"version":"5.4", "alias"="latest"}" >> $GITHUB_OUTPUT - name: Deploy if: fromJson(steps.determine-versioning.outputs.data).version != null run: | - # Publishing implies creating a git commit on the gh-pages branch, we let @ArduinoBot own these commits. + # Publishing implies creating a git commit on the production branch, + # we let @phalconbot own these commits. git config --global user.email "deploy@phalcon.io" git config --global user.name "Phalcon Team Deploy Bot" git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production From 06a8e86cf8a39f39c6f4502e2777963c2f893947 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:02:15 -0600 Subject: [PATCH 005/191] correcting json set --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 121cd4921..af507c5d6 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -55,7 +55,7 @@ jobs: - name: Determine versioning parameters id: determine-versioning - run: echo "data={"version":"5.4", "alias"="latest"}" >> $GITHUB_OUTPUT + run: echo "data={"version":"5.4", "alias":"latest"}" >> $GITHUB_OUTPUT - name: Deploy if: fromJson(steps.determine-versioning.outputs.data).version != null From 1b88bf6484430ab492ad98957104954a2ee656b5 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:04:17 -0600 Subject: [PATCH 006/191] correcting escape chars in json --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index af507c5d6..a06ed8c64 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -55,7 +55,7 @@ jobs: - name: Determine versioning parameters id: determine-versioning - run: echo "data={"version":"5.4", "alias":"latest"}" >> $GITHUB_OUTPUT + run: echo 'data={"version":"5.4", "alias":"latest"}' >> $GITHUB_OUTPUT - name: Deploy if: fromJson(steps.determine-versioning.outputs.data).version != null From 48a1258be48d0eb3e37d8dcb063c798763a12503 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:06:05 -0600 Subject: [PATCH 007/191] correcting mike command --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index a06ed8c64..cad0d68e3 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -65,7 +65,7 @@ jobs: git config --global user.email "deploy@phalcon.io" git config --global user.name "Phalcon Team Deploy Bot" git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production - poetry run mike deploy \ + mike deploy \ --update-aliases \ --push \ --remote origin \ From 988e3a28649ece0cccdcc1579e4d9e578385498b Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:14:59 -0600 Subject: [PATCH 008/191] trying deploy as me --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index cad0d68e3..2145dd06a 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -62,7 +62,7 @@ jobs: run: | # Publishing implies creating a git commit on the production branch, # we let @phalconbot own these commits. - git config --global user.email "deploy@phalcon.io" + git config --global user.email "nikos@niden.net" git config --global user.name "Phalcon Team Deploy Bot" git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production mike deploy \ From 50a2bd55361758f086fa388397e42818dad082fa Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:18:53 -0600 Subject: [PATCH 009/191] changing the gh user --- .github/workflows/deploy-documents.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 2145dd06a..5d9ceabcd 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -62,8 +62,8 @@ jobs: run: | # Publishing implies creating a git commit on the production branch, # we let @phalconbot own these commits. - git config --global user.email "nikos@niden.net" - git config --global user.name "Phalcon Team Deploy Bot" + git config user.name github-actions + git config user.email github-actions@github.com git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production mike deploy \ --update-aliases \ From 0b62994311342108cdc9455511de49f76cd7d3f4 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:26:27 -0600 Subject: [PATCH 010/191] trying to commit as me again --- .github/workflows/deploy-documents.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 5d9ceabcd..a7923a7a9 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -62,8 +62,8 @@ jobs: run: | # Publishing implies creating a git commit on the production branch, # we let @phalconbot own these commits. - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name niden + git config user.email nikos@niden.net git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production mike deploy \ --update-aliases \ From d1b6a65085def4dc3fa0722aaa7b7fd3f36036e1 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 16 Dec 2023 20:29:51 -0600 Subject: [PATCH 011/191] changing branch name --- .github/workflows/deploy-documents.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index a7923a7a9..8d3357e52 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -64,7 +64,7 @@ jobs: # we let @phalconbot own these commits. git config user.name niden git config user.email nikos@niden.net - git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production + git fetch --no-tags --prune --depth=1 origin +refs/heads/gh-pages:refs/remotes/origin/gh-pages mike deploy \ --update-aliases \ --push \ From b3566be72957eccf276a89fba2c915b5f53e66f4 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sun, 17 Dec 2023 08:32:34 -0600 Subject: [PATCH 012/191] corrections to response/cookies url --- docs/response.md | 4 ++-- mkdocs.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/response.md b/docs/response.md index 625f7435b..00972eea1 100644 --- a/docs/response.md +++ b/docs/response.md @@ -682,7 +682,7 @@ $eTag = sha1($mostRecentDate); $response->setHeader('E-Tag', $eTag); ``` -### `304` +### Not Modified - `304` Generating a `not-modified` response also helps with caching, by instructing the browser that the contents have not been modified, and therefore the locally cached copy of the data on the browser should be used. @@ -719,7 +719,7 @@ class PostsController extends Controller return $this ->response ->setStatusCode(404, 'Not Found') - ->setContent("Sorry, the page doesn't exist") + ->setContent("Sorry, the page does not exist") ->send(); } } diff --git a/mkdocs.yml b/mkdocs.yml index 23a50637e..181c9ba91 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -217,12 +217,12 @@ nav: - Cache: cache.md - Config: config.md - Escaper: html-escaper.md + - Loader: autoload.md + - Logger: logger.md - HTTP: - - Cookies: response.md#cookies + - Cookies: response/#cookies - Request: request.md - Response: response.md - - Loader: autoload.md - - Logger: logger.md - i18n: - Internationalization: i18n.md - Translate: translate.md From e74feb1a4cbb7d14d48ade73cae688e302f8cdcf Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 15:22:52 -0600 Subject: [PATCH 013/191] updating latest version --- .github/workflows/deploy-documents.yml | 31 ++++++++++++++++++-------- VERSION | 1 + 2 files changed, 23 insertions(+), 9 deletions(-) create mode 100644 VERSION diff --git a/.github/workflows/deploy-documents.yml b/.github/workflows/deploy-documents.yml index 8d3357e52..bdda734c2 100644 --- a/.github/workflows/deploy-documents.yml +++ b/.github/workflows/deploy-documents.yml @@ -50,24 +50,37 @@ jobs: python -m pip install --upgrade pip python -m pip install -r requirements.txt - - name: Create all generated documentation content - run: mkdocs build - + # - name: Create all generated documentation content + # run: mkdocs build + # - name: Determine versioning parameters id: determine-versioning - run: echo 'data={"version":"5.4", "alias":"latest"}' >> $GITHUB_OUTPUT + run: | + # Read the first line from the VERSION file + LINE=$(head -n 1 ./VERSION) + + # Extract version and alias using parameter expansion + VERSION="${LINE%%|*}" + ALIAS="${LINE#*|}" + + # Print the extracted values for verification + echo "Version: $VERSION" + echo "Alias: $ALIAS" + + echo "PH_DOCS_VERSION=$VERSION" >> $GITHUB_ENV + echo "PH_DOCS_ALIAS=$ALIAS" >> $GITHUB_ENV - name: Deploy - if: fromJson(steps.determine-versioning.outputs.data).version != null + if: ${{ env.PH_DOCS_VERSION }} != null run: | # Publishing implies creating a git commit on the production branch, # we let @phalconbot own these commits. git config user.name niden git config user.email nikos@niden.net - git fetch --no-tags --prune --depth=1 origin +refs/heads/gh-pages:refs/remotes/origin/gh-pages + git fetch --no-tags --prune --depth=1 origin +refs/heads/production:refs/remotes/origin/production mike deploy \ --update-aliases \ + --branch production \ --push \ - --remote origin \ - ${{ fromJson(steps.determine-versioning.outputs.data).version }} \ - ${{ fromJson(steps.determine-versioning.outputs.data).alias }} + ${{ env.PH_DOCS_VERSION }} \ + ${{ env.PH_DOCS_ALIAS }} diff --git a/VERSION b/VERSION new file mode 100644 index 000000000..5c803c742 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +5.5|latest From b35152c8ef24ac91a9ef36b37f613e35fd5fccc0 Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 15:25:16 -0600 Subject: [PATCH 014/191] minor change --- docs/testing-environment.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/testing-environment.md b/docs/testing-environment.md index c9c796d29..3f00eca1e 100644 --- a/docs/testing-environment.md +++ b/docs/testing-environment.md @@ -30,6 +30,7 @@ git clone git@github.com:niden/cphalcon ## Build the environment Once you are in `cphalcon` folder (or wherever you cloned the repository), you will need to build the containers + ```bash docker compose build ``` From fc674be1e5991331a255a50ee52768ebd9e7f17f Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 18:15:51 -0600 Subject: [PATCH 015/191] added include plugin --- mkdocs.yml | 3 ++- requirements.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 181c9ba91..dae76f7d4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -17,7 +17,7 @@ copyright: Copyright © 2012 - present Phalcon Team # Configuration theme: name: material - # custom_dir: material/overrides + custom_dir: overrides features: - announce.dismiss - content.action.edit @@ -71,6 +71,7 @@ theme: # Plugins plugins: + - include - search: separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])' - minify: diff --git a/requirements.txt b/requirements.txt index 98deb3960..3f3461281 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ mkdocs +mkdocs-include mkdocs-material mkdocs-material-extensions mkdocs-minify-plugin From 6e8040a7fd4cb2ed6d0cc6841a3acbaa41bb9221 Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 22:18:23 -0600 Subject: [PATCH 016/191] cosmetic changes --- docs/api/phalcon_acl.md | 49 +++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 9 deletions(-) diff --git a/docs/api/phalcon_acl.md b/docs/api/phalcon_acl.md index f7796d953..36549865b 100644 --- a/docs/api/phalcon_acl.md +++ b/docs/api/phalcon_acl.md @@ -118,17 +118,29 @@ Sets the default access level (Phalcon\Acl\Enum::ALLOW or Phalcon\Acl\Enum::DENY -

Interface Phalcon\Acl\Adapter\AdapterInterface

+## Acl\Adapter\AdapterInterface [Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Adapter/AdapterInterface.zep) -| Namespace | Phalcon\Acl\Adapter | -| Uses | Phalcon\Acl\ComponentInterface, Phalcon\Acl\RoleInterface | +- __Namespace__ + + - `Phalcon\Acl\Adapter` + +- __Uses__ + + - `Phalcon\Acl\ComponentInterface` + - `Phalcon\Acl\RoleInterface` + +- __Extends__ + + +- __Implements__ + Interface for Phalcon\Acl adapters -## Methods +### Methods ```php public function addComponent( mixed $componentValue, mixed $accessList ): bool; @@ -262,14 +274,33 @@ accessKey - -

Class Phalcon\Acl\Adapter\Memory

+## Acl\Adapter\Memory [Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Adapter/Memory.zep) -| Namespace | Phalcon\Acl\Adapter | -| Uses | Phalcon\Acl\Enum, Phalcon\Acl\Role, Phalcon\Acl\RoleInterface, Phalcon\Acl\Component, Phalcon\Acl\Exception, Phalcon\Acl\RoleAwareInterface, Phalcon\Acl\ComponentAwareInterface, Phalcon\Acl\ComponentInterface, ReflectionClass, ReflectionFunction | -| Extends | AbstractAdapter | +- __Namespace__ + + - `Phalcon\Acl\Adapter` + +- __Uses__ + + - `Phalcon\Acl\Component` + - `Phalcon\Acl\ComponentAwareInterface` + - `Phalcon\Acl\ComponentInterface` + - `Phalcon\Acl\Enum` + - `Phalcon\Acl\Exception` + - `Phalcon\Acl\Role` + - `Phalcon\Acl\RoleInterface` + - `Phalcon\Acl\RoleAwareInterface` + - `ReflectionClass` + - `ReflectionFunction` + +- __Extends__ + + `AbstractAdapter` + +- __Implements__ + Manages ACL lists in memory From 4e73da4329be86a17ccd34f47448f60c3981533f Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 22:21:52 -0600 Subject: [PATCH 017/191] committing overrides folder --- overrides/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 overrides/.gitkeep diff --git a/overrides/.gitkeep b/overrides/.gitkeep new file mode 100644 index 000000000..e69de29bb From 1a86a69315709b40a318889afc20da38c2135bae Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 22:25:57 -0600 Subject: [PATCH 018/191] trying api index at the top --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index dae76f7d4..dcbe0e38d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -168,13 +168,13 @@ nav: - Use case: use-case.md - Performance: performance.md - Core: + - API Index: api/index.md - Application: application.md - Micro: application-micro.md - CLI: application-cli.md - DI Container: di.md - MVC: mvc.md - Namespaces: namespaces.md - - API Index: api/index.md - Database: - Layer: db-layer.md - PHQL: db-phql.md From 7727879b1344931609b8105e1e0a837a12734582 Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 22:29:43 -0600 Subject: [PATCH 019/191] reverting - api index at the end --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index dcbe0e38d..dae76f7d4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -168,13 +168,13 @@ nav: - Use case: use-case.md - Performance: performance.md - Core: - - API Index: api/index.md - Application: application.md - Micro: application-micro.md - CLI: application-cli.md - DI Container: di.md - MVC: mvc.md - Namespaces: namespaces.md + - API Index: api/index.md - Database: - Layer: db-layer.md - PHQL: db-phql.md From d12fe8b6f60d940632ef3232508bdc76a59cf247 Mon Sep 17 00:00:00 2001 From: niden Date: Mon, 18 Dec 2023 22:32:13 -0600 Subject: [PATCH 020/191] version for github; adjustments to api/acl --- docs/api/phalcon_acl.md | 32 ++---- docs/api/phalcon_annotations.md | 24 ++--- docs/api/phalcon_application.md | 4 +- docs/api/phalcon_assets.md | 28 +++--- docs/api/phalcon_autoload.md | 4 +- docs/api/phalcon_cache.md | 28 +++--- docs/api/phalcon_cli.md | 24 ++--- docs/api/phalcon_config.md | 18 ++-- docs/api/phalcon_datamapper.md | 42 ++++---- docs/api/phalcon_db.md | 52 +++++----- docs/api/phalcon_di.md | 28 +++--- docs/api/phalcon_dispatcher.md | 6 +- docs/api/phalcon_domain.md | 12 +-- docs/api/phalcon_encryption.md | 60 ++++++------ docs/api/phalcon_events.md | 14 +-- docs/api/phalcon_factory.md | 6 +- docs/api/phalcon_filter.md | 132 ++++++++++++------------- docs/api/phalcon_flash.md | 10 +- docs/api/phalcon_forms.md | 34 +++---- docs/api/phalcon_html.md | 134 +++++++++++++------------- docs/api/phalcon_http.md | 34 +++---- docs/api/phalcon_image.md | 14 +-- docs/api/phalcon_logger.md | 34 +++---- docs/api/phalcon_messages.md | 8 +- docs/api/phalcon_mvc.md | 166 ++++++++++++++++---------------- docs/api/phalcon_paginator.md | 18 ++-- docs/api/phalcon_session.md | 20 ++-- docs/api/phalcon_storage.md | 54 +++++------ docs/api/phalcon_support.md | 146 ++++++++++++++-------------- docs/api/phalcon_tag.md | 6 +- docs/api/phalcon_translate.md | 22 ++--- 31 files changed, 601 insertions(+), 613 deletions(-) diff --git a/docs/api/phalcon_acl.md b/docs/api/phalcon_acl.md index 36549865b..6dabb19c3 100644 --- a/docs/api/phalcon_acl.md +++ b/docs/api/phalcon_acl.md @@ -7,18 +7,6 @@ hide: All classes are prefixed with `Phalcon` -* [Phalcon\Acl\Adapter\AbstractAdapter](#acl-adapter-abstractadapter) -* [Phalcon\Acl\Adapter\AdapterInterface](#acl-adapter-adapterinterface) -* [Phalcon\Acl\Adapter\Memory](#acl-adapter-memory) -* [Phalcon\Acl\Component](#acl-component) -* [Phalcon\Acl\ComponentAwareInterface](#acl-componentawareinterface) -* [Phalcon\Acl\ComponentInterface](#acl-componentinterface) -* [Phalcon\Acl\Enum](#acl-enum) -* [Phalcon\Acl\Exception](#acl-exception) -* [Phalcon\Acl\Role](#acl-role) -* [Phalcon\Acl\RoleAwareInterface](#acl-roleawareinterface) -* [Phalcon\Acl\RoleInterface](#acl-roleinterface) - ## Acl\Adapter\AbstractAdapter - __Namespace__ @@ -120,7 +108,7 @@ Sets the default access level (Phalcon\Acl\Enum::ALLOW or Phalcon\Acl\Enum::DENY ## Acl\Adapter\AdapterInterface -[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Adapter/AdapterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Adapter/AdapterInterface.zep) - __Namespace__ @@ -276,7 +264,7 @@ accessKey ## Acl\Adapter\Memory -[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Adapter/Memory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Adapter/Memory.zep) - __Namespace__ @@ -652,7 +640,7 @@ accessKey

Class Phalcon\Acl\Component

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Component.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Component.zep) | Namespace | Phalcon\Acl | | Implements | ComponentInterface | @@ -708,7 +696,7 @@ public function getName(): string;

Interface Phalcon\Acl\ComponentAwareInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/ComponentAwareInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/ComponentAwareInterface.zep) | Namespace | Phalcon\Acl | @@ -727,7 +715,7 @@ Returns component name

Interface Phalcon\Acl\ComponentInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/ComponentInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/ComponentInterface.zep) | Namespace | Phalcon\Acl | @@ -758,7 +746,7 @@ Returns the component name

Class Phalcon\Acl\Enum

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Enum.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Enum.zep) | Namespace | Phalcon\Acl | @@ -774,7 +762,7 @@ const DENY = 0;

Class Phalcon\Acl\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Exception.zep) | Namespace | Phalcon\Acl | | Extends | \Exception | @@ -785,7 +773,7 @@ Class for exceptions thrown by Phalcon\Acl

Class Phalcon\Acl\Role

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/Role.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/Role.zep) | Namespace | Phalcon\Acl | | Implements | RoleInterface | @@ -841,7 +829,7 @@ public function getName(): string;

Interface Phalcon\Acl\RoleAwareInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/RoleAwareInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/RoleAwareInterface.zep) | Namespace | Phalcon\Acl | @@ -860,7 +848,7 @@ Returns role name

Interface Phalcon\Acl\RoleInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Acl/RoleInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Acl/RoleInterface.zep) | Namespace | Phalcon\Acl | diff --git a/docs/api/phalcon_annotations.md b/docs/api/phalcon_annotations.md index 74c8fc623..cb2d943df 100644 --- a/docs/api/phalcon_annotations.md +++ b/docs/api/phalcon_annotations.md @@ -14,7 +14,7 @@

Abstract Class Phalcon\Annotations\Adapter\AbstractAdapter

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Adapter/AbstractAdapter.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Adapter/AbstractAdapter.zep) | Namespace | Phalcon\Annotations\Adapter | | Uses | Phalcon\Annotations\Reader, Phalcon\Annotations\Exception, Phalcon\Annotations\Collection, Phalcon\Annotations\Reflection, Phalcon\Annotations\ReaderInterface | @@ -97,7 +97,7 @@ Sets the annotations parser

Interface Phalcon\Annotations\Adapter\AdapterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Adapter/AdapterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Adapter/AdapterInterface.zep) | Namespace | Phalcon\Annotations\Adapter | | Uses | Phalcon\Annotations\Reflection, Phalcon\Annotations\Collection, Phalcon\Annotations\ReaderInterface | @@ -165,7 +165,7 @@ Sets the annotations parser

Class Phalcon\Annotations\Adapter\Apcu

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Adapter/Apcu.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Adapter/Apcu.zep) | Namespace | Phalcon\Annotations\Adapter | | Uses | Phalcon\Annotations\Reflection | @@ -218,7 +218,7 @@ Writes parsed annotations to APCu

Class Phalcon\Annotations\Adapter\Memory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Adapter/Memory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Adapter/Memory.zep) | Namespace | Phalcon\Annotations\Adapter | | Uses | Phalcon\Annotations\Reflection | @@ -255,7 +255,7 @@ Writes parsed annotations to memory

Class Phalcon\Annotations\Adapter\Stream

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Adapter/Stream.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Adapter/Stream.zep) | Namespace | Phalcon\Annotations\Adapter | | Uses | Phalcon\Annotations\Reflection, Phalcon\Annotations\Exception, RuntimeException | @@ -307,7 +307,7 @@ Writes parsed annotations to files

Class Phalcon\Annotations\Annotation

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Annotation.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Annotation.zep) | Namespace | Phalcon\Annotations | @@ -405,7 +405,7 @@ Returns the number of arguments that the annotation has

Class Phalcon\Annotations\AnnotationsFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/AnnotationsFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/AnnotationsFactory.zep) | Namespace | Phalcon\Annotations | | Uses | Phalcon\Annotations\Adapter\AdapterInterface, Phalcon\Factory\AbstractFactory, Phalcon\Support\Helper\Arr\Get | @@ -450,7 +450,7 @@ Returns the available adapters

Class Phalcon\Annotations\Collection

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Collection.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Collection.zep) | Namespace | Phalcon\Annotations | | Uses | Countable, Iterator | @@ -559,7 +559,7 @@ Check if the current annotation in the iterator is valid

Class Phalcon\Annotations\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Exception.zep) | Namespace | Phalcon\Annotations | | Extends | \Exception | @@ -570,7 +570,7 @@ Class for exceptions thrown by Phalcon\Annotations

Class Phalcon\Annotations\Reader

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Reader.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Reader.zep) | Namespace | Phalcon\Annotations | | Uses | ReflectionClass | @@ -597,7 +597,7 @@ Parses a raw doc block returning the annotations found

Interface Phalcon\Annotations\ReaderInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/ReaderInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/ReaderInterface.zep) | Namespace | Phalcon\Annotations | @@ -622,7 +622,7 @@ Parses a raw docblock returning the annotations found

Class Phalcon\Annotations\Reflection

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Annotations/Reflection.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Annotations/Reflection.zep) | Namespace | Phalcon\Annotations | diff --git a/docs/api/phalcon_application.md b/docs/api/phalcon_application.md index ef067b568..a2c556e41 100644 --- a/docs/api/phalcon_application.md +++ b/docs/api/phalcon_application.md @@ -4,7 +4,7 @@

Abstract Class Phalcon\Application\AbstractApplication

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Application/AbstractApplication.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Application/AbstractApplication.zep) | Namespace | Phalcon\Application | | Uses | Phalcon\Di\DiInterface, Phalcon\Di\Injectable, Phalcon\Events\EventsAwareInterface, Phalcon\Events\ManagerInterface | @@ -107,7 +107,7 @@ Sets the events manager

Class Phalcon\Application\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Application/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Application/Exception.zep) | Namespace | Phalcon\Application | | Extends | \Exception | diff --git a/docs/api/phalcon_assets.md b/docs/api/phalcon_assets.md index f326a6388..10528b06f 100644 --- a/docs/api/phalcon_assets.md +++ b/docs/api/phalcon_assets.md @@ -16,7 +16,7 @@

Class Phalcon\Assets\Asset

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Asset.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Asset.zep) | Namespace | Phalcon\Assets | | Implements | AssetInterface | @@ -259,7 +259,7 @@ protected function phpFileGetContents( string $filename );

Class Phalcon\Assets\Asset\Css

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Asset/Css.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Asset/Css.zep) | Namespace | Phalcon\Assets\Asset | | Uses | Phalcon\Assets\Asset | @@ -280,7 +280,7 @@ Phalcon\Assets\Asset\Css constructor

Class Phalcon\Assets\Asset\Js

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Asset/Js.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Asset/Js.zep) | Namespace | Phalcon\Assets\Asset | | Uses | Phalcon\Assets\Asset | @@ -301,7 +301,7 @@ Phalcon\Assets\Asset\Js constructor

Interface Phalcon\Assets\AssetInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/AssetInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/AssetInterface.zep) | Namespace | Phalcon\Assets | @@ -356,7 +356,7 @@ Sets the asset's type.

Class Phalcon\Assets\Collection

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Collection.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Collection.zep) | Namespace | Phalcon\Assets | | Uses | ArrayIterator, Countable, IteratorAggregate | @@ -674,7 +674,7 @@ Adds an asset or inline-code to the collection

Class Phalcon\Assets\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Exception.zep) | Namespace | Phalcon\Assets | | Extends | \Exception | @@ -685,7 +685,7 @@ Exceptions thrown in Phalcon\Assets will use this class

Interface Phalcon\Assets\FilterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/FilterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/FilterInterface.zep) | Namespace | Phalcon\Assets | @@ -704,7 +704,7 @@ Filters the content returning a string with the filtered content

Class Phalcon\Assets\Filters\Cssmin

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Filters/CssMin.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Filters/CssMin.zep) | Namespace | Phalcon\Assets\Filters | | Uses | Phalcon\Assets\FilterInterface | @@ -730,7 +730,7 @@ Filters the content using CSSMIN

Class Phalcon\Assets\Filters\Jsmin

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Filters/JsMin.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Filters/JsMin.zep) | Namespace | Phalcon\Assets\Filters | | Uses | Phalcon\Assets\FilterInterface | @@ -757,7 +757,7 @@ Filters the content using JSMIN

Class Phalcon\Assets\Filters\None

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Filters/None.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Filters/None.zep) | Namespace | Phalcon\Assets\Filters | | Uses | Phalcon\Assets\FilterInterface | @@ -778,7 +778,7 @@ Returns the content as is

Class Phalcon\Assets\Inline

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Inline.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Inline.zep) | Namespace | Phalcon\Assets | | Implements | AssetInterface | @@ -874,7 +874,7 @@ Sets the inline's type

Class Phalcon\Assets\Inline\Css

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Inline/Css.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Inline/Css.zep) | Namespace | Phalcon\Assets\Inline | | Uses | Phalcon\Assets\Inline | @@ -895,7 +895,7 @@ Phalcon\Assets\Inline\Css constructor

Class Phalcon\Assets\Inline\Js

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Inline/Js.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Inline/Js.zep) | Namespace | Phalcon\Assets\Inline | | Uses | Phalcon\Assets\Inline | @@ -916,7 +916,7 @@ Phalcon\Assets\Inline\Js constructor

Class Phalcon\Assets\Manager

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Assets/Manager.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Assets/Manager.zep) | Namespace | Phalcon\Assets | | Uses | Phalcon\Assets\Asset\Css, Phalcon\Assets\Asset\Js, Phalcon\Assets\Inline\Css, Phalcon\Assets\Inline\Js, Phalcon\Di\AbstractInjectionAware, Phalcon\Html\Helper\Element, Phalcon\Html\Helper\Link, Phalcon\Html\Helper\Script, Phalcon\Html\TagFactory | diff --git a/docs/api/phalcon_autoload.md b/docs/api/phalcon_autoload.md index a9490b19c..81d905466 100644 --- a/docs/api/phalcon_autoload.md +++ b/docs/api/phalcon_autoload.md @@ -4,7 +4,7 @@

Class Phalcon\Autoload\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Autoload/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Autoload/Exception.zep) | Namespace | Phalcon\Autoload | | Extends | \Exception | @@ -15,7 +15,7 @@ Exceptions thrown in Phalcon\Autoload will use this class

Class Phalcon\Autoload\Loader

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Autoload/Loader.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Autoload/Loader.zep) | Namespace | Phalcon\Autoload | | Uses | Phalcon\Events\AbstractEventsAware | diff --git a/docs/api/phalcon_cache.md b/docs/api/phalcon_cache.md index 901b26ac7..6e7799dab 100644 --- a/docs/api/phalcon_cache.md +++ b/docs/api/phalcon_cache.md @@ -16,7 +16,7 @@

Abstract Class Phalcon\Cache\AbstractCache

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/AbstractCache.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/AbstractCache.zep) | Namespace | Phalcon\Cache | | Uses | DateInterval, Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Cache\Exception\InvalidArgumentException, Traversable | @@ -121,7 +121,7 @@ Returns the exception class that will be used for exceptions thrown

Interface Phalcon\Cache\Adapter\AdapterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/AdapterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/AdapterInterface.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Storage\Adapter\AdapterInterface | @@ -133,7 +133,7 @@ Interface for Phalcon\Cache adapters

Class Phalcon\Cache\Adapter\Apcu

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Apcu.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Apcu.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Apcu | @@ -146,7 +146,7 @@ Apcu adapter

Class Phalcon\Cache\Adapter\Libmemcached

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Libmemcached.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Libmemcached.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Libmemcached | @@ -159,7 +159,7 @@ Libmemcached adapter

Class Phalcon\Cache\Adapter\Memory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Memory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Memory.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Memory | @@ -172,7 +172,7 @@ Memory adapter

Class Phalcon\Cache\Adapter\Redis

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Redis.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Redis.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Redis | @@ -185,7 +185,7 @@ Redis adapter

Class Phalcon\Cache\Adapter\Stream

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Stream.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Stream.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Stream | @@ -198,7 +198,7 @@ Stream adapter

Class Phalcon\Cache\Adapter\Weak

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Adapter/Weak.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Adapter/Weak.zep) | Namespace | Phalcon\Cache\Adapter | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Storage\Adapter\Weak | @@ -211,7 +211,7 @@ Stream adapter

Class Phalcon\Cache\AdapterFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/AdapterFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/AdapterFactory.zep) | Namespace | Phalcon\Cache | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Cache\Exception\Exception, Phalcon\Factory\AbstractFactory, Phalcon\Storage\SerializerFactory | @@ -259,7 +259,7 @@ Returns the available adapters

Class Phalcon\Cache\Cache

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Cache.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Cache.zep) | Namespace | Phalcon\Cache | | Uses | DateInterval, Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Cache\Exception\InvalidArgumentException | @@ -329,7 +329,7 @@ Returns the exception class that will be used for exceptions thrown

Class Phalcon\Cache\CacheFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/CacheFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/CacheFactory.zep) | Namespace | Phalcon\Cache | | Uses | Phalcon\Cache\Adapter\AdapterInterface, Phalcon\Cache\Cache, Phalcon\Cache\Exception\Exception, Phalcon\Config\ConfigInterface, Phalcon\Factory\AbstractConfigFactory | @@ -377,7 +377,7 @@ protected function getExceptionClass(): string;

Interface Phalcon\Cache\CacheInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/CacheInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/CacheInterface.zep) | Namespace | Phalcon\Cache | | Uses | DateInterval, Phalcon\Cache\Exception\InvalidArgumentException | @@ -440,7 +440,7 @@ Persists a set of key => value pairs in the cache, with an optional TTL.

Class Phalcon\Cache\Exception\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Exception/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Exception/Exception.zep) | Namespace | Phalcon\Cache\Exception | | Extends | \Exception | @@ -451,7 +451,7 @@ Exceptions thrown in Phalcon\Cache will use this class

Class Phalcon\Cache\Exception\InvalidArgumentException

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cache/Exception/InvalidArgumentException.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cache/Exception/InvalidArgumentException.zep) | Namespace | Phalcon\Cache\Exception | | Extends | \Exception | diff --git a/docs/api/phalcon_cli.md b/docs/api/phalcon_cli.md index ff6d14311..828c0059d 100644 --- a/docs/api/phalcon_cli.md +++ b/docs/api/phalcon_cli.md @@ -14,7 +14,7 @@

Class Phalcon\Cli\Console

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Console.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Console.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Application\AbstractApplication, Phalcon\Cli\Router\Route, Phalcon\Cli\Console\Exception, Phalcon\Di\DiInterface, Phalcon\Events\ManagerInterface | @@ -55,7 +55,7 @@ Set an specific argument

Class Phalcon\Cli\Console\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Console/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Console/Exception.zep) | Namespace | Phalcon\Cli\Console | | Extends | \Phalcon\Application\Exception | @@ -66,7 +66,7 @@ Exceptions thrown in Phalcon\Cli\Console will use this class

Class Phalcon\Cli\Dispatcher

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Dispatcher.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Dispatcher.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Cli\Dispatcher\Exception, Phalcon\Dispatcher\AbstractDispatcher, Phalcon\Events\ManagerInterface, Phalcon\Filter\FilterInterface | @@ -207,7 +207,7 @@ Throws an internal exception

Class Phalcon\Cli\Dispatcher\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Dispatcher/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Dispatcher/Exception.zep) | Namespace | Phalcon\Cli\Dispatcher | | Extends | \Phalcon\Dispatcher\Exception | @@ -218,7 +218,7 @@ Exceptions thrown in Phalcon\Cli\Dispatcher will use this class

Interface Phalcon\Cli\DispatcherInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/DispatcherInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/DispatcherInterface.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Dispatcher\DispatcherInterface | @@ -287,7 +287,7 @@ Sets the default task suffix

Class Phalcon\Cli\Router

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Router.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Router.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Di\DiInterface, Phalcon\Di\AbstractInjectionAware, Phalcon\Cli\Router\Route, Phalcon\Cli\Router\Exception, Phalcon\Cli\Router\RouteInterface | @@ -508,7 +508,7 @@ Checks if the router matches any of the defined routes

Class Phalcon\Cli\Router\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Router/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Router/Exception.zep) | Namespace | Phalcon\Cli\Router | | Extends | \Exception | @@ -519,7 +519,7 @@ Exceptions thrown in Phalcon\Cli\Router will use this class

Class Phalcon\Cli\Router\Route

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Router/Route.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Router/Route.zep) | Namespace | Phalcon\Cli\Router | | Implements | RouteInterface | @@ -730,7 +730,7 @@ $router->add(

Interface Phalcon\Cli\Router\RouteInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Router/RouteInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Router/RouteInterface.zep) | Namespace | Phalcon\Cli\Router | @@ -828,7 +828,7 @@ Sets the route's name

Interface Phalcon\Cli\RouterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/RouterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/RouterInterface.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Cli\Router\RouteInterface | @@ -945,7 +945,7 @@ Check if the router matches any of the defined routes

Class Phalcon\Cli\Task

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/Task.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/Task.zep) | Namespace | Phalcon\Cli | | Uses | Phalcon\Di\Injectable, Phalcon\Events\EventsAwareInterface, Phalcon\Events\ManagerInterface | @@ -1009,7 +1009,7 @@ Sets the events manager

Interface Phalcon\Cli\TaskInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Cli/TaskInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Cli/TaskInterface.zep) | Namespace | Phalcon\Cli | diff --git a/docs/api/phalcon_config.md b/docs/api/phalcon_config.md index b2e84368c..52db3c2a2 100644 --- a/docs/api/phalcon_config.md +++ b/docs/api/phalcon_config.md @@ -11,7 +11,7 @@

Class Phalcon\Config\Adapter\Grouped

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Adapter/Grouped.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Adapter/Grouped.zep) | Namespace | Phalcon\Config\Adapter | | Uses | Phalcon\Config\Config, Phalcon\Config\ConfigFactory, Phalcon\Config\ConfigInterface, Phalcon\Config\Exception, Phalcon\Factory\Exception | @@ -80,7 +80,7 @@ Phalcon\Config\Adapter\Grouped constructor

Class Phalcon\Config\Adapter\Ini

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Adapter/Ini.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Adapter/Ini.zep) | Namespace | Phalcon\Config\Adapter | | Uses | Phalcon\Config\Config, Phalcon\Config\Exception, Phalcon\Support\Traits\PhpFileTrait | @@ -165,7 +165,7 @@ protected function phpParseIniFile( string $filename, bool $processSections = bo

Class Phalcon\Config\Adapter\Json

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Adapter/Json.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Adapter/Json.zep) | Namespace | Phalcon\Config\Adapter | | Uses | Phalcon\Config\Config, Phalcon\Support\Helper\Json\Decode | @@ -203,7 +203,7 @@ Phalcon\Config\Adapter\Json constructor

Class Phalcon\Config\Adapter\Php

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Adapter/Php.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Adapter/Php.zep) | Namespace | Phalcon\Config\Adapter | | Uses | Phalcon\Config\Config | @@ -256,7 +256,7 @@ Phalcon\Config\Adapter\Php constructor

Class Phalcon\Config\Adapter\Yaml

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Adapter/Yaml.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Adapter/Yaml.zep) | Namespace | Phalcon\Config\Adapter | | Uses | Phalcon\Config\Config, Phalcon\Config\Exception | @@ -323,7 +323,7 @@ protected function phpYamlParseFile( mixed $filename, mixed $pos = int, mixed $n

Class Phalcon\Config\Config

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Config.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Config.zep) | Namespace | Phalcon\Config | | Uses | Phalcon\Support\Collection | @@ -439,7 +439,7 @@ Sets the collection data

Class Phalcon\Config\ConfigFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/ConfigFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/ConfigFactory.zep) | Namespace | Phalcon\Config | | Uses | Phalcon\Config\Config, Phalcon\Config\ConfigInterface, Phalcon\Factory\AbstractFactory | @@ -502,7 +502,7 @@ protected function parseConfig( mixed $config ): array;

Interface Phalcon\Config\ConfigInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/ConfigInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/ConfigInterface.zep) | Namespace | Phalcon\Config | | Uses | Phalcon\Support\Collection\CollectionInterface | @@ -543,7 +543,7 @@ public function setPathDelimiter( string $delimiter = null ): ConfigInterface;

Class Phalcon\Config\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Config/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Config/Exception.zep) | Namespace | Phalcon\Config | | Extends | \Exception | diff --git a/docs/api/phalcon_datamapper.md b/docs/api/phalcon_datamapper.md index 6651895f3..704059a96 100644 --- a/docs/api/phalcon_datamapper.md +++ b/docs/api/phalcon_datamapper.md @@ -23,7 +23,7 @@

Class Phalcon\DataMapper\Pdo\Connection

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Connection.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Connection.zep) | Namespace | Phalcon\DataMapper\Pdo | | Uses | InvalidArgumentException, Phalcon\DataMapper\Pdo\Connection\AbstractConnection, Phalcon\DataMapper\Pdo\Profiler\Profiler, Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface | @@ -75,7 +75,7 @@ Disconnects from the database.

Abstract Class Phalcon\DataMapper\Pdo\Connection\AbstractConnection

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Connection/AbstractConnection.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Connection/AbstractConnection.zep) | Namespace | Phalcon\DataMapper\Pdo\Connection | | Uses | BadMethodCallException, Phalcon\DataMapper\Pdo\Exception\CannotBindValue, Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface | @@ -358,7 +358,7 @@ Bind a value using the proper PDO::PARAM_* type.

Interface Phalcon\DataMapper\Pdo\Connection\ConnectionInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Connection/ConnectionInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Connection/ConnectionInterface.zep) | Namespace | Phalcon\DataMapper\Pdo\Connection | | Uses | Phalcon\DataMapper\Pdo\Exception\CannotBindValue, Phalcon\DataMapper\Pdo\Parser\ParserInterface, Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface | @@ -502,7 +502,7 @@ Sets the Profiler instance.

Class Phalcon\DataMapper\Pdo\Connection\Decorated

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Connection/Decorated.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Connection/Decorated.zep) | Namespace | Phalcon\DataMapper\Pdo\Connection | | Uses | Phalcon\DataMapper\Pdo\Exception\CannotDisconnect, Phalcon\DataMapper\Pdo\Profiler\Profiler, Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface | @@ -540,7 +540,7 @@ Disconnects from the database; disallowed with decorated PDO connections.

Interface Phalcon\DataMapper\Pdo\Connection\PdoInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Connection/PdoInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Connection/PdoInterface.zep) | Namespace | Phalcon\DataMapper\Pdo\Connection | @@ -647,7 +647,7 @@ Set a database connection attribute

Class Phalcon\DataMapper\Pdo\ConnectionLocator

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/ConnectionLocator.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/ConnectionLocator.zep) | Namespace | Phalcon\DataMapper\Pdo | | Uses | Phalcon\DataMapper\Pdo\Connection\ConnectionInterface, Phalcon\DataMapper\Pdo\Exception\ConnectionNotFound | @@ -746,7 +746,7 @@ Returns a connection by name.

Interface Phalcon\DataMapper\Pdo\ConnectionLocatorInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/ConnectionLocatorInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/ConnectionLocatorInterface.zep) | Namespace | Phalcon\DataMapper\Pdo | | Uses | Phalcon\DataMapper\Pdo\Connection\ConnectionInterface | @@ -800,7 +800,7 @@ Sets a write connection registry entry by name.

Class Phalcon\DataMapper\Pdo\Exception\CannotDisconnect

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Exception/CannotDisconnect.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Exception/CannotDisconnect.zep) | Namespace | Phalcon\DataMapper\Pdo\Exception | | Extends | Exception | @@ -812,7 +812,7 @@ created externally and then injected.

Class Phalcon\DataMapper\Pdo\Exception\ConnectionNotFound

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Exception/ConnectionNotFound.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Exception/ConnectionNotFound.zep) | Namespace | Phalcon\DataMapper\Pdo\Exception | | Extends | Exception | @@ -823,7 +823,7 @@ Locator could not find a named connection.

Class Phalcon\DataMapper\Pdo\Exception\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Exception/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Exception/Exception.zep) | Namespace | Phalcon\DataMapper\Pdo\Exception | | Extends | \Exception | @@ -834,7 +834,7 @@ Base Exception class

Class Phalcon\DataMapper\Pdo\Profiler\MemoryLogger

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Profiler/MemoryLogger.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Profiler/MemoryLogger.zep) | Namespace | Phalcon\DataMapper\Pdo\Profiler | | Uses | Phalcon\Logger\Enum, Phalcon\Logger\Adapter\AdapterInterface, Phalcon\Logger\Adapter\Noop, Phalcon\Logger\LoggerInterface | @@ -942,7 +942,7 @@ public function warning( string $message, array $context = [] ): void;

Class Phalcon\DataMapper\Pdo\Profiler\Profiler

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Profiler/Profiler.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Profiler/Profiler.zep) | Namespace | Phalcon\DataMapper\Pdo\Profiler | | Uses | Phalcon\DataMapper\Pdo\Exception\Exception, Phalcon\Logger\Enum, Phalcon\Logger\LoggerInterface, Phalcon\Support\Helper\Json\Encode | @@ -1051,7 +1051,7 @@ Starts a profile entry.

Interface Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Pdo/Profiler/ProfilerInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Pdo/Profiler/ProfilerInterface.zep) | Namespace | Phalcon\DataMapper\Pdo\Profiler | | Uses | Phalcon\Logger\LoggerInterface | @@ -1119,7 +1119,7 @@ Starts a profile entry.

Abstract Class Phalcon\DataMapper\Query\AbstractConditions

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/AbstractConditions.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/AbstractConditions.zep) | Namespace | Phalcon\DataMapper\Query | | Extends | AbstractQuery | @@ -1235,7 +1235,7 @@ Processes a value (array or string) and merges it with the store

Abstract Class Phalcon\DataMapper\Query\AbstractQuery

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/AbstractQuery.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/AbstractQuery.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | Phalcon\DataMapper\Pdo\Connection | @@ -1346,7 +1346,7 @@ Indents a collection

Class Phalcon\DataMapper\Query\Bind

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/Bind.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/Bind.zep) | Namespace | Phalcon\DataMapper\Query | @@ -1415,7 +1415,7 @@ Processes an array - if passed as an `inline` parameter

Class Phalcon\DataMapper\Query\Delete

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/Delete.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/Delete.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | Phalcon\DataMapper\Pdo\Connection | @@ -1460,7 +1460,7 @@ Adds the `RETURNING` clause

Class Phalcon\DataMapper\Query\Insert

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/Insert.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/Insert.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | Phalcon\DataMapper\Pdo\Connection | @@ -1529,7 +1529,7 @@ Sets a column = value condition

Class Phalcon\DataMapper\Query\QueryFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/QueryFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/QueryFactory.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | Phalcon\DataMapper\Pdo\Connection | @@ -1588,7 +1588,7 @@ Create a new Update object

Class Phalcon\DataMapper\Query\Select

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/Select.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/Select.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | BadMethodCallException | @@ -1746,7 +1746,7 @@ Statement builder

Class Phalcon\DataMapper\Query\Update

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/DataMapper/Query/Update.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/DataMapper/Query/Update.zep) | Namespace | Phalcon\DataMapper\Query | | Uses | Phalcon\DataMapper\Pdo\Connection | diff --git a/docs/api/phalcon_db.md b/docs/api/phalcon_db.md index badaf8b5a..d73fccbe8 100644 --- a/docs/api/phalcon_db.md +++ b/docs/api/phalcon_db.md @@ -28,7 +28,7 @@

Abstract Class Phalcon\Db\AbstractDb

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/AbstractDb.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/AbstractDb.zep) | Namespace | Phalcon\Db | | Uses | \PDO | @@ -88,7 +88,7 @@ Enables/disables options in the Database component

Abstract Class Phalcon\Db\Adapter\AbstractAdapter

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/AbstractAdapter.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/AbstractAdapter.zep) | Namespace | Phalcon\Db\Adapter | | Uses | Phalcon\Db\DialectInterface, Phalcon\Db\ColumnInterface, Phalcon\Db\Enum, Phalcon\Db\Exception, Phalcon\Db\Index, Phalcon\Db\IndexInterface, Phalcon\Db\Reference, Phalcon\Db\ReferenceInterface, Phalcon\Db\RawValue, Phalcon\Events\EventsAwareInterface, Phalcon\Events\ManagerInterface | @@ -778,7 +778,7 @@ var_dump(

Interface Phalcon\Db\Adapter\AdapterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/AdapterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/AdapterInterface.zep) | Namespace | Phalcon\Db\Adapter | | Uses | Phalcon\Db\DialectInterface, Phalcon\Db\ResultInterface, Phalcon\Db\ColumnInterface, Phalcon\Db\IndexInterface, Phalcon\Db\RawValue, Phalcon\Db\ReferenceInterface | @@ -1266,7 +1266,7 @@ Generates SQL checking for the existence of a schema.view

Abstract Class Phalcon\Db\Adapter\Pdo\AbstractPdo

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/Pdo/AbstractPdo.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/Pdo/AbstractPdo.zep) | Namespace | Phalcon\Db\Adapter\Pdo | | Uses | Phalcon\Db\Adapter\AbstractAdapter, Phalcon\Db\Column, Phalcon\Db\Exception, Phalcon\Db\Result\PdoResult, Phalcon\Db\ResultInterface, Phalcon\Events\ManagerInterface | @@ -1581,7 +1581,7 @@ Constructs the SQL statement (with parameters)

Class Phalcon\Db\Adapter\Pdo\Mysql

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/Pdo/Mysql.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/Pdo/Mysql.zep) | Namespace | Phalcon\Db\Adapter\Pdo | | Uses | Phalcon\Db\Adapter\Pdo\AbstractPdo, Phalcon\Db\Column, Phalcon\Db\ColumnInterface, Phalcon\Db\Enum, Phalcon\Db\Exception, Phalcon\Db\Index, Phalcon\Db\IndexInterface, Phalcon\Db\Reference, Phalcon\Db\ReferenceInterface | @@ -1678,7 +1678,7 @@ Returns PDO adapter DSN defaults as a key-value map.

Class Phalcon\Db\Adapter\Pdo\Postgresql

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/Pdo/Postgresql.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/Pdo/Postgresql.zep) | Namespace | Phalcon\Db\Adapter\Pdo | | Uses | Phalcon\Db\Adapter\Pdo\AbstractPdo, Phalcon\Db\Column, Phalcon\Db\ColumnInterface, Phalcon\Db\Enum, Phalcon\Db\Exception, Phalcon\Db\RawValue, Phalcon\Db\Reference, Phalcon\Db\ReferenceInterface, Throwable | @@ -1813,7 +1813,7 @@ Returns PDO adapter DSN defaults as a key-value map.

Class Phalcon\Db\Adapter\Pdo\Sqlite

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/Pdo/Sqlite.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/Pdo/Sqlite.zep) | Namespace | Phalcon\Db\Adapter\Pdo | | Uses | Phalcon\Db\Adapter\Pdo\AbstractPdo, Phalcon\Db\Column, Phalcon\Db\ColumnInterface, Phalcon\Db\Enum, Phalcon\Db\Exception, Phalcon\Db\Index, Phalcon\Db\IndexInterface, Phalcon\Db\RawValue, Phalcon\Db\Reference, Phalcon\Db\ReferenceInterface | @@ -1938,7 +1938,7 @@ Returns PDO adapter DSN defaults as a key-value map.

Class Phalcon\Db\Adapter\PdoFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Adapter/PdoFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Adapter/PdoFactory.zep) | Namespace | Phalcon\Db\Adapter | | Uses | Phalcon\Factory\AbstractFactory, Phalcon\Support\Helper\Arr\Get | @@ -1988,7 +1988,7 @@ Returns the available adapters

Class Phalcon\Db\Column

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Column.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Column.zep) | Namespace | Phalcon\Db | | Implements | ColumnInterface | @@ -2289,7 +2289,7 @@ Returns true if number column is unsigned

Interface Phalcon\Db\ColumnInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/ColumnInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/ColumnInterface.zep) | Namespace | Phalcon\Db | @@ -2398,7 +2398,7 @@ Returns true if number column is unsigned

Abstract Class Phalcon\Db\Dialect

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Dialect.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Dialect.zep) | Namespace | Phalcon\Db | | Implements | DialectInterface | @@ -2703,7 +2703,7 @@ Prepares table for this RDBMS

Class Phalcon\Db\Dialect\Mysql

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Dialect/Mysql.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Dialect/Mysql.zep) | Namespace | Phalcon\Db\Dialect | | Uses | Phalcon\Db\Dialect, Phalcon\Db\Column, Phalcon\Db\Exception, Phalcon\Db\IndexInterface, Phalcon\Db\ColumnInterface, Phalcon\Db\ReferenceInterface, Phalcon\Db\DialectInterface | @@ -2907,7 +2907,7 @@ Generates SQL to add the table creation options

Class Phalcon\Db\Dialect\Postgresql

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Dialect/Postgresql.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Dialect/Postgresql.zep) | Namespace | Phalcon\Db\Dialect | | Uses | Phalcon\Db\Dialect, Phalcon\Db\Column, Phalcon\Db\Exception, Phalcon\Db\IndexInterface, Phalcon\Db\ColumnInterface, Phalcon\Db\ReferenceInterface, Phalcon\Db\DialectInterface | @@ -3106,7 +3106,7 @@ protected function getTableOptions( array $definition ): string;

Class Phalcon\Db\Dialect\Sqlite

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Dialect/Sqlite.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Dialect/Sqlite.zep) | Namespace | Phalcon\Db\Dialect | | Uses | Phalcon\Db\Column, Phalcon\Db\Exception, Phalcon\Db\IndexInterface, Phalcon\Db\Dialect, Phalcon\Db\DialectInterface, Phalcon\Db\ColumnInterface, Phalcon\Db\ReferenceInterface | @@ -3318,7 +3318,7 @@ Generates SQL checking for the existence of a schema.view

Interface Phalcon\Db\DialectInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/DialectInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/DialectInterface.zep) | Namespace | Phalcon\Db | @@ -3536,7 +3536,7 @@ Generates SQL checking for the existence of a schema.view

Class Phalcon\Db\Enum

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Enum.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Enum.zep) | Namespace | Phalcon\Db | @@ -3569,7 +3569,7 @@ const FETCH_UNIQUE;

Class Phalcon\Db\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Exception.zep) | Namespace | Phalcon\Db | | Extends | \Exception | @@ -3580,7 +3580,7 @@ Exceptions thrown in Phalcon\Db will use this class

Class Phalcon\Db\Index

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Index.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Index.zep) | Namespace | Phalcon\Db | | Implements | IndexInterface | @@ -3669,7 +3669,7 @@ Index type

Interface Phalcon\Db\IndexInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/IndexInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/IndexInterface.zep) | Namespace | Phalcon\Db | @@ -3700,7 +3700,7 @@ Gets the index type

Class Phalcon\Db\Profiler

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Profiler.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Profiler.zep) | Namespace | Phalcon\Db | | Uses | Phalcon\Db\Profiler\Item | @@ -3841,7 +3841,7 @@ Stops the active profile

Class Phalcon\Db\Profiler\Item

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Profiler/Item.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Profiler/Item.zep) | Namespace | Phalcon\Db\Profiler | @@ -3971,7 +3971,7 @@ Return the SQL variables related to the profile

Class Phalcon\Db\RawValue

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/RawValue.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/RawValue.zep) | Namespace | Phalcon\Db | @@ -4024,7 +4024,7 @@ public function getValue(): string;

Class Phalcon\Db\Reference

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Reference.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Reference.zep) | Namespace | Phalcon\Db | | Implements | ReferenceInterface | @@ -4170,7 +4170,7 @@ Schema name

Interface Phalcon\Db\ReferenceInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/ReferenceInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/ReferenceInterface.zep) | Namespace | Phalcon\Db | @@ -4231,7 +4231,7 @@ Gets the schema where referenced table is

Class Phalcon\Db\Result\PdoResult

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/Result/PdoResult.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/Result/PdoResult.zep) | Namespace | Phalcon\Db\Result | | Uses | Phalcon\Db\Enum, Phalcon\Db\ResultInterface, Phalcon\Db\Adapter\AdapterInterface | @@ -4444,7 +4444,7 @@ $result->setFetchMode(

Interface Phalcon\Db\ResultInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Db/ResultInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Db/ResultInterface.zep) | Namespace | Phalcon\Db | diff --git a/docs/api/phalcon_di.md b/docs/api/phalcon_di.md index 6c478ae23..c659e2392 100644 --- a/docs/api/phalcon_di.md +++ b/docs/api/phalcon_di.md @@ -16,7 +16,7 @@

Abstract Class Phalcon\Di\AbstractInjectionAware

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/AbstractInjectionAware.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/AbstractInjectionAware.zep) | Namespace | Phalcon\Di | | Implements | InjectionAwareInterface | @@ -53,7 +53,7 @@ Sets the dependency injector

Class Phalcon\Di\Di

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Di.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Di.zep) | Namespace | Phalcon\Di | | Uses | Phalcon\Di\Service, Phalcon\Di\DiInterface, Phalcon\Di\Exception, Phalcon\Di\Exception\ServiceResolutionException, Phalcon\Config\Adapter\Php, Phalcon\Config\Adapter\Yaml, Phalcon\Config\ConfigInterface, Phalcon\Di\ServiceInterface, Phalcon\Events\ManagerInterface, Phalcon\Di\InitializationAwareInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\Di\ServiceProviderInterface | @@ -381,7 +381,7 @@ Loads services from a Config object.

Interface Phalcon\Di\DiInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/DiInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/DiInterface.zep) | Namespace | Phalcon\Di | | Uses | ArrayAccess | @@ -483,7 +483,7 @@ Registers an "always shared" service in the services container

Class Phalcon\Di\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Exception.zep) | Namespace | Phalcon\Di | | Extends | \Exception | @@ -494,7 +494,7 @@ Exceptions thrown in Phalcon\Di will use this class

Class Phalcon\Di\Exception\ServiceResolutionException

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Exception/ServiceResolutionException.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Exception/ServiceResolutionException.zep) | Namespace | Phalcon\Di\Exception | | Extends | \Phalcon\Di\Exception | @@ -505,7 +505,7 @@ Phalcon\Di\Exception\ServiceResolutionException

Class Phalcon\Di\FactoryDefault

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/FactoryDefault.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/FactoryDefault.zep) | Namespace | Phalcon\Di | | Uses | Phalcon\Filter\FilterFactory | @@ -529,7 +529,7 @@ Phalcon\Di\FactoryDefault constructor

Class Phalcon\Di\FactoryDefault\Cli

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/FactoryDefault/Cli.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/FactoryDefault/Cli.zep) | Namespace | Phalcon\Di\FactoryDefault | | Uses | Phalcon\Di\FactoryDefault, Phalcon\Di\Service, Phalcon\Filter\FilterFactory | @@ -555,7 +555,7 @@ Phalcon\Di\FactoryDefault\Cli constructor

Interface Phalcon\Di\InitializationAwareInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/InitializationAwareInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/InitializationAwareInterface.zep) | Namespace | Phalcon\Di | @@ -574,7 +574,7 @@ public function initialize(): void;

Abstract Class Phalcon\Di\Injectable

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Injectable.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Injectable.zep) | Namespace | Phalcon\Di | | Uses | stdClass, Phalcon\Di\Di, Phalcon\Session\BagInterface | @@ -625,7 +625,7 @@ Sets the dependency injector

Interface Phalcon\Di\InjectionAwareInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/InjectionAwareInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/InjectionAwareInterface.zep) | Namespace | Phalcon\Di | @@ -651,7 +651,7 @@ Sets the dependency injector

Class Phalcon\Di\Service

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Service.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Service.zep) | Namespace | Phalcon\Di | | Uses | Closure, Phalcon\Di\Exception\ServiceResolutionException, Phalcon\Di\Service\Builder | @@ -759,7 +759,7 @@ Sets/Resets the shared instance related to the service

Class Phalcon\Di\Service\Builder

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/Service/Builder.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/Service/Builder.zep) | Namespace | Phalcon\Di\Service | | Uses | Phalcon\Di\DiInterface, Phalcon\Di\Exception | @@ -781,7 +781,7 @@ Builds a service using a complex service definition

Interface Phalcon\Di\ServiceInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/ServiceInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/ServiceInterface.zep) | Namespace | Phalcon\Di | @@ -842,7 +842,7 @@ Sets if the service is shared or not

Interface Phalcon\Di\ServiceProviderInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Di/ServiceProviderInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Di/ServiceProviderInterface.zep) | Namespace | Phalcon\Di | diff --git a/docs/api/phalcon_dispatcher.md b/docs/api/phalcon_dispatcher.md index fa9927ecc..40be2f523 100644 --- a/docs/api/phalcon_dispatcher.md +++ b/docs/api/phalcon_dispatcher.md @@ -5,7 +5,7 @@

Abstract Class Phalcon\Dispatcher\AbstractDispatcher

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Dispatcher/AbstractDispatcher.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Dispatcher/AbstractDispatcher.zep) | Namespace | Phalcon\Dispatcher | | Uses | Exception, Phalcon\Di\DiInterface, Phalcon\Di\AbstractInjectionAware, Phalcon\Dispatcher\Exception, Phalcon\Events\EventsAwareInterface, Phalcon\Events\ManagerInterface, Phalcon\Filter\FilterInterface, Phalcon\Mvc\Model\Binder, Phalcon\Mvc\Model\BinderInterface | @@ -431,7 +431,7 @@ protected function toCamelCase( string $input ): string;

Interface Phalcon\Dispatcher\DispatcherInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Dispatcher/DispatcherInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Dispatcher/DispatcherInterface.zep) | Namespace | Phalcon\Dispatcher | @@ -571,7 +571,7 @@ Sets action params to be dispatched

Class Phalcon\Dispatcher\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Dispatcher/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Dispatcher/Exception.zep) | Namespace | Phalcon\Dispatcher | | Extends | \Exception | diff --git a/docs/api/phalcon_domain.md b/docs/api/phalcon_domain.md index 73a66cf60..451b0adf6 100644 --- a/docs/api/phalcon_domain.md +++ b/docs/api/phalcon_domain.md @@ -8,7 +8,7 @@

Class Phalcon\Domain\Payload\Payload

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/Payload.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/Payload.zep) | Namespace | Phalcon\Domain\Payload | | Uses | Throwable | @@ -141,7 +141,7 @@ Sets the payload status.

Class Phalcon\Domain\Payload\PayloadFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/PayloadFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/PayloadFactory.zep) | Namespace | Phalcon\Domain\Payload | @@ -160,7 +160,7 @@ Instantiate a new object

Interface Phalcon\Domain\Payload\PayloadInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/PayloadInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/PayloadInterface.zep) | Namespace | Phalcon\Domain\Payload | | Extends | ReadableInterface | @@ -171,7 +171,7 @@ This interface is used for consumers

Interface Phalcon\Domain\Payload\ReadableInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/ReadableInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/ReadableInterface.zep) | Namespace | Phalcon\Domain\Payload | | Uses | Throwable | @@ -221,7 +221,7 @@ Gets the status of this payload.

Class Phalcon\Domain\Payload\Status

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/Status.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/Status.zep) | Namespace | Phalcon\Domain\Payload | @@ -264,7 +264,7 @@ Instantiation not allowed.

Interface Phalcon\Domain\Payload\WriteableInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Domain/Payload/WriteableInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Domain/Payload/WriteableInterface.zep) | Namespace | Phalcon\Domain\Payload | | Uses | Throwable | diff --git a/docs/api/phalcon_encryption.md b/docs/api/phalcon_encryption.md index f0b349219..4ab925b00 100644 --- a/docs/api/phalcon_encryption.md +++ b/docs/api/phalcon_encryption.md @@ -32,7 +32,7 @@

Class Phalcon\Encryption\Crypt

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt.zep) | Namespace | Phalcon\Encryption | | Uses | Phalcon\Encryption\Crypt\CryptInterface, Phalcon\Encryption\Crypt\Exception\Exception, Phalcon\Encryption\Crypt\Exception\Mismatch, Phalcon\Encryption\Crypt\PadFactory | @@ -372,7 +372,7 @@ protected function phpOpensslRandomPseudoBytes( int $length );

Interface Phalcon\Encryption\Crypt\CryptInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/CryptInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/CryptInterface.zep) | Namespace | Phalcon\Encryption\Crypt | @@ -487,7 +487,7 @@ Sets if the calculating message digest must be used.

Class Phalcon\Encryption\Crypt\Exception\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Exception/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Exception/Exception.zep) | Namespace | Phalcon\Encryption\Crypt\Exception | | Extends | \Exception | @@ -498,7 +498,7 @@ Exceptions thrown in Phalcon\Crypt use this class

Class Phalcon\Encryption\Crypt\Exception\Mismatch

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Exception/Mismatch.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Exception/Mismatch.zep) | Namespace | Phalcon\Encryption\Crypt\Exception | | Extends | Exception | @@ -509,7 +509,7 @@ Exceptions thrown in Phalcon\Crypt will use this class.

Class Phalcon\Encryption\Crypt\PadFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/PadFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/PadFactory.zep) | Namespace | Phalcon\Encryption\Crypt | | Uses | Phalcon\Encryption\Crypt, Phalcon\Encryption\Crypt\Padding\PadInterface, Phalcon\Factory\AbstractFactory, Phalcon\Support\Helper\Arr\Get | @@ -560,7 +560,7 @@ protected function getServices(): array;

Class Phalcon\Encryption\Crypt\Padding\Ansi

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Ansi.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Ansi.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -588,7 +588,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\Iso10126

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Iso10126.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Iso10126.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -616,7 +616,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\IsoIek

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/IsoIek.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/IsoIek.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -644,7 +644,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\Noop

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Noop.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Noop.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -672,7 +672,7 @@ public function unpad( string $input, int $blockSize ): int;

Interface Phalcon\Encryption\Crypt\Padding\PadInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/PadInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/PadInterface.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | @@ -697,7 +697,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\Pkcs7

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Pkcs7.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Pkcs7.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -725,7 +725,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\Space

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Space.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Space.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -753,7 +753,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Crypt\Padding\Zero

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Crypt/Padding/Zero.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Crypt/Padding/Zero.zep) | Namespace | Phalcon\Encryption\Crypt\Padding | | Implements | PadInterface | @@ -781,7 +781,7 @@ public function unpad( string $input, int $blockSize ): int;

Class Phalcon\Encryption\Security

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security.zep) | Namespace | Phalcon\Encryption | | Uses | Phalcon\Di\DiInterface, Phalcon\Di\AbstractInjectionAware, Phalcon\Http\RequestInterface, Phalcon\Encryption\Security\Random, Phalcon\Encryption\Security\Exception, Phalcon\Session\ManagerInterface | @@ -1019,7 +1019,7 @@ protected function getLocalService( string $name, string $property );

Class Phalcon\Encryption\Security\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/Exception.zep) | Namespace | Phalcon\Encryption\Security | | Extends | \Exception | @@ -1032,7 +1032,7 @@ Exceptions thrown in Phalcon\Security will use this class

Class Phalcon\Encryption\Security\JWT\Builder

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Builder.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Builder.zep) | Namespace | Phalcon\Encryption\Security\JWT | | Uses | Phalcon\Encryption\Security\JWT\Exceptions\ValidatorException, Phalcon\Encryption\Security\JWT\Signer\SignerInterface, Phalcon\Encryption\Security\JWT\Token\Enum, Phalcon\Encryption\Security\JWT\Token\Item, Phalcon\Encryption\Security\JWT\Token\Signature, Phalcon\Encryption\Security\JWT\Token\Token, Phalcon\Support\Collection, Phalcon\Support\Collection\CollectionInterface, Phalcon\Support\Helper\Json\Encode | @@ -1274,7 +1274,7 @@ Sets a registered claim

Class Phalcon\Encryption\Security\JWT\Exceptions\UnsupportedAlgorithmException

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Exceptions/UnsupportedAlgorithmException.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Exceptions/UnsupportedAlgorithmException.zep) | Namespace | Phalcon\Encryption\Security\JWT\Exceptions | | Uses | Exception | @@ -1286,7 +1286,7 @@ Exception thrown when the algorithm is not supported for JWT

Class Phalcon\Encryption\Security\JWT\Exceptions\ValidatorException

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Exceptions/ValidatorException.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Exceptions/ValidatorException.zep) | Namespace | Phalcon\Encryption\Security\JWT\Exceptions | | Uses | Exception | @@ -1298,7 +1298,7 @@ Exception thrown when the validation does not pass for JWT

Abstract Class Phalcon\Encryption\Security\JWT\Signer\AbstractSigner

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Signer/AbstractSigner.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Signer/AbstractSigner.zep) | Namespace | Phalcon\Encryption\Security\JWT\Signer | | Implements | SignerInterface | @@ -1327,7 +1327,7 @@ public function getAlgorithm(): string;

Class Phalcon\Encryption\Security\JWT\Signer\Hmac

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Signer/Hmac.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Signer/Hmac.zep) | Namespace | Phalcon\Encryption\Security\JWT\Signer | | Uses | Phalcon\Encryption\Security\JWT\Exceptions\UnsupportedAlgorithmException | @@ -1366,7 +1366,7 @@ Verify a passed source with a payload and passphrase

Class Phalcon\Encryption\Security\JWT\Signer\None

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Signer/None.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Signer/None.zep) | Namespace | Phalcon\Encryption\Security\JWT\Signer | | Implements | SignerInterface | @@ -1404,7 +1404,7 @@ Verify a passed source with a payload and passphrase

Interface Phalcon\Encryption\Security\JWT\Signer\SignerInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Signer/SignerInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Signer/SignerInterface.zep) | Namespace | Phalcon\Encryption\Security\JWT\Signer | @@ -1441,7 +1441,7 @@ Verify a passed source with a payload and passphrase

Abstract Class Phalcon\Encryption\Security\JWT\Token\AbstractItem

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/AbstractItem.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/AbstractItem.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | @@ -1469,7 +1469,7 @@ public function getEncoded(): string;

Class Phalcon\Encryption\Security\JWT\Token\Enum

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/Enum.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/Enum.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | @@ -1495,7 +1495,7 @@ const TYPE = typ;

Class Phalcon\Encryption\Security\JWT\Token\Item

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/Item.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/Item.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | | Extends | AbstractItem | @@ -1533,7 +1533,7 @@ public function has( string $name ): bool;

Class Phalcon\Encryption\Security\JWT\Token\Parser

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/Parser.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/Parser.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | | Uses | InvalidArgumentException, Phalcon\Support\Helper\Json\Decode | @@ -1572,7 +1572,7 @@ Parse a token and return it

Class Phalcon\Encryption\Security\JWT\Token\Signature

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/Signature.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/Signature.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | | Extends | AbstractItem | @@ -1598,7 +1598,7 @@ public function getHash(): string;

Class Phalcon\Encryption\Security\JWT\Token\Token

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Token/Token.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Token/Token.zep) | Namespace | Phalcon\Encryption\Security\JWT\Token | | Uses | Phalcon\Encryption\Security\JWT\Signer\SignerInterface, Phalcon\Encryption\Security\JWT\Validator | @@ -1684,7 +1684,7 @@ Verify the signature

Class Phalcon\Encryption\Security\JWT\Validator

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/JWT/Validator.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/JWT/Validator.zep) | Namespace | Phalcon\Encryption\Security\JWT | | Uses | Phalcon\Encryption\Security\JWT\Exceptions\ValidatorException, Phalcon\Encryption\Security\JWT\Signer\SignerInterface, Phalcon\Encryption\Security\JWT\Token\Enum, Phalcon\Encryption\Security\JWT\Token\Token | @@ -1794,7 +1794,7 @@ Validate the signature of the token

Class Phalcon\Encryption\Security\Random

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Encryption/Security/Random.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Encryption/Security/Random.zep) | Namespace | Phalcon\Encryption\Security | diff --git a/docs/api/phalcon_events.md b/docs/api/phalcon_events.md index f1908ec42..7c62fdd9e 100644 --- a/docs/api/phalcon_events.md +++ b/docs/api/phalcon_events.md @@ -8,7 +8,7 @@

Abstract Class Phalcon\Events\AbstractEventsAware

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/AbstractEventsAware.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/AbstractEventsAware.zep) | Namespace | Phalcon\Events | | Uses | Phalcon\Events\ManagerInterface | @@ -49,7 +49,7 @@ Helper method to fire an event

Class Phalcon\Events\Event

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/Event.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/Event.zep) | Namespace | Phalcon\Events | | Implements | EventInterface | @@ -178,7 +178,7 @@ if ($event->isCancelable()) {

Interface Phalcon\Events\EventInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/EventInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/EventInterface.zep) | Namespace | Phalcon\Events | @@ -233,7 +233,7 @@ Stops the event preventing propagation

Interface Phalcon\Events\EventsAwareInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/EventsAwareInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/EventsAwareInterface.zep) | Namespace | Phalcon\Events | @@ -259,7 +259,7 @@ Sets the events manager

Class Phalcon\Events\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/Exception.zep) | Namespace | Phalcon\Events | | Extends | \Exception | @@ -270,7 +270,7 @@ Exceptions thrown in Phalcon\Events will use this class

Class Phalcon\Events\Manager

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/Manager.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/Manager.zep) | Namespace | Phalcon\Events | | Uses | Closure, SplPriorityQueue | @@ -411,7 +411,7 @@ public function isValidHandler( mixed $handler ): bool;

Interface Phalcon\Events\ManagerInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Events/ManagerInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Events/ManagerInterface.zep) | Namespace | Phalcon\Events | diff --git a/docs/api/phalcon_factory.md b/docs/api/phalcon_factory.md index 61c7dad12..47df47ee2 100644 --- a/docs/api/phalcon_factory.md +++ b/docs/api/phalcon_factory.md @@ -5,7 +5,7 @@

Abstract Class Phalcon\Factory\AbstractConfigFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Factory/AbstractConfigFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Factory/AbstractConfigFactory.zep) | Namespace | Phalcon\Factory | | Uses | Phalcon\Config\ConfigInterface | @@ -48,7 +48,7 @@ protected function getExceptionClass(): string;

Abstract Class Phalcon\Factory\AbstractFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Factory/AbstractFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Factory/AbstractFactory.zep) | Namespace | Phalcon\Factory | | Uses | Phalcon\Config\ConfigInterface | @@ -100,7 +100,7 @@ Initialize services/add new services

Class Phalcon\Factory\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Factory/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Factory/Exception.zep) | Namespace | Phalcon\Factory | | Extends | \Exception | diff --git a/docs/api/phalcon_filter.md b/docs/api/phalcon_filter.md index a425b48d7..70f66f1b8 100644 --- a/docs/api/phalcon_filter.md +++ b/docs/api/phalcon_filter.md @@ -68,7 +68,7 @@

Class Phalcon\Filter\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Exception.zep) | Namespace | Phalcon\Filter | | Extends | \Exception | @@ -81,7 +81,7 @@ Exceptions thrown in Phalcon\Filter will use this class

Class Phalcon\Filter\Filter

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Filter.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Filter.zep) | Namespace | Phalcon\Filter | | Implements | FilterInterface | @@ -177,7 +177,7 @@ Loads the objects in the internal mapper array

Class Phalcon\Filter\FilterFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/FilterFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/FilterFactory.zep) | Namespace | Phalcon\Filter | | Uses | Phalcon\Filter\Filter | @@ -206,7 +206,7 @@ Returns the available adapters

Interface Phalcon\Filter\FilterInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/FilterInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/FilterInterface.zep) | Namespace | Phalcon\Filter | @@ -225,7 +225,7 @@ Sanitizes a value with a specified single or set of sanitizers

Class Phalcon\Filter\Sanitize\AbsInt

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/AbsInt.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/AbsInt.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -246,7 +246,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\Alnum

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Alnum.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Alnum.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -267,7 +267,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\Alpha

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Alpha.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Alpha.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -288,7 +288,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\BoolVal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/BoolVal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/BoolVal.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -309,7 +309,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\Email

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Email.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Email.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -330,7 +330,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\FloatVal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/FloatVal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/FloatVal.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -351,7 +351,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\IntVal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/IntVal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/IntVal.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -372,7 +372,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\Lower

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Lower.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Lower.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -393,7 +393,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\LowerFirst

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/LowerFirst.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/LowerFirst.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -414,7 +414,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\Regex

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Regex.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Regex.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -435,7 +435,7 @@ public function __invoke( mixed $input, mixed $pattern, mixed $replace );

Class Phalcon\Filter\Sanitize\Remove

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Remove.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Remove.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -456,7 +456,7 @@ public function __invoke( mixed $input, mixed $replace );

Class Phalcon\Filter\Sanitize\Replace

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Replace.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Replace.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -477,7 +477,7 @@ public function __invoke( mixed $input, mixed $from, mixed $to );

Class Phalcon\Filter\Sanitize\Special

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Special.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Special.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -498,7 +498,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\SpecialFull

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/SpecialFull.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/SpecialFull.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -519,7 +519,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\StringVal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/StringVal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/StringVal.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -538,7 +538,7 @@ public function __invoke( string $input, int $flags = int ): string;

Class Phalcon\Filter\Sanitize\StringValLegacy

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/StringValLegacy.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/StringValLegacy.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -560,7 +560,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Sanitize\Striptags

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Striptags.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Striptags.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -581,7 +581,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\Trim

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Trim.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Trim.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -602,7 +602,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\Upper

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Upper.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Upper.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -623,7 +623,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\UpperFirst

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/UpperFirst.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/UpperFirst.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -644,7 +644,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\UpperWords

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/UpperWords.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/UpperWords.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -665,7 +665,7 @@ public function __invoke( string $input );

Class Phalcon\Filter\Sanitize\Url

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Sanitize/Url.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Sanitize/Url.zep) | Namespace | Phalcon\Filter\Sanitize | @@ -686,7 +686,7 @@ public function __invoke( mixed $input );

Class Phalcon\Filter\Validation

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation.zep) | Namespace | Phalcon\Filter | | Uses | Phalcon\Di\Di, Phalcon\Di\DiInterface, Phalcon\Di\Injectable, Phalcon\Filter\FilterInterface, Phalcon\Messages\MessageInterface, Phalcon\Messages\Messages, Phalcon\Filter\Validation\ValidationInterface, Phalcon\Filter\Validation\Exception, Phalcon\Filter\Validation\ValidatorInterface, Phalcon\Filter\Validation\AbstractCombinedFieldsValidator | @@ -877,7 +877,7 @@ Internal validations, if it returns true, then skip the current validator

Abstract Class Phalcon\Filter\Validation\AbstractCombinedFieldsValidator

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/AbstractCombinedFieldsValidator.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/AbstractCombinedFieldsValidator.zep) | Namespace | Phalcon\Filter\Validation | | Extends | AbstractValidator | @@ -888,7 +888,7 @@ This is a base class for combined fields validators

Abstract Class Phalcon\Filter\Validation\AbstractValidator

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/AbstractValidator.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/AbstractValidator.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Support\Helper\Arr\Whitelist, Phalcon\Messages\Message, Phalcon\Filter\Validation | @@ -1009,7 +1009,7 @@ Prepares a label for the field.

Abstract Class Phalcon\Filter\Validation\AbstractValidatorComposite

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/AbstractValidatorComposite.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/AbstractValidatorComposite.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Filter\Validation | @@ -1046,7 +1046,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Exception.zep) | Namespace | Phalcon\Filter\Validation | | Extends | \Exception | @@ -1057,7 +1057,7 @@ Exceptions thrown in Phalcon\Filter\Validation\* classes will use this class

Interface Phalcon\Filter\Validation\ValidationInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/ValidationInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/ValidationInterface.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Di\Injectable, Phalcon\Messages\MessageInterface, Phalcon\Messages\Messages | @@ -1156,7 +1156,7 @@ Validate a set of data according to a set of rules

Class Phalcon\Filter\Validation\Validator\Alnum

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Alnum.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Alnum.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1221,7 +1221,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Alpha

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Alpha.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Alpha.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1286,7 +1286,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Between

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Between.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Between.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1362,7 +1362,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Callback

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Callback.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Callback.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\ValidatorInterface, Phalcon\Filter\Validation\AbstractValidator | @@ -1437,7 +1437,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Confirmation

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Confirmation.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Confirmation.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Exception, Phalcon\Filter\Validation\AbstractValidator | @@ -1513,7 +1513,7 @@ Compare strings

Class Phalcon\Filter\Validation\Validator\CreditCard

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/CreditCard.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/CreditCard.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1578,7 +1578,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Date

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Date.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Date.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | DateTime, Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1648,7 +1648,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Digit

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Digit.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Digit.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1713,7 +1713,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Email

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Email.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Email.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -1778,7 +1778,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Exception.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Extends | \Exception | @@ -1790,7 +1790,7 @@ class

Class Phalcon\Filter\Validation\Validator\ExclusionIn

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/ExclusionIn.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/ExclusionIn.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Filter\Validation\Exception | @@ -1866,7 +1866,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Support\Helper\Arr\Get, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidatorComposite, Phalcon\Filter\Validation\Validator\File\MimeType, Phalcon\Filter\Validation\Validator\File\Resolution\Equal, Phalcon\Filter\Validation\Validator\File\Resolution\Max, Phalcon\Filter\Validation\Validator\File\Resolution\Min, Phalcon\Filter\Validation\Validator\File\Size\Equal, Phalcon\Filter\Validation\Validator\File\Size\Max, Phalcon\Filter\Validation\Validator\File\Size\Min | @@ -1954,7 +1954,7 @@ Constructor

Abstract Class Phalcon\Filter\Validation\Validator\File\AbstractFile

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/AbstractFile.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/AbstractFile.zep) | Namespace | Phalcon\Filter\Validation\Validator\File | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -2119,7 +2119,7 @@ overriden in a subclass if you do not want to check uploaded files

Class Phalcon\Filter\Validation\Validator\File\MimeType

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/MimeType.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/MimeType.zep) | Namespace | Phalcon\Filter\Validation\Validator\File | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Exception | @@ -2192,7 +2192,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Resolution\Equal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Resolution/Equal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Resolution/Equal.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Resolution | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2262,7 +2262,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Resolution\Max

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Resolution/Max.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Resolution/Max.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Resolution | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2337,7 +2337,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Resolution\Min

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Resolution/Min.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Resolution/Min.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Resolution | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2412,7 +2412,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Size\Equal

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Size/Equal.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Size/Equal.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Size | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2487,7 +2487,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Size\Max

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Size/Max.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Size/Max.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Size | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2562,7 +2562,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\File\Size\Min

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/File/Size/Min.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/File/Size/Min.zep) | Namespace | Phalcon\Filter\Validation\Validator\File\Size | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\Validator\File\AbstractFile | @@ -2637,7 +2637,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Identical

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Identical.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Identical.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -2707,7 +2707,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\InclusionIn

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/InclusionIn.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/InclusionIn.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Filter\Validation\Exception | @@ -2777,7 +2777,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Ip

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Ip.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Ip.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Messages\Message | @@ -2865,7 +2865,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Numericality

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Numericality.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Numericality.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -2930,7 +2930,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\PresenceOf

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/PresenceOf.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/PresenceOf.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -2995,7 +2995,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Regex

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Regex.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Regex.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -3065,7 +3065,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\StringLength

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/StringLength.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/StringLength.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Filter\Validation\AbstractValidatorComposite, Phalcon\Filter\Validation\Validator\StringLength\Max, Phalcon\Filter\Validation\Validator\StringLength\Min, Phalcon\Filter\Validation\Exception | @@ -3145,7 +3145,7 @@ Constructor

Class Phalcon\Filter\Validation\Validator\StringLength\Max

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/StringLength/Max.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/StringLength/Max.zep) | Namespace | Phalcon\Filter\Validation\Validator\StringLength | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Filter\Validation\Exception | @@ -3222,7 +3222,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\StringLength\Min

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/StringLength/Min.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/StringLength/Min.zep) | Namespace | Phalcon\Filter\Validation\Validator\StringLength | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator, Phalcon\Filter\Validation\Exception | @@ -3299,7 +3299,7 @@ Executes the validation

Class Phalcon\Filter\Validation\Validator\Uniqueness

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Uniqueness.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Uniqueness.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Mvc\Model, Phalcon\Mvc\ModelInterface, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractCombinedFieldsValidator, Phalcon\Filter\Validation\Exception | @@ -3423,7 +3423,7 @@ Uniqueness method used for model

Class Phalcon\Filter\Validation\Validator\Url

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/Validator/Url.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/Validator/Url.zep) | Namespace | Phalcon\Filter\Validation\Validator | | Uses | Phalcon\Messages\Message, Phalcon\Filter\Validation, Phalcon\Filter\Validation\AbstractValidator | @@ -3488,7 +3488,7 @@ Executes the validation

Interface Phalcon\Filter\Validation\ValidatorCompositeInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/ValidatorCompositeInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/ValidatorCompositeInterface.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Filter\Validation | @@ -3514,7 +3514,7 @@ Executes the validation

Class Phalcon\Filter\Validation\ValidatorFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/ValidatorFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/ValidatorFactory.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Factory\AbstractFactory | @@ -3558,7 +3558,7 @@ Returns the available adapters

Interface Phalcon\Filter\Validation\ValidatorInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Filter/Validation/ValidatorInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Filter/Validation/ValidatorInterface.zep) | Namespace | Phalcon\Filter\Validation | | Uses | Phalcon\Filter\Validation | diff --git a/docs/api/phalcon_flash.md b/docs/api/phalcon_flash.md index ad88fa36d..435f70b1b 100644 --- a/docs/api/phalcon_flash.md +++ b/docs/api/phalcon_flash.md @@ -7,7 +7,7 @@

Abstract Class Phalcon\Flash\AbstractFlash

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Flash/AbstractFlash.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Flash/AbstractFlash.zep) | Namespace | Phalcon\Flash | | Uses | Phalcon\Di\Di, Phalcon\Di\DiInterface, Phalcon\Di\AbstractInjectionAware, Phalcon\Html\Escaper\EscaperInterface, Phalcon\Session\ManagerInterface, Phalcon\Support\Helper\Str\Interpolate | @@ -228,7 +228,7 @@ $flash->warning("Hey, this is important");

Class Phalcon\Flash\Direct

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Flash/Direct.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Flash/Direct.zep) | Namespace | Phalcon\Flash | | Extends | AbstractFlash | @@ -256,7 +256,7 @@ Prints the messages accumulated in the flasher

Class Phalcon\Flash\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Flash/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Flash/Exception.zep) | Namespace | Phalcon\Flash | | Extends | \Exception | @@ -267,7 +267,7 @@ Exceptions thrown in Phalcon\Flash classes will use this class

Interface Phalcon\Flash\FlashInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Flash/FlashInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Flash/FlashInterface.zep) | Namespace | Phalcon\Flash | @@ -312,7 +312,7 @@ Shows a HTML warning message

Class Phalcon\Flash\Session

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Flash/Session.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Flash/Session.zep) | Namespace | Phalcon\Flash | | Uses | Phalcon\Session\ManagerInterface | diff --git a/docs/api/phalcon_forms.md b/docs/api/phalcon_forms.md index b34245a35..35b33e75e 100644 --- a/docs/api/phalcon_forms.md +++ b/docs/api/phalcon_forms.md @@ -19,7 +19,7 @@

Abstract Class Phalcon\Forms\Element\AbstractElement

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/AbstractElement.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/AbstractElement.zep) | Namespace | Phalcon\Forms\Element | | Uses | InvalidArgumentException, Phalcon\Di\DiInterface, Phalcon\Di\Di, Phalcon\Filter\Validation\ValidatorInterface, Phalcon\Forms\Form, Phalcon\Forms\Exception, Phalcon\Html\Escaper, Phalcon\Html\TagFactory, Phalcon\Messages\MessageInterface, Phalcon\Messages\Messages | @@ -305,7 +305,7 @@ Returns the tagFactory; throws exception if not present

Class Phalcon\Forms\Element\Check

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Check.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Check.zep) | Namespace | Phalcon\Forms\Element | | Extends | AbstractElement | @@ -325,7 +325,7 @@ protected method = inputCheckbox;

Class Phalcon\Forms\Element\Date

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Date.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Date.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -346,7 +346,7 @@ protected method = inputDate;

Interface Phalcon\Forms\Element\ElementInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/ElementInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/ElementInterface.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Forms\Form, Phalcon\Messages\MessageInterface, Phalcon\Messages\Messages, Phalcon\Filter\Validation\ValidatorInterface | @@ -542,7 +542,7 @@ Sets options for the element

Class Phalcon\Forms\Element\Email

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Email.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Email.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -563,7 +563,7 @@ protected method = inputEmail;

Class Phalcon\Forms\Element\File

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/File.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/File.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -584,7 +584,7 @@ protected method = inputFile;

Class Phalcon\Forms\Element\Hidden

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Hidden.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Hidden.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -605,7 +605,7 @@ protected method = inputHidden;

Class Phalcon\Forms\Element\Numeric

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Numeric.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Numeric.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -626,7 +626,7 @@ protected method = inputNumeric;

Class Phalcon\Forms\Element\Password

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Password.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Password.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -647,7 +647,7 @@ protected method = inputPassword;

Class Phalcon\Forms\Element\Radio

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Radio.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Radio.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -668,7 +668,7 @@ protected method = inputRadio;

Class Phalcon\Forms\Element\Select

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Select.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Select.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag\Select | @@ -729,7 +729,7 @@ helpers according to the element parameters

Class Phalcon\Forms\Element\Submit

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Submit.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Submit.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -750,7 +750,7 @@ protected method = inputSubmit;

Class Phalcon\Forms\Element\Text

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/Text.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/Text.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Forms\Exception | @@ -762,7 +762,7 @@ Component INPUT[type=text] for forms

Class Phalcon\Forms\Element\TextArea

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Element/TextArea.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Element/TextArea.zep) | Namespace | Phalcon\Forms\Element | | Uses | Phalcon\Tag | @@ -783,7 +783,7 @@ protected method = inputTextarea;

Class Phalcon\Forms\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Exception.zep) | Namespace | Phalcon\Forms | | Extends | \Exception | @@ -794,7 +794,7 @@ Exceptions thrown in Phalcon\Forms will use this class

Class Phalcon\Forms\Form

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Form.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Form.zep) | Namespace | Phalcon\Forms | | Uses | Countable, Iterator, Phalcon\Di\Injectable, Phalcon\Di\DiInterface, Phalcon\Filter\FilterInterface, Phalcon\Forms\Element\ElementInterface, Phalcon\Html\Attributes, Phalcon\Html\Attributes\AttributesInterface, Phalcon\Html\TagFactory, Phalcon\Messages\Messages, Phalcon\Tag, Phalcon\Filter\Validation, Phalcon\Filter\Validation\ValidationInterface | @@ -1120,7 +1120,7 @@ Check if the current element in the iterator is valid

Class Phalcon\Forms\Manager

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Forms/Manager.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Forms/Manager.zep) | Namespace | Phalcon\Forms | diff --git a/docs/api/phalcon_html.md b/docs/api/phalcon_html.md index e3553e4d7..ad4b642bb 100644 --- a/docs/api/phalcon_html.md +++ b/docs/api/phalcon_html.md @@ -69,7 +69,7 @@

Class Phalcon\Html\Attributes

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Attributes.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Attributes.zep) | Namespace | Phalcon\Html | | Uses | Phalcon\Support\Collection, Phalcon\Html\Attributes\RenderInterface | @@ -103,7 +103,7 @@ protected function renderAttributes( array $attributes ): string;

Interface Phalcon\Html\Attributes\AttributesInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Attributes/AttributesInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Attributes/AttributesInterface.zep) | Namespace | Phalcon\Html\Attributes | | Uses | Phalcon\Html\Attributes | @@ -131,7 +131,7 @@ Set Attributes

Interface Phalcon\Html\Attributes\RenderInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Attributes/RenderInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Attributes/RenderInterface.zep) | Namespace | Phalcon\Html\Attributes | @@ -152,7 +152,7 @@ Generate a string represetation

Class Phalcon\Html\Breadcrumbs

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Breadcrumbs.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Breadcrumbs.zep) | Namespace | Phalcon\Html | | Uses | Phalcon\Di\DiInterface | @@ -260,7 +260,7 @@ Returns the internal breadcrumbs array

Class Phalcon\Html\Escaper

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Escaper.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Escaper.zep) | Namespace | Phalcon\Html | | Uses | Phalcon\Html\Escaper\EscaperInterface | @@ -453,7 +453,7 @@ Proxy method for testing

Interface Phalcon\Html\Escaper\EscaperInterface

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Escaper/EscaperInterface.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Escaper/EscaperInterface.zep) | Namespace | Phalcon\Html\Escaper | @@ -516,7 +516,7 @@ Escapes a URL. Internally uses rawurlencode

Class Phalcon\Html\Escaper\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Escaper/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Escaper/Exception.zep) | Namespace | Phalcon\Html\Escaper | | Extends | \Exception | @@ -527,7 +527,7 @@ Exceptions thrown in Phalcon\Html\Escaper will use this class

Class Phalcon\Html\EscaperFactory

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/EscaperFactory.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/EscaperFactory.zep) | Namespace | Phalcon\Html | @@ -546,7 +546,7 @@ Create a new instance of the object

Class Phalcon\Html\Exception

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Exception.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Exception.zep) | Namespace | Phalcon\Html | | Extends | \Exception | @@ -559,7 +559,7 @@ Exceptions thrown in Phalcon\Html\Tag will use this class

Abstract Class Phalcon\Html\Helper\AbstractHelper

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/AbstractHelper.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/AbstractHelper.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Escaper\EscaperInterface, Phalcon\Html\Exception | @@ -655,7 +655,7 @@ Produces a self close tag i.e.

Abstract Class Phalcon\Html\Helper\AbstractList

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/AbstractList.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/AbstractList.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Exception | @@ -707,7 +707,7 @@ Returns the tag name.

Abstract Class Phalcon\Html\Helper\AbstractSeries

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/AbstractSeries.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/AbstractSeries.zep) | Namespace | Phalcon\Html\Helper | | Extends | AbstractHelper | @@ -750,7 +750,7 @@ Returns the tag name.

Class Phalcon\Html\Helper\Anchor

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/Anchor.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/Anchor.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Exception | @@ -777,7 +777,7 @@ protected function processAttributes( string $href, array $attributes ): array;

Class Phalcon\Html\Helper\Base

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/Base.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/Base.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Exception | @@ -798,7 +798,7 @@ Produce a `` tag.

Class Phalcon\Html\Helper\Body

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/Body.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/Body.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Exception | @@ -819,7 +819,7 @@ Produce a `` tag.

Class Phalcon\Html\Helper\Button

-[Source on GitHub](https://github.com/phalcon/cphalcon/blob/{{ pageVersion }}.x/phalcon/Html/Helper/Button.zep) +[Source on GitHub](https://github.com/phalcon/cphalcon/blob/5.0.x/phalcon/Html/Helper/Button.zep) | Namespace | Phalcon\Html\Helper | | Uses | Phalcon\Html\Exception | @@ -840,7 +840,7 @@ Produce a `