├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── feature_request.yaml │ └── support_request.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config.codekit3 ├── docs ├── .sidebar.json ├── README.md ├── developers │ ├── events.md │ ├── extensibility.md │ ├── graphql.md │ ├── nav.md │ └── node.md ├── feature-tour │ └── overview.md ├── get-started │ ├── configuration.md │ ├── installation-setup.md │ └── requirements.md ├── getting-elements │ └── node-queries.md └── template-guides │ ├── available-variables.md │ ├── breadcrumbs.md │ ├── eager-loading.md │ ├── navigation-field.md │ └── rendering-nodes.md └── src ├── Navigation.php ├── assetbundles └── NavigationAsset.php ├── base ├── NodeType.php ├── NodeTypeInterface.php └── PluginTrait.php ├── console └── controllers │ └── NavsController.php ├── controllers ├── BaseController.php ├── NavsController.php └── NodesController.php ├── elements ├── Node.php ├── conditions │ ├── NodeCondition.php │ └── TypeConditionRule.php └── db │ └── NodeQuery.php ├── events ├── NavEvent.php ├── NodeActiveEvent.php ├── NodeEvent.php ├── RegisterElementEvent.php └── RegisterNodeTypeEvent.php ├── fieldlayoutelements ├── ClassesField.php ├── CustomAttributesField.php ├── NewWindowField.php ├── NodeTypeElements.php └── UrlSuffixField.php ├── fields └── NavigationField.php ├── gql ├── arguments │ └── NodeArguments.php ├── interfaces │ └── NodeInterface.php ├── queries │ └── NodeQuery.php ├── resolvers │ └── NodeResolver.php └── types │ ├── CustomAttributeType.php │ ├── NodeType.php │ └── generators │ ├── CustomAttributeGenerator.php │ └── NodeGenerator.php ├── helpers ├── Gql.php ├── Plugin.php └── ProjectConfigData.php ├── icon-mask.svg ├── icon.svg ├── integrations └── NodeFeedMeElement.php ├── migrations ├── Install.php ├── m231229_000000_content_refactor.php └── m250830_000000_url_size.php ├── models ├── Nav.php ├── Nav_SiteSettings.php └── Settings.php ├── nodetypes ├── CustomType.php ├── PassiveType.php └── SiteType.php ├── records ├── Nav.php ├── Nav_SiteSettings.php └── Node.php ├── resources ├── dist │ ├── css │ │ └── navigation.css │ ├── fonts │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ └── js │ │ ├── navigation.js │ │ └── navigation.js.map └── src │ ├── js │ ├── _jquery.serializejson.min.js │ └── navigation.js │ └── scss │ ├── _font-awesome.scss │ └── navigation.scss ├── services ├── Breadcrumbs.php ├── Elements.php ├── Navs.php ├── NodeTypes.php └── Nodes.php ├── templates ├── _field │ ├── input.html │ └── settings.html ├── _integrations │ └── feed-me │ │ ├── column.html │ │ ├── fields │ │ └── nested-node.html │ │ ├── groups.html │ │ └── map.html ├── _layouts │ └── index.html ├── _special │ └── render.html ├── _types │ ├── custom │ │ └── modal.html │ └── site │ │ ├── modal.html │ │ └── settings.html ├── navs │ ├── _build.html │ ├── _edit.html │ └── index.html └── settings │ ├── _panes │ └── general.html │ └── index.html ├── translations ├── en │ └── navigation.php ├── fr │ └── navigation.php ├── hu │ └── navigation.php └── nl │ └── navigation.php └── variables └── NavigationVariable.php /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/.github/ISSUE_TEMPLATE/support_request.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/composer.json -------------------------------------------------------------------------------- /config.codekit3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/config.codekit3 -------------------------------------------------------------------------------- /docs/.sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/.sidebar.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/developers/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/developers/events.md -------------------------------------------------------------------------------- /docs/developers/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/developers/extensibility.md -------------------------------------------------------------------------------- /docs/developers/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/developers/graphql.md -------------------------------------------------------------------------------- /docs/developers/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/developers/nav.md -------------------------------------------------------------------------------- /docs/developers/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/developers/node.md -------------------------------------------------------------------------------- /docs/feature-tour/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/feature-tour/overview.md -------------------------------------------------------------------------------- /docs/get-started/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/get-started/configuration.md -------------------------------------------------------------------------------- /docs/get-started/installation-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/get-started/installation-setup.md -------------------------------------------------------------------------------- /docs/get-started/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/get-started/requirements.md -------------------------------------------------------------------------------- /docs/getting-elements/node-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/getting-elements/node-queries.md -------------------------------------------------------------------------------- /docs/template-guides/available-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/template-guides/available-variables.md -------------------------------------------------------------------------------- /docs/template-guides/breadcrumbs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/template-guides/breadcrumbs.md -------------------------------------------------------------------------------- /docs/template-guides/eager-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/template-guides/eager-loading.md -------------------------------------------------------------------------------- /docs/template-guides/navigation-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/template-guides/navigation-field.md -------------------------------------------------------------------------------- /docs/template-guides/rendering-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/docs/template-guides/rendering-nodes.md -------------------------------------------------------------------------------- /src/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/Navigation.php -------------------------------------------------------------------------------- /src/assetbundles/NavigationAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/assetbundles/NavigationAsset.php -------------------------------------------------------------------------------- /src/base/NodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/base/NodeType.php -------------------------------------------------------------------------------- /src/base/NodeTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/base/NodeTypeInterface.php -------------------------------------------------------------------------------- /src/base/PluginTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/base/PluginTrait.php -------------------------------------------------------------------------------- /src/console/controllers/NavsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/console/controllers/NavsController.php -------------------------------------------------------------------------------- /src/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/controllers/BaseController.php -------------------------------------------------------------------------------- /src/controllers/NavsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/controllers/NavsController.php -------------------------------------------------------------------------------- /src/controllers/NodesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/controllers/NodesController.php -------------------------------------------------------------------------------- /src/elements/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/elements/Node.php -------------------------------------------------------------------------------- /src/elements/conditions/NodeCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/elements/conditions/NodeCondition.php -------------------------------------------------------------------------------- /src/elements/conditions/TypeConditionRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/elements/conditions/TypeConditionRule.php -------------------------------------------------------------------------------- /src/elements/db/NodeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/elements/db/NodeQuery.php -------------------------------------------------------------------------------- /src/events/NavEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/events/NavEvent.php -------------------------------------------------------------------------------- /src/events/NodeActiveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/events/NodeActiveEvent.php -------------------------------------------------------------------------------- /src/events/NodeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/events/NodeEvent.php -------------------------------------------------------------------------------- /src/events/RegisterElementEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/events/RegisterElementEvent.php -------------------------------------------------------------------------------- /src/events/RegisterNodeTypeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/events/RegisterNodeTypeEvent.php -------------------------------------------------------------------------------- /src/fieldlayoutelements/ClassesField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fieldlayoutelements/ClassesField.php -------------------------------------------------------------------------------- /src/fieldlayoutelements/CustomAttributesField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fieldlayoutelements/CustomAttributesField.php -------------------------------------------------------------------------------- /src/fieldlayoutelements/NewWindowField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fieldlayoutelements/NewWindowField.php -------------------------------------------------------------------------------- /src/fieldlayoutelements/NodeTypeElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fieldlayoutelements/NodeTypeElements.php -------------------------------------------------------------------------------- /src/fieldlayoutelements/UrlSuffixField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fieldlayoutelements/UrlSuffixField.php -------------------------------------------------------------------------------- /src/fields/NavigationField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/fields/NavigationField.php -------------------------------------------------------------------------------- /src/gql/arguments/NodeArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/arguments/NodeArguments.php -------------------------------------------------------------------------------- /src/gql/interfaces/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/interfaces/NodeInterface.php -------------------------------------------------------------------------------- /src/gql/queries/NodeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/queries/NodeQuery.php -------------------------------------------------------------------------------- /src/gql/resolvers/NodeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/resolvers/NodeResolver.php -------------------------------------------------------------------------------- /src/gql/types/CustomAttributeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/types/CustomAttributeType.php -------------------------------------------------------------------------------- /src/gql/types/NodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/types/NodeType.php -------------------------------------------------------------------------------- /src/gql/types/generators/CustomAttributeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/types/generators/CustomAttributeGenerator.php -------------------------------------------------------------------------------- /src/gql/types/generators/NodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/gql/types/generators/NodeGenerator.php -------------------------------------------------------------------------------- /src/helpers/Gql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/helpers/Gql.php -------------------------------------------------------------------------------- /src/helpers/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/helpers/Plugin.php -------------------------------------------------------------------------------- /src/helpers/ProjectConfigData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/helpers/ProjectConfigData.php -------------------------------------------------------------------------------- /src/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/icon-mask.svg -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/integrations/NodeFeedMeElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/integrations/NodeFeedMeElement.php -------------------------------------------------------------------------------- /src/migrations/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/migrations/Install.php -------------------------------------------------------------------------------- /src/migrations/m231229_000000_content_refactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/migrations/m231229_000000_content_refactor.php -------------------------------------------------------------------------------- /src/migrations/m250830_000000_url_size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/migrations/m250830_000000_url_size.php -------------------------------------------------------------------------------- /src/models/Nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/models/Nav.php -------------------------------------------------------------------------------- /src/models/Nav_SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/models/Nav_SiteSettings.php -------------------------------------------------------------------------------- /src/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/models/Settings.php -------------------------------------------------------------------------------- /src/nodetypes/CustomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/nodetypes/CustomType.php -------------------------------------------------------------------------------- /src/nodetypes/PassiveType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/nodetypes/PassiveType.php -------------------------------------------------------------------------------- /src/nodetypes/SiteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/nodetypes/SiteType.php -------------------------------------------------------------------------------- /src/records/Nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/records/Nav.php -------------------------------------------------------------------------------- /src/records/Nav_SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/records/Nav_SiteSettings.php -------------------------------------------------------------------------------- /src/records/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/records/Node.php -------------------------------------------------------------------------------- /src/resources/dist/css/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/css/navigation.css -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/resources/dist/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/resources/dist/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/js/navigation.js -------------------------------------------------------------------------------- /src/resources/dist/js/navigation.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/dist/js/navigation.js.map -------------------------------------------------------------------------------- /src/resources/src/js/_jquery.serializejson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/src/js/_jquery.serializejson.min.js -------------------------------------------------------------------------------- /src/resources/src/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/src/js/navigation.js -------------------------------------------------------------------------------- /src/resources/src/scss/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/src/scss/_font-awesome.scss -------------------------------------------------------------------------------- /src/resources/src/scss/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/resources/src/scss/navigation.scss -------------------------------------------------------------------------------- /src/services/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/services/Breadcrumbs.php -------------------------------------------------------------------------------- /src/services/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/services/Elements.php -------------------------------------------------------------------------------- /src/services/Navs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/services/Navs.php -------------------------------------------------------------------------------- /src/services/NodeTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/services/NodeTypes.php -------------------------------------------------------------------------------- /src/services/Nodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/services/Nodes.php -------------------------------------------------------------------------------- /src/templates/_field/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_field/input.html -------------------------------------------------------------------------------- /src/templates/_field/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_field/settings.html -------------------------------------------------------------------------------- /src/templates/_integrations/feed-me/column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_integrations/feed-me/column.html -------------------------------------------------------------------------------- /src/templates/_integrations/feed-me/fields/nested-node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_integrations/feed-me/fields/nested-node.html -------------------------------------------------------------------------------- /src/templates/_integrations/feed-me/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_integrations/feed-me/groups.html -------------------------------------------------------------------------------- /src/templates/_integrations/feed-me/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_integrations/feed-me/map.html -------------------------------------------------------------------------------- /src/templates/_layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_layouts/index.html -------------------------------------------------------------------------------- /src/templates/_special/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_special/render.html -------------------------------------------------------------------------------- /src/templates/_types/custom/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_types/custom/modal.html -------------------------------------------------------------------------------- /src/templates/_types/site/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_types/site/modal.html -------------------------------------------------------------------------------- /src/templates/_types/site/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/_types/site/settings.html -------------------------------------------------------------------------------- /src/templates/navs/_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/navs/_build.html -------------------------------------------------------------------------------- /src/templates/navs/_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/navs/_edit.html -------------------------------------------------------------------------------- /src/templates/navs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/navs/index.html -------------------------------------------------------------------------------- /src/templates/settings/_panes/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/settings/_panes/general.html -------------------------------------------------------------------------------- /src/templates/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/templates/settings/index.html -------------------------------------------------------------------------------- /src/translations/en/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/translations/en/navigation.php -------------------------------------------------------------------------------- /src/translations/fr/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/translations/fr/navigation.php -------------------------------------------------------------------------------- /src/translations/hu/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/translations/hu/navigation.php -------------------------------------------------------------------------------- /src/translations/nl/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/translations/nl/navigation.php -------------------------------------------------------------------------------- /src/variables/NavigationVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verbb/navigation/HEAD/src/variables/NavigationVariable.php --------------------------------------------------------------------------------