├── .drone.yml ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── crowdin-wf.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RoboFile.dist.ini ├── RoboFile.php ├── composer.json ├── composer.lock ├── crowdin.yml ├── cypress.config.dist.js ├── docs └── README.md ├── jorobo.dist.ini ├── manifest.xml ├── package.json ├── phpstan.neon ├── phpunit.xml.dist ├── renovate.json ├── ruleset.xml ├── src ├── administrator │ ├── components │ │ └── com_weblinks │ │ │ ├── access.xml │ │ │ ├── config.xml │ │ │ ├── forms │ │ │ ├── category.xml │ │ │ ├── filter_weblinks.xml │ │ │ └── weblink.xml │ │ │ ├── helpers │ │ │ └── weblinks.php │ │ │ ├── script.php │ │ │ ├── services │ │ │ └── provider.php │ │ │ ├── sql │ │ │ ├── install.mysql.sql │ │ │ ├── install.postgresql.sql │ │ │ ├── uninstall.mysql.sql │ │ │ ├── uninstall.postgresql.sql │ │ │ └── updates │ │ │ │ ├── mysql │ │ │ │ ├── 3.4.0.sql │ │ │ │ ├── 3.5.1.sql │ │ │ │ ├── 4.0.0.sql │ │ │ │ └── 4.4.0.sql │ │ │ │ └── postgresql │ │ │ │ ├── 3.4.0.sql │ │ │ │ ├── 4.0.0.sql │ │ │ │ └── 4.4.0.sql │ │ │ ├── src │ │ │ ├── Controller │ │ │ │ ├── DisplayController.php │ │ │ │ ├── WeblinkController.php │ │ │ │ └── WeblinksController.php │ │ │ ├── Extension │ │ │ │ └── WeblinksComponent.php │ │ │ ├── Field │ │ │ │ └── Modal │ │ │ │ │ └── WeblinkField.php │ │ │ ├── Helper │ │ │ │ ├── AssociationsHelper.php │ │ │ │ └── WeblinksHelper.php │ │ │ ├── Model │ │ │ │ ├── WeblinkModel.php │ │ │ │ └── WeblinksModel.php │ │ │ ├── Service │ │ │ │ └── HTML │ │ │ │ │ ├── AdministratorService.php │ │ │ │ │ └── Icon.php │ │ │ ├── Table │ │ │ │ └── WeblinkTable.php │ │ │ └── View │ │ │ │ ├── Weblink │ │ │ │ └── HtmlView.php │ │ │ │ └── Weblinks │ │ │ │ └── HtmlView.php │ │ │ ├── tmpl │ │ │ ├── weblink │ │ │ │ ├── edit.php │ │ │ │ ├── edit_associations.php │ │ │ │ ├── edit_metadata.php │ │ │ │ ├── edit_params.php │ │ │ │ ├── modal.php │ │ │ │ ├── modal_associations.php │ │ │ │ ├── modal_metadata.php │ │ │ │ └── modal_params.php │ │ │ └── weblinks │ │ │ │ ├── default.php │ │ │ │ ├── default_batch_body.php │ │ │ │ ├── default_batch_footer.php │ │ │ │ ├── emptystate.php │ │ │ │ └── modal.php │ │ │ └── weblinks.xml │ ├── language │ │ └── en-GB │ │ │ ├── com_weblinks.ini │ │ │ └── com_weblinks.sys.ini │ └── manifests │ │ └── packages │ │ ├── pkg_weblinks.xml │ │ └── weblinks │ │ └── script.php ├── components │ └── com_weblinks │ │ ├── forms │ │ └── weblink.xml │ │ ├── helpers │ │ ├── icon.php │ │ └── route.php │ │ ├── src │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── WeblinkController.php │ │ ├── Helper │ │ │ ├── AssociationHelper.php │ │ │ └── RouteHelper.php │ │ ├── Model │ │ │ ├── CategoriesModel.php │ │ │ ├── CategoryModel.php │ │ │ ├── FormModel.php │ │ │ └── WeblinkModel.php │ │ ├── Service │ │ │ ├── Category.php │ │ │ └── Router.php │ │ └── View │ │ │ ├── Categories │ │ │ └── HtmlView.php │ │ │ ├── Category │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ │ ├── Form │ │ │ └── HtmlView.php │ │ │ └── Weblink │ │ │ └── HtmlView.php │ │ └── tmpl │ │ ├── categories │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php │ │ ├── category │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_children.php │ │ └── default_items.php │ │ ├── form │ │ ├── edit.php │ │ └── edit.xml │ │ └── weblink │ │ ├── default.php │ │ └── default.xml ├── language │ ├── de-DE │ │ ├── com_weblinks.ini │ │ └── com_weblinks.sys.ini │ └── en-GB │ │ ├── com_weblinks.ini │ │ ├── mod_weblinks.ini │ │ ├── mod_weblinks.sys.ini │ │ └── pkg_weblinks.sys.ini ├── media │ └── com_weblinks │ │ └── js │ │ ├── admin-weblinks-modal.js │ │ └── admin-weblinks-modal.min.js ├── modules │ └── mod_weblinks │ │ ├── mod_weblinks.xml │ │ ├── services │ │ └── provider.php │ │ ├── src │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ └── Helper │ │ │ └── WeblinksHelper.php │ │ └── tmpl │ │ └── default.php └── plugins │ ├── editors-xtd │ └── weblink │ │ ├── language │ │ └── en-GB │ │ │ ├── plg_editors-xtd_weblink.ini │ │ │ └── plg_editors-xtd_weblink.sys.ini │ │ ├── services │ │ └── provider.php │ │ ├── src │ │ └── Extension │ │ │ └── Weblink.php │ │ └── weblink.xml │ ├── finder │ └── weblinks │ │ ├── language │ │ └── en-GB │ │ │ ├── plg_finder_weblinks.ini │ │ │ └── plg_finder_weblinks.sys.ini │ │ ├── services │ │ └── provider.php │ │ ├── src │ │ └── Extension │ │ │ └── Weblinks.php │ │ └── weblinks.xml │ ├── search │ └── weblinks │ │ ├── language │ │ └── en-GB │ │ │ ├── plg_search_weblinks.ini │ │ │ └── plg_search_weblinks.sys.ini │ │ ├── services │ │ └── provider.php │ │ ├── src │ │ └── Extension │ │ │ └── Weblinks.php │ │ └── weblinks.xml │ └── system │ └── weblinks │ ├── language │ └── en-GB │ │ ├── plg_system_weblinks.ini │ │ └── plg_system_weblinks.sys.ini │ ├── services │ └── provider.php │ ├── src │ └── Extension │ │ └── Weblinks.php │ └── weblinks.xml └── tests ├── cypress ├── .eslinitrc.js ├── fixtures │ ├── .gitkeep │ ├── com_media │ │ ├── test-image-1.jpg │ │ ├── test-image-2.jpg │ │ └── test-image-3.jpg │ └── tuf │ │ ├── invalidMetadata.json │ │ └── validMetadata.json ├── integration │ ├── administrator │ │ └── components │ │ │ └── com_weblinks │ │ │ ├── Categories.cy.js │ │ │ ├── CheckPackage.cy.js │ │ │ └── Weblinks.cy.js │ ├── install │ │ └── install.cy.js │ ├── plugins │ │ └── finder │ │ │ └── weblinks │ │ │ └── Finder.cy.js │ └── site │ │ └── components │ │ └── com_weblinks │ │ ├── Categories.cy.js │ │ └── Weblinks.cy.js ├── plugins │ ├── .gitkeep │ ├── db.mjs │ ├── fs.mjs │ ├── index.mjs │ └── mail.mjs └── support │ ├── commands.mjs │ ├── commands │ ├── api.mjs │ ├── config.mjs │ └── db.mjs │ └── index.js └── unit ├── UnitTestCase.php ├── _bootstrap.php └── frontend └── helper └── WeblinksHelperRouteTest.php /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.drone.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/crowdin-wf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.github/workflows/crowdin-wf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/RoboFile.dist.ini -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/RoboFile.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/composer.lock -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/crowdin.yml -------------------------------------------------------------------------------- /cypress.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/cypress.config.dist.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/docs/README.md -------------------------------------------------------------------------------- /jorobo.dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/jorobo.dist.ini -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/manifest.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/renovate.json -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/access.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/config.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/forms/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/forms/category.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/forms/filter_weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/forms/filter_weblinks.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/forms/weblink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/forms/weblink.xml -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/helpers/weblinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/helpers/weblinks.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/script.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/services/provider.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/install.mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/install.mysql.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/install.postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/install.postgresql.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/uninstall.mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/uninstall.mysql.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/uninstall.postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/uninstall.postgresql.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/mysql/3.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/mysql/3.4.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/mysql/3.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/mysql/3.5.1.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/mysql/4.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/mysql/4.0.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/mysql/4.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/mysql/4.4.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/postgresql/3.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/postgresql/3.4.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/postgresql/4.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/postgresql/4.0.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/sql/updates/postgresql/4.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/sql/updates/postgresql/4.4.0.sql -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Controller/DisplayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Controller/DisplayController.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Controller/WeblinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Controller/WeblinkController.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Controller/WeblinksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Controller/WeblinksController.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Extension/WeblinksComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Extension/WeblinksComponent.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Field/Modal/WeblinkField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Field/Modal/WeblinkField.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Helper/AssociationsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Helper/AssociationsHelper.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Helper/WeblinksHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Helper/WeblinksHelper.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Model/WeblinkModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Model/WeblinkModel.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Model/WeblinksModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Model/WeblinksModel.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Service/HTML/AdministratorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Service/HTML/AdministratorService.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Service/HTML/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Service/HTML/Icon.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/Table/WeblinkTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/Table/WeblinkTable.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/View/Weblink/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/View/Weblink/HtmlView.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/src/View/Weblinks/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/src/View/Weblinks/HtmlView.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/edit.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/edit_associations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/edit_associations.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/edit_metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/edit_metadata.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/edit_params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/edit_params.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/modal.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/modal_associations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/modal_associations.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/modal_metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/modal_metadata.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblink/modal_params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblink/modal_params.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblinks/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblinks/default.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblinks/default_batch_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblinks/default_batch_body.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblinks/default_batch_footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblinks/default_batch_footer.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblinks/emptystate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblinks/emptystate.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/tmpl/weblinks/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/tmpl/weblinks/modal.php -------------------------------------------------------------------------------- /src/administrator/components/com_weblinks/weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/components/com_weblinks/weblinks.xml -------------------------------------------------------------------------------- /src/administrator/language/en-GB/com_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/language/en-GB/com_weblinks.ini -------------------------------------------------------------------------------- /src/administrator/language/en-GB/com_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/language/en-GB/com_weblinks.sys.ini -------------------------------------------------------------------------------- /src/administrator/manifests/packages/pkg_weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/manifests/packages/pkg_weblinks.xml -------------------------------------------------------------------------------- /src/administrator/manifests/packages/weblinks/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/administrator/manifests/packages/weblinks/script.php -------------------------------------------------------------------------------- /src/components/com_weblinks/forms/weblink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/forms/weblink.xml -------------------------------------------------------------------------------- /src/components/com_weblinks/helpers/icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/helpers/icon.php -------------------------------------------------------------------------------- /src/components/com_weblinks/helpers/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/helpers/route.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Controller/DisplayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Controller/DisplayController.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Controller/WeblinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Controller/WeblinkController.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Helper/AssociationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Helper/AssociationHelper.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Helper/RouteHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Helper/RouteHelper.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Model/CategoriesModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Model/CategoriesModel.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Model/CategoryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Model/CategoryModel.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Model/FormModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Model/FormModel.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Model/WeblinkModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Model/WeblinkModel.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Service/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Service/Category.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/Service/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/Service/Router.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/View/Categories/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/View/Categories/HtmlView.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/View/Category/FeedView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/View/Category/FeedView.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/View/Category/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/View/Category/HtmlView.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/View/Form/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/View/Form/HtmlView.php -------------------------------------------------------------------------------- /src/components/com_weblinks/src/View/Weblink/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/src/View/Weblink/HtmlView.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/categories/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/categories/default.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/categories/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/categories/default.xml -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/categories/default_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/categories/default_items.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/category/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/category/default.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/category/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/category/default.xml -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/category/default_children.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/category/default_children.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/category/default_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/category/default_items.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/form/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/form/edit.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/form/edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/form/edit.xml -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/weblink/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/weblink/default.php -------------------------------------------------------------------------------- /src/components/com_weblinks/tmpl/weblink/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/components/com_weblinks/tmpl/weblink/default.xml -------------------------------------------------------------------------------- /src/language/de-DE/com_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/de-DE/com_weblinks.ini -------------------------------------------------------------------------------- /src/language/de-DE/com_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/de-DE/com_weblinks.sys.ini -------------------------------------------------------------------------------- /src/language/en-GB/com_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/en-GB/com_weblinks.ini -------------------------------------------------------------------------------- /src/language/en-GB/mod_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/en-GB/mod_weblinks.ini -------------------------------------------------------------------------------- /src/language/en-GB/mod_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/en-GB/mod_weblinks.sys.ini -------------------------------------------------------------------------------- /src/language/en-GB/pkg_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/language/en-GB/pkg_weblinks.sys.ini -------------------------------------------------------------------------------- /src/media/com_weblinks/js/admin-weblinks-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/media/com_weblinks/js/admin-weblinks-modal.js -------------------------------------------------------------------------------- /src/media/com_weblinks/js/admin-weblinks-modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/media/com_weblinks/js/admin-weblinks-modal.min.js -------------------------------------------------------------------------------- /src/modules/mod_weblinks/mod_weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/modules/mod_weblinks/mod_weblinks.xml -------------------------------------------------------------------------------- /src/modules/mod_weblinks/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/modules/mod_weblinks/services/provider.php -------------------------------------------------------------------------------- /src/modules/mod_weblinks/src/Dispatcher/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/modules/mod_weblinks/src/Dispatcher/Dispatcher.php -------------------------------------------------------------------------------- /src/modules/mod_weblinks/src/Helper/WeblinksHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/modules/mod_weblinks/src/Helper/WeblinksHelper.php -------------------------------------------------------------------------------- /src/modules/mod_weblinks/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/modules/mod_weblinks/tmpl/default.php -------------------------------------------------------------------------------- /src/plugins/editors-xtd/weblink/language/en-GB/plg_editors-xtd_weblink.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/editors-xtd/weblink/language/en-GB/plg_editors-xtd_weblink.ini -------------------------------------------------------------------------------- /src/plugins/editors-xtd/weblink/language/en-GB/plg_editors-xtd_weblink.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/editors-xtd/weblink/language/en-GB/plg_editors-xtd_weblink.sys.ini -------------------------------------------------------------------------------- /src/plugins/editors-xtd/weblink/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/editors-xtd/weblink/services/provider.php -------------------------------------------------------------------------------- /src/plugins/editors-xtd/weblink/src/Extension/Weblink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/editors-xtd/weblink/src/Extension/Weblink.php -------------------------------------------------------------------------------- /src/plugins/editors-xtd/weblink/weblink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/editors-xtd/weblink/weblink.xml -------------------------------------------------------------------------------- /src/plugins/finder/weblinks/language/en-GB/plg_finder_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/finder/weblinks/language/en-GB/plg_finder_weblinks.ini -------------------------------------------------------------------------------- /src/plugins/finder/weblinks/language/en-GB/plg_finder_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/finder/weblinks/language/en-GB/plg_finder_weblinks.sys.ini -------------------------------------------------------------------------------- /src/plugins/finder/weblinks/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/finder/weblinks/services/provider.php -------------------------------------------------------------------------------- /src/plugins/finder/weblinks/src/Extension/Weblinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/finder/weblinks/src/Extension/Weblinks.php -------------------------------------------------------------------------------- /src/plugins/finder/weblinks/weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/finder/weblinks/weblinks.xml -------------------------------------------------------------------------------- /src/plugins/search/weblinks/language/en-GB/plg_search_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/search/weblinks/language/en-GB/plg_search_weblinks.ini -------------------------------------------------------------------------------- /src/plugins/search/weblinks/language/en-GB/plg_search_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/search/weblinks/language/en-GB/plg_search_weblinks.sys.ini -------------------------------------------------------------------------------- /src/plugins/search/weblinks/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/search/weblinks/services/provider.php -------------------------------------------------------------------------------- /src/plugins/search/weblinks/src/Extension/Weblinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/search/weblinks/src/Extension/Weblinks.php -------------------------------------------------------------------------------- /src/plugins/search/weblinks/weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/search/weblinks/weblinks.xml -------------------------------------------------------------------------------- /src/plugins/system/weblinks/language/en-GB/plg_system_weblinks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/system/weblinks/language/en-GB/plg_system_weblinks.ini -------------------------------------------------------------------------------- /src/plugins/system/weblinks/language/en-GB/plg_system_weblinks.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/system/weblinks/language/en-GB/plg_system_weblinks.sys.ini -------------------------------------------------------------------------------- /src/plugins/system/weblinks/services/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/system/weblinks/services/provider.php -------------------------------------------------------------------------------- /src/plugins/system/weblinks/src/Extension/Weblinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/system/weblinks/src/Extension/Weblinks.php -------------------------------------------------------------------------------- /src/plugins/system/weblinks/weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/src/plugins/system/weblinks/weblinks.xml -------------------------------------------------------------------------------- /tests/cypress/.eslinitrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/.eslinitrc.js -------------------------------------------------------------------------------- /tests/cypress/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cypress/fixtures/com_media/test-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/fixtures/com_media/test-image-1.jpg -------------------------------------------------------------------------------- /tests/cypress/fixtures/com_media/test-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/fixtures/com_media/test-image-2.jpg -------------------------------------------------------------------------------- /tests/cypress/fixtures/com_media/test-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/fixtures/com_media/test-image-3.jpg -------------------------------------------------------------------------------- /tests/cypress/fixtures/tuf/invalidMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/fixtures/tuf/invalidMetadata.json -------------------------------------------------------------------------------- /tests/cypress/fixtures/tuf/validMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/fixtures/tuf/validMetadata.json -------------------------------------------------------------------------------- /tests/cypress/integration/administrator/components/com_weblinks/Categories.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/administrator/components/com_weblinks/Categories.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/administrator/components/com_weblinks/CheckPackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/administrator/components/com_weblinks/CheckPackage.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/administrator/components/com_weblinks/Weblinks.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/administrator/components/com_weblinks/Weblinks.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/install/install.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/install/install.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/plugins/finder/weblinks/Finder.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/plugins/finder/weblinks/Finder.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/site/components/com_weblinks/Categories.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/site/components/com_weblinks/Categories.cy.js -------------------------------------------------------------------------------- /tests/cypress/integration/site/components/com_weblinks/Weblinks.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/integration/site/components/com_weblinks/Weblinks.cy.js -------------------------------------------------------------------------------- /tests/cypress/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cypress/plugins/db.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/plugins/db.mjs -------------------------------------------------------------------------------- /tests/cypress/plugins/fs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/plugins/fs.mjs -------------------------------------------------------------------------------- /tests/cypress/plugins/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/plugins/index.mjs -------------------------------------------------------------------------------- /tests/cypress/plugins/mail.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/plugins/mail.mjs -------------------------------------------------------------------------------- /tests/cypress/support/commands.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/support/commands.mjs -------------------------------------------------------------------------------- /tests/cypress/support/commands/api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/support/commands/api.mjs -------------------------------------------------------------------------------- /tests/cypress/support/commands/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/support/commands/config.mjs -------------------------------------------------------------------------------- /tests/cypress/support/commands/db.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/support/commands/db.mjs -------------------------------------------------------------------------------- /tests/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/cypress/support/index.js -------------------------------------------------------------------------------- /tests/unit/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/unit/UnitTestCase.php -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/unit/_bootstrap.php -------------------------------------------------------------------------------- /tests/unit/frontend/helper/WeblinksHelperRouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-extensions/weblinks/HEAD/tests/unit/frontend/helper/WeblinksHelperRouteTest.php --------------------------------------------------------------------------------