├── .gitattributes ├── Config └── config.php ├── Controller └── NavLinksController.php ├── CustomNavigationLinksBundle.php ├── Entity ├── NavLinks.php └── NavLinksRepository.php ├── Event └── NavLinksEvent.php ├── EventListener └── NavLinksSubscriber.php ├── Form └── Type │ └── NavLinkType.php ├── Integration └── NavLinksIntegration.php ├── LICENSE ├── Model └── NavLinksModel.php ├── README.md ├── Repository └── NavLinksRepository.php ├── Translations └── en_US │ └── messages.ini ├── Views └── NavLinks │ ├── customNavLinks.html.php │ ├── details.html.php │ ├── form.html.php │ └── index.html.php └── composer.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/.gitattributes -------------------------------------------------------------------------------- /Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Config/config.php -------------------------------------------------------------------------------- /Controller/NavLinksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Controller/NavLinksController.php -------------------------------------------------------------------------------- /CustomNavigationLinksBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/CustomNavigationLinksBundle.php -------------------------------------------------------------------------------- /Entity/NavLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Entity/NavLinks.php -------------------------------------------------------------------------------- /Entity/NavLinksRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Entity/NavLinksRepository.php -------------------------------------------------------------------------------- /Event/NavLinksEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Event/NavLinksEvent.php -------------------------------------------------------------------------------- /EventListener/NavLinksSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/EventListener/NavLinksSubscriber.php -------------------------------------------------------------------------------- /Form/Type/NavLinkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Form/Type/NavLinkType.php -------------------------------------------------------------------------------- /Integration/NavLinksIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Integration/NavLinksIntegration.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/NavLinksModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Model/NavLinksModel.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/README.md -------------------------------------------------------------------------------- /Repository/NavLinksRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Repository/NavLinksRepository.php -------------------------------------------------------------------------------- /Translations/en_US/messages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Translations/en_US/messages.ini -------------------------------------------------------------------------------- /Views/NavLinks/customNavLinks.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Views/NavLinks/customNavLinks.html.php -------------------------------------------------------------------------------- /Views/NavLinks/details.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Views/NavLinks/details.html.php -------------------------------------------------------------------------------- /Views/NavLinks/form.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Views/NavLinks/form.html.php -------------------------------------------------------------------------------- /Views/NavLinks/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/Views/NavLinks/index.html.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TornMarketing/Mautic-Custom-Navlinks/HEAD/composer.json --------------------------------------------------------------------------------