diff --git a/src/.vitepress/config.js b/src/.vitepress/config.js index 2111823b..de6f4f62 100644 --- a/src/.vitepress/config.js +++ b/src/.vitepress/config.js @@ -41,7 +41,6 @@ export default { nav: [ {text: 'Guide', link: '/guide/'}, {text: 'Cookbook', link: '/cookbook/'}, - {text: 'Third-Party Integrations', link: '/third-party-integrations/'}, {text: 'Internals', link: '/internals/'}, {text: 'Site', link: 'https://www.yiiframework.com'} ], @@ -209,7 +208,7 @@ export default { {text: 'Sentry Integration', link: '/cookbook/sentry-integration'}, {text: 'Using a Custom Migration Template', link: '/cookbook/custom-migration-template'}, {text: 'Using Yii in Third-Party Applications', link: '/cookbook/using-yii-in-third-party-apps'}, - {text: 'Third-Party Integrations', link: '/third-party-integrations/'} + {text: 'Third-Party Integrations', link: '/cookbook/third-party-integrations/'} ] }, { @@ -249,14 +248,6 @@ export default { ] } ], - '/third-party-integrations/': [ - { - text: 'Third-Party Integrations', - items: [ - {text: 'Symfony Messenger integration guide', link: '/third-party-integrations/symfony-messenger-integration-guide'}, - ] - } - ], '/internals/': [ { text: 'Internals', diff --git a/src/cookbook/index.md b/src/cookbook/index.md index f22b0fc7..a7d1953a 100644 --- a/src/cookbook/index.md +++ b/src/cookbook/index.md @@ -19,6 +19,7 @@ This book conforms to the [Terms of Yii Documentation](https://www.yiiframework. - [Sentry integration](sentry-integration.md) - [Using a custom migration template](custom-migration-template.md) - [Using Yii in third-party applications](using-yii-in-third-party-apps.md) +- [Third-party integrations](third-party-integrations/index.md) - [Working on Windows](working-on-windows.md) - [Opening files directly in PhpStorm](opening-files-in-phpstorm.md) - [Configuring Xdebug](configuring-xdebug.md) diff --git a/src/third-party-integrations/index.md b/src/cookbook/third-party-integrations/index.md similarity index 74% rename from src/third-party-integrations/index.md rename to src/cookbook/third-party-integrations/index.md index 008c6bba..be218d55 100644 --- a/src/third-party-integrations/index.md +++ b/src/cookbook/third-party-integrations/index.md @@ -1,6 +1,6 @@ # Third-Party Integrations -Third-Party Integrations is a collection of community-contributed guides for Third-Party integrated packages. +This is a collection of community-contributed guides for integrating third-party packages with Yii3. - The Yii community creates the guides. - Yii core team members curate and edit it. diff --git a/src/third-party-integrations/symfony-messenger-integration-guide.md b/src/cookbook/third-party-integrations/symfony-messenger-integration-guide.md similarity index 100% rename from src/third-party-integrations/symfony-messenger-integration-guide.md rename to src/cookbook/third-party-integrations/symfony-messenger-integration-guide.md diff --git a/src/index.md b/src/index.md index 2237c734..7e249969 100644 --- a/src/index.md +++ b/src/index.md @@ -32,6 +32,5 @@ features: - [The Definitive Guide](guide/) — the comprehensive guide covering all aspects of the framework. - [Community Cookbook](cookbook/) — a collection of community-contributed tips, tricks, and solutions for common Yii development tasks. -- [Third-Party Integrations](third-party-integrations/) — a collection of community-contributed guides for Third-Party integrated packages. - [Internals](internals/) — documentation for developers contributing to the Yii framework itself, including guidelines, workflows, and best practices.