├── .appveyor.yml ├── .drone.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Custom.md │ ├── Feature_request.md │ └── Security.md ├── PULL_REQUEST_TEMPLATE.md └── SUPPORT.md ├── .gitignore ├── .hound.yml ├── .php_cs.dist ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── README.txt ├── RoboFile.php ├── SECURITY.md ├── administrator ├── cache │ └── index.html ├── components │ ├── com_actionlogs │ │ ├── Controller │ │ │ ├── ActionlogsController.php │ │ │ └── DisplayController.php │ │ ├── Field │ │ │ ├── ExtensionField.php │ │ │ ├── LogcreatorField.php │ │ │ ├── LogsdaterangeField.php │ │ │ ├── LogtypeField.php │ │ │ └── PlugininfoField.php │ │ ├── Helper │ │ │ └── ActionlogsHelper.php │ │ ├── Model │ │ │ ├── ActionlogModel.php │ │ │ └── ActionlogsModel.php │ │ ├── Plugin │ │ │ └── ActionLogPlugin.php │ │ ├── View │ │ │ └── Actionlogs │ │ │ │ └── HtmlView.php │ │ ├── actionlogs.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── filter_actionlogs.xml │ │ ├── layouts │ │ │ └── logstable.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── actionlogs │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_admin │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Extension │ │ │ └── AdminComponent.php │ │ ├── Model │ │ │ ├── HelpModel.php │ │ │ └── SysinfoModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ ├── Directory.php │ │ │ │ ├── PhpSetting.php │ │ │ │ └── System.php │ │ ├── View │ │ │ ├── Help │ │ │ │ └── HtmlView.php │ │ │ └── Sysinfo │ │ │ │ ├── HtmlView.php │ │ │ │ ├── JsonView.php │ │ │ │ └── TextView.php │ │ ├── admin.xml │ │ ├── postinstall │ │ │ ├── addnosniff.php │ │ │ ├── eaccelerator.php │ │ │ ├── htaccess.php │ │ │ ├── languageaccess340.php │ │ │ ├── statscollection.php │ │ │ └── updatedefaultsettings.php │ │ ├── script.php │ │ ├── services │ │ │ └── provider.php │ │ ├── sql │ │ │ ├── others │ │ │ │ └── mysql │ │ │ │ │ ├── utf8mb4-conversion-01.sql │ │ │ │ │ └── utf8mb4-conversion-02.sql │ │ │ └── updates │ │ │ │ ├── mysql │ │ │ │ ├── 3.8.0-2017-07-28.sql │ │ │ │ ├── 3.8.0-2017-07-31.sql │ │ │ │ ├── 3.8.2-2017-10-14.sql │ │ │ │ ├── 3.8.4-2018-01-16.sql │ │ │ │ ├── 3.8.8-2018-05-18.sql │ │ │ │ ├── 3.8.9-2018-06-19.sql │ │ │ │ ├── 3.9.0-2018-05-02.sql │ │ │ │ ├── 3.9.0-2018-05-03.sql │ │ │ │ ├── 3.9.0-2018-05-05.sql │ │ │ │ ├── 3.9.0-2018-05-19.sql │ │ │ │ ├── 3.9.0-2018-05-20.sql │ │ │ │ ├── 3.9.0-2018-05-24.sql │ │ │ │ ├── 3.9.0-2018-05-27.sql │ │ │ │ ├── 3.9.0-2018-06-02.sql │ │ │ │ ├── 3.9.0-2018-06-12.sql │ │ │ │ ├── 3.9.0-2018-06-13.sql │ │ │ │ ├── 3.9.0-2018-06-14.sql │ │ │ │ ├── 3.9.0-2018-06-17.sql │ │ │ │ ├── 3.9.0-2018-07-09.sql │ │ │ │ ├── 3.9.0-2018-07-10.sql │ │ │ │ ├── 3.9.0-2018-07-11.sql │ │ │ │ ├── 3.9.0-2018-08-12.sql │ │ │ │ ├── 3.9.0-2018-08-28.sql │ │ │ │ ├── 3.9.0-2018-08-29.sql │ │ │ │ ├── 3.9.0-2018-09-04.sql │ │ │ │ ├── 3.9.0-2018-10-15.sql │ │ │ │ ├── 3.9.0-2018-10-20.sql │ │ │ │ ├── 3.9.0-2018-10-21.sql │ │ │ │ ├── 3.9.3-2019-01-12.sql │ │ │ │ ├── 3.9.3-2019-02-07.sql │ │ │ │ ├── 4.0.0-2016-07-03.sql │ │ │ │ ├── 4.0.0-2016-09-22.sql │ │ │ │ ├── 4.0.0-2016-09-28.sql │ │ │ │ ├── 4.0.0-2016-10-02.sql │ │ │ │ ├── 4.0.0-2016-10-03.sql │ │ │ │ ├── 4.0.0-2017-03-18.sql │ │ │ │ ├── 4.0.0-2017-04-25.sql │ │ │ │ ├── 4.0.0-2017-05-31.sql │ │ │ │ ├── 4.0.0-2017-06-03.sql │ │ │ │ ├── 4.0.0-2017-10-10.sql │ │ │ │ ├── 4.0.0-2018-02-24.sql │ │ │ │ ├── 4.0.0-2018-03-05.sql │ │ │ │ ├── 4.0.0-2018-05-15.sql │ │ │ │ ├── 4.0.0-2018-06-03.sql │ │ │ │ ├── 4.0.0-2018-06-11.sql │ │ │ │ ├── 4.0.0-2018-06-26.sql │ │ │ │ ├── 4.0.0-2018-07-02.sql │ │ │ │ ├── 4.0.0-2018-07-19.sql │ │ │ │ ├── 4.0.0-2018-07-29.sql │ │ │ │ ├── 4.0.0-2018-08-29.sql │ │ │ │ ├── 4.0.0-2018-09-12.sql │ │ │ │ ├── 4.0.0-2018-10-18.sql │ │ │ │ ├── 4.0.0-2019-01-05.sql │ │ │ │ ├── 4.0.0-2019-02-03.sql │ │ │ │ ├── 4.0.0-2019-03-09.sql │ │ │ │ ├── 4.0.0-2019-03-30.sql │ │ │ │ ├── 4.0.0-2019-03-31.sql │ │ │ │ ├── 4.0.0-2019-04-22.sql │ │ │ │ ├── 4.0.0-2019-05-05.sql │ │ │ │ ├── 4.0.0-2019-05-20.sql │ │ │ │ ├── 4.0.0-2019-06-28.sql │ │ │ │ ├── 4.0.0-2019-06-29.sql │ │ │ │ ├── 4.0.0-2019-07-13.sql │ │ │ │ ├── 4.0.0-2019-07-14.sql │ │ │ │ └── 4.0.0-2019-07-16.sql │ │ │ │ └── postgresql │ │ │ │ ├── 3.8.0-2017-07-28.sql │ │ │ │ ├── 3.8.0-2017-07-31.sql │ │ │ │ ├── 3.8.2-2017-10-14.sql │ │ │ │ ├── 3.8.4-2018-01-16.sql │ │ │ │ ├── 3.8.8-2018-05-18.sql │ │ │ │ ├── 3.8.9-2018-06-19.sql │ │ │ │ ├── 3.9.0-2018-05-02.sql │ │ │ │ ├── 3.9.0-2018-05-03.sql │ │ │ │ ├── 3.9.0-2018-05-05.sql │ │ │ │ ├── 3.9.0-2018-05-19.sql │ │ │ │ ├── 3.9.0-2018-05-20.sql │ │ │ │ ├── 3.9.0-2018-05-24.sql │ │ │ │ ├── 3.9.0-2018-05-27.sql │ │ │ │ ├── 3.9.0-2018-06-02.sql │ │ │ │ ├── 3.9.0-2018-06-12.sql │ │ │ │ ├── 3.9.0-2018-06-13.sql │ │ │ │ ├── 3.9.0-2018-06-14.sql │ │ │ │ ├── 3.9.0-2018-06-17.sql │ │ │ │ ├── 3.9.0-2018-07-09.sql │ │ │ │ ├── 3.9.0-2018-07-10.sql │ │ │ │ ├── 3.9.0-2018-07-11.sql │ │ │ │ ├── 3.9.0-2018-08-12.sql │ │ │ │ ├── 3.9.0-2018-08-28.sql │ │ │ │ ├── 3.9.0-2018-08-29.sql │ │ │ │ ├── 3.9.0-2018-09-04.sql │ │ │ │ ├── 3.9.0-2018-10-15.sql │ │ │ │ ├── 3.9.0-2018-10-20.sql │ │ │ │ ├── 3.9.0-2018-10-21.sql │ │ │ │ ├── 3.9.3-2019-01-12.sql │ │ │ │ ├── 3.9.3-2019-02-07.sql │ │ │ │ ├── 4.0.0-2016-07-03.sql │ │ │ │ ├── 4.0.0-2016-09-22.sql │ │ │ │ ├── 4.0.0-2016-09-28.sql │ │ │ │ ├── 4.0.0-2016-10-02.sql │ │ │ │ ├── 4.0.0-2016-10-03.sql │ │ │ │ ├── 4.0.0-2017-03-18.sql │ │ │ │ ├── 4.0.0-2017-04-25.sql │ │ │ │ ├── 4.0.0-2017-05-31.sql │ │ │ │ ├── 4.0.0-2017-06-03.sql │ │ │ │ ├── 4.0.0-2017-10-10.sql │ │ │ │ ├── 4.0.0-2018-02-24.sql │ │ │ │ ├── 4.0.0-2018-03-05.sql │ │ │ │ ├── 4.0.0-2018-05-15.sql │ │ │ │ ├── 4.0.0-2018-06-03.sql │ │ │ │ ├── 4.0.0-2018-06-11.sql │ │ │ │ ├── 4.0.0-2018-06-26.sql │ │ │ │ ├── 4.0.0-2018-07-02.sql │ │ │ │ ├── 4.0.0-2018-07-19.sql │ │ │ │ ├── 4.0.0-2018-07-29.sql │ │ │ │ ├── 4.0.0-2018-08-29.sql │ │ │ │ ├── 4.0.0-2018-09-12.sql │ │ │ │ ├── 4.0.0-2018-10-18.sql │ │ │ │ ├── 4.0.0-2019-01-05.sql │ │ │ │ ├── 4.0.0-2019-02-03.sql │ │ │ │ ├── 4.0.0-2019-03-09.sql │ │ │ │ ├── 4.0.0-2019-03-30.sql │ │ │ │ ├── 4.0.0-2019-03-31.sql │ │ │ │ ├── 4.0.0-2019-04-22.sql │ │ │ │ ├── 4.0.0-2019-05-05.sql │ │ │ │ ├── 4.0.0-2019-05-20.sql │ │ │ │ ├── 4.0.0-2019-06-28.sql │ │ │ │ ├── 4.0.0-2019-06-29.sql │ │ │ │ ├── 4.0.0-2019-07-13.sql │ │ │ │ ├── 4.0.0-2019-07-14.sql │ │ │ │ └── 4.0.0-2019-07-16.sql │ │ └── tmpl │ │ │ ├── help │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ └── langforum.php │ │ │ └── sysinfo │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_config.php │ │ │ ├── default_directory.php │ │ │ ├── default_phpinfo.php │ │ │ ├── default_phpsettings.php │ │ │ └── default_system.php │ ├── com_ajax │ │ ├── ajax.php │ │ └── ajax.xml │ ├── com_associations │ │ ├── Controller │ │ │ ├── AssociationController.php │ │ │ ├── AssociationsController.php │ │ │ └── DisplayController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Field │ │ │ ├── ItemlanguageField.php │ │ │ ├── ItemtypeField.php │ │ │ └── Modal │ │ │ │ └── AssociationField.php │ │ ├── Helper │ │ │ └── AssociationsHelper.php │ │ ├── Model │ │ │ ├── AssociationModel.php │ │ │ └── AssociationsModel.php │ │ ├── View │ │ │ ├── Association │ │ │ │ └── HtmlView.php │ │ │ └── Associations │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── associations.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── association.xml │ │ │ └── filter_associations.xml │ │ ├── layouts │ │ │ └── joomla │ │ │ │ └── searchtools │ │ │ │ └── default.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── association │ │ │ └── edit.php │ │ │ └── associations │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ └── modal.php │ ├── com_banners │ │ ├── Controller │ │ │ ├── BannerController.php │ │ │ ├── BannersController.php │ │ │ ├── ClientController.php │ │ │ ├── ClientsController.php │ │ │ ├── DisplayController.php │ │ │ └── TracksController.php │ │ ├── Extension │ │ │ └── BannersComponent.php │ │ ├── Field │ │ │ ├── BannerclientField.php │ │ │ ├── ClicksField.php │ │ │ ├── ImpmadeField.php │ │ │ └── ImptotalField.php │ │ ├── Helper │ │ │ └── BannersHelper.php │ │ ├── Model │ │ │ ├── BannerModel.php │ │ │ ├── BannersModel.php │ │ │ ├── ClientModel.php │ │ │ ├── ClientsModel.php │ │ │ ├── DownloadModel.php │ │ │ └── TracksModel.php │ │ ├── Service │ │ │ └── Html │ │ │ │ └── Banner.php │ │ ├── Table │ │ │ ├── BannerTable.php │ │ │ └── ClientTable.php │ │ ├── View │ │ │ ├── Banner │ │ │ │ └── HtmlView.php │ │ │ ├── Banners │ │ │ │ └── HtmlView.php │ │ │ ├── Client │ │ │ │ └── HtmlView.php │ │ │ ├── Clients │ │ │ │ └── HtmlView.php │ │ │ ├── Download │ │ │ │ └── HtmlView.php │ │ │ └── Tracks │ │ │ │ ├── HtmlView.php │ │ │ │ └── RawView.php │ │ ├── access.xml │ │ ├── banners.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── banner.xml │ │ │ ├── client.xml │ │ │ ├── download.xml │ │ │ ├── filter_banners.xml │ │ │ ├── filter_clients.xml │ │ │ └── filter_tracks.xml │ │ ├── helpers │ │ │ └── banners.php │ │ ├── services │ │ │ └── provider.php │ │ ├── sql │ │ │ ├── install.mysql.utf8.sql │ │ │ └── uninstall.mysql.utf8.sql │ │ └── tmpl │ │ │ ├── banner │ │ │ └── edit.php │ │ │ ├── banners │ │ │ ├── default.php │ │ │ ├── default_batch_body.php │ │ │ └── default_batch_footer.php │ │ │ ├── client │ │ │ └── edit.php │ │ │ ├── clients │ │ │ └── default.php │ │ │ ├── download │ │ │ └── default.php │ │ │ └── tracks │ │ │ └── default.php │ ├── com_cache │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── Model │ │ │ └── CacheModel.php │ │ ├── View │ │ │ └── Cache │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── cache.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── filter_cache.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── cache │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_categories │ │ ├── Controller │ │ │ ├── AjaxController.php │ │ │ ├── CategoriesController.php │ │ │ ├── CategoryController.php │ │ │ └── DisplayController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Extension │ │ │ └── CategoriesComponent.php │ │ ├── Field │ │ │ ├── CategoryeditField.php │ │ │ └── Modal │ │ │ │ └── CategoryField.php │ │ ├── Helper │ │ │ ├── CategoriesHelper.php │ │ │ └── CategoryAssociationHelper.php │ │ ├── Model │ │ │ ├── CategoriesModel.php │ │ │ └── CategoryModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── AdministratorService.php │ │ ├── Table │ │ │ └── CategoryTable.php │ │ ├── View │ │ │ ├── Categories │ │ │ │ └── HtmlView.php │ │ │ └── Category │ │ │ │ └── HtmlView.php │ │ ├── categories.xml │ │ ├── forms │ │ │ ├── category.xml │ │ │ └── filter_categories.xml │ │ ├── helpers │ │ │ └── categories.php │ │ ├── layouts │ │ │ └── joomla │ │ │ │ └── form │ │ │ │ └── field │ │ │ │ └── categoryedit.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── categories │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ └── category │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ └── modal.php │ ├── com_checkin │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── Model │ │ │ └── CheckinModel.php │ │ ├── View │ │ │ └── Checkin │ │ │ │ └── HtmlView.php │ │ ├── checkin.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── filter_checkin.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── checkin │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_config │ │ ├── Controller │ │ │ ├── ApplicationController.php │ │ │ ├── ComponentController.php │ │ │ ├── DisplayController.php │ │ │ └── RequestController.php │ │ ├── Field │ │ │ ├── ConfigComponentsField.php │ │ │ └── FiltersField.php │ │ ├── Helper │ │ │ └── ConfigHelper.php │ │ ├── Model │ │ │ ├── ApplicationModel.php │ │ │ └── ComponentModel.php │ │ ├── View │ │ │ ├── Application │ │ │ │ └── HtmlView.php │ │ │ └── Component │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── application.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── application │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_cache.php │ │ │ ├── default_cookie.php │ │ │ ├── default_database.php │ │ │ ├── default_debug.php │ │ │ ├── default_filters.php │ │ │ ├── default_ftp.php │ │ │ ├── default_ftplogin.php │ │ │ ├── default_locale.php │ │ │ ├── default_mail.php │ │ │ ├── default_metadata.php │ │ │ ├── default_navigation.php │ │ │ ├── default_permissions.php │ │ │ ├── default_proxy.php │ │ │ ├── default_seo.php │ │ │ ├── default_server.php │ │ │ ├── default_session.php │ │ │ ├── default_site.php │ │ │ └── default_system.php │ │ │ └── component │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ └── default_navigation.php │ ├── com_contact │ │ ├── Controller │ │ │ ├── AjaxController.php │ │ │ ├── ContactController.php │ │ │ ├── ContactsController.php │ │ │ └── DisplayController.php │ │ ├── Extension │ │ │ └── ContactComponent.php │ │ ├── Field │ │ │ └── Modal │ │ │ │ └── ContactField.php │ │ ├── Helper │ │ │ ├── AssociationsHelper.php │ │ │ └── ContactHelper.php │ │ ├── Model │ │ │ ├── ContactModel.php │ │ │ └── ContactsModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── AdministratorService.php │ │ ├── Table │ │ │ └── ContactTable.php │ │ ├── View │ │ │ ├── Contact │ │ │ │ └── HtmlView.php │ │ │ └── Contacts │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── contact.xml │ │ ├── forms │ │ │ ├── contact.xml │ │ │ ├── fields │ │ │ │ └── mail.xml │ │ │ └── filter_contacts.xml │ │ ├── helpers │ │ │ └── contact.php │ │ ├── services │ │ │ └── provider.php │ │ ├── sql │ │ │ ├── install.mysql.utf8.sql │ │ │ └── uninstall.mysql.utf8.sql │ │ └── tmpl │ │ │ ├── contact │ │ │ ├── edit.php │ │ │ └── modal.php │ │ │ └── contacts │ │ │ ├── default.php │ │ │ ├── default_batch.php │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ ├── com_content │ │ ├── Controller │ │ │ ├── AjaxController.php │ │ │ ├── ArticleController.php │ │ │ ├── ArticlesController.php │ │ │ ├── DisplayController.php │ │ │ └── FeaturedController.php │ │ ├── Extension │ │ │ └── ContentComponent.php │ │ ├── Field │ │ │ ├── AssocField.php │ │ │ ├── Modal │ │ │ │ └── ArticleField.php │ │ │ └── VoteradioField.php │ │ ├── Helper │ │ │ ├── AssociationsHelper.php │ │ │ └── ContentHelper.php │ │ ├── Model │ │ │ ├── ArticleModel.php │ │ │ ├── ArticlesModel.php │ │ │ ├── FeatureModel.php │ │ │ └── FeaturedModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ ├── AdministratorService.php │ │ │ │ └── Icon.php │ │ ├── Table │ │ │ ├── ArticleTable.php │ │ │ └── FeaturedTable.php │ │ ├── View │ │ │ ├── Article │ │ │ │ └── HtmlView.php │ │ │ ├── Articles │ │ │ │ └── HtmlView.php │ │ │ └── Featured │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── content.xml │ │ ├── forms │ │ │ ├── article.xml │ │ │ ├── category.xml │ │ │ ├── filter_articles.xml │ │ │ └── filter_featured.xml │ │ ├── helpers │ │ │ └── content.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── article │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ ├── modal.php │ │ │ └── pagebreak.php │ │ │ ├── articles │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ ├── default_stage_body.php │ │ │ ├── default_stage_footer.php │ │ │ └── modal.php │ │ │ └── featured │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_stage_body.php │ │ │ └── default_stage_footer.php │ ├── com_contenthistory │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── HistoryController.php │ │ │ └── PreviewController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Helper │ │ │ └── ContenthistoryHelper.php │ │ ├── Model │ │ │ ├── CompareModel.php │ │ │ ├── HistoryModel.php │ │ │ └── PreviewModel.php │ │ ├── View │ │ │ ├── Compare │ │ │ │ └── HtmlView.php │ │ │ ├── History │ │ │ │ └── HtmlView.php │ │ │ └── Preview │ │ │ │ └── HtmlView.php │ │ ├── contenthistory.xml │ │ ├── helpers │ │ │ └── contenthistory.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── compare │ │ │ └── compare.php │ │ │ ├── history │ │ │ └── modal.php │ │ │ └── preview │ │ │ └── preview.php │ ├── com_cpanel │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── View │ │ │ └── Cpanel │ │ │ │ └── HtmlView.php │ │ ├── cpanel.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── cpanel │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_csp │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── ReportsController.php │ │ ├── Helper │ │ │ └── ReporterHelper.php │ │ ├── Model │ │ │ ├── ReportModel.php │ │ │ └── ReportsModel.php │ │ ├── Table │ │ │ └── ReportTable.php │ │ ├── View │ │ │ └── Reports │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── csp.xml │ │ ├── forms │ │ │ └── filter_reports.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── reports │ │ │ └── default.php │ ├── com_fields │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── FieldController.php │ │ │ ├── FieldsController.php │ │ │ ├── GroupController.php │ │ │ └── GroupsController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Extension │ │ │ └── FieldsComponent.php │ │ ├── Field │ │ │ ├── FieldLayoutField.php │ │ │ ├── FieldcontextsField.php │ │ │ ├── FieldgroupsField.php │ │ │ ├── SectionField.php │ │ │ └── TypeField.php │ │ ├── Helper │ │ │ └── FieldsHelper.php │ │ ├── Model │ │ │ ├── FieldModel.php │ │ │ ├── FieldsModel.php │ │ │ ├── GroupModel.php │ │ │ └── GroupsModel.php │ │ ├── Plugin │ │ │ ├── FieldsListPlugin.php │ │ │ └── FieldsPlugin.php │ │ ├── Table │ │ │ ├── FieldTable.php │ │ │ └── GroupTable.php │ │ ├── View │ │ │ ├── Field │ │ │ │ └── HtmlView.php │ │ │ ├── Fields │ │ │ │ └── HtmlView.php │ │ │ ├── Group │ │ │ │ └── HtmlView.php │ │ │ └── Groups │ │ │ │ └── HtmlView.php │ │ ├── fields.xml │ │ ├── forms │ │ │ ├── field.xml │ │ │ ├── filter_fields.xml │ │ │ ├── filter_groups.xml │ │ │ └── group.xml │ │ ├── helpers │ │ │ └── fields.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── field │ │ │ ├── edit.php │ │ │ └── modal.php │ │ │ ├── fields │ │ │ ├── default.php │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ ├── group │ │ │ └── edit.php │ │ │ └── groups │ │ │ ├── default.php │ │ │ ├── default_batch_body.php │ │ │ └── default_batch_footer.php │ ├── com_finder │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── FilterController.php │ │ │ ├── FiltersController.php │ │ │ ├── IndexController.php │ │ │ ├── IndexerController.php │ │ │ ├── MapsController.php │ │ │ └── SearchesController.php │ │ ├── Extension │ │ │ └── FinderComponent.php │ │ ├── Field │ │ │ ├── BranchesField.php │ │ │ ├── ContentmapField.php │ │ │ ├── ContenttypesField.php │ │ │ └── SearchfilterField.php │ │ ├── Helper │ │ │ ├── FinderHelper.php │ │ │ └── FinderHelperLanguage.php │ │ ├── Indexer │ │ │ ├── Adapter.php │ │ │ ├── Driver │ │ │ │ ├── Mysql.php │ │ │ │ └── Postgresql.php │ │ │ ├── Helper.php │ │ │ ├── Indexer.php │ │ │ ├── Language.php │ │ │ ├── Language │ │ │ │ ├── Da.php │ │ │ │ ├── De.php │ │ │ │ ├── El.php │ │ │ │ ├── En.php │ │ │ │ ├── Es.php │ │ │ │ ├── Fr.php │ │ │ │ ├── It.php │ │ │ │ ├── Nl.php │ │ │ │ ├── Nn.php │ │ │ │ ├── Pt.php │ │ │ │ ├── Ro.php │ │ │ │ ├── Ru.php │ │ │ │ ├── Sv.php │ │ │ │ └── Zh.php │ │ │ ├── Parser.php │ │ │ ├── Parser │ │ │ │ ├── Html.php │ │ │ │ ├── Rtf.php │ │ │ │ └── Txt.php │ │ │ ├── Query.php │ │ │ ├── Result.php │ │ │ ├── Taxonomy.php │ │ │ └── Token.php │ │ ├── Model │ │ │ ├── FilterModel.php │ │ │ ├── FiltersModel.php │ │ │ ├── IndexModel.php │ │ │ ├── IndexerModel.php │ │ │ ├── MapsModel.php │ │ │ ├── SearchesModel.php │ │ │ └── StatisticsModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ ├── Filter.php │ │ │ │ ├── Finder.php │ │ │ │ └── Query.php │ │ ├── Table │ │ │ ├── FilterTable.php │ │ │ ├── LinkTable.php │ │ │ └── MapTable.php │ │ ├── View │ │ │ ├── Filter │ │ │ │ └── HtmlView.php │ │ │ ├── Filters │ │ │ │ └── HtmlView.php │ │ │ ├── Index │ │ │ │ └── HtmlView.php │ │ │ ├── Indexer │ │ │ │ └── HtmlView.php │ │ │ ├── Maps │ │ │ │ └── HtmlView.php │ │ │ ├── Searches │ │ │ │ └── HtmlView.php │ │ │ └── Statistics │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── finder.xml │ │ ├── forms │ │ │ ├── filter.xml │ │ │ ├── filter_filters.xml │ │ │ ├── filter_index.xml │ │ │ ├── filter_maps.xml │ │ │ └── filter_searches.xml │ │ ├── helpers │ │ │ ├── indexer │ │ │ │ ├── adapter.php │ │ │ │ ├── helper.php │ │ │ │ ├── indexer.php │ │ │ │ ├── parser.php │ │ │ │ ├── query.php │ │ │ │ ├── result.php │ │ │ │ ├── taxonomy.php │ │ │ │ └── token.php │ │ │ └── language.php │ │ ├── services │ │ │ └── provider.php │ │ ├── sql │ │ │ ├── install.mysql.sql │ │ │ ├── install.postgresql.sql │ │ │ ├── uninstall.mysql.sql │ │ │ └── uninstall.postgresql.sql │ │ └── tmpl │ │ │ ├── filter │ │ │ └── edit.php │ │ │ ├── filters │ │ │ └── default.php │ │ │ ├── index │ │ │ └── default.php │ │ │ ├── indexer │ │ │ └── default.php │ │ │ ├── maps │ │ │ └── default.php │ │ │ ├── searches │ │ │ └── default.php │ │ │ └── statistics │ │ │ └── default.php │ ├── com_installer │ │ ├── Controller │ │ │ ├── DatabaseController.php │ │ │ ├── DiscoverController.php │ │ │ ├── DisplayController.php │ │ │ ├── InstallController.php │ │ │ ├── ManageController.php │ │ │ ├── UpdateController.php │ │ │ └── UpdatesitesController.php │ │ ├── Extension │ │ │ └── InstallerComponent.php │ │ ├── Field │ │ │ ├── ExtensionstatusField.php │ │ │ ├── FolderField.php │ │ │ ├── LocationField.php │ │ │ └── TypeField.php │ │ ├── Helper │ │ │ └── InstallerHelper.php │ │ ├── Model │ │ │ ├── DatabaseModel.php │ │ │ ├── DiscoverModel.php │ │ │ ├── InstallModel.php │ │ │ ├── InstallerModel.php │ │ │ ├── LanguagesModel.php │ │ │ ├── ManageModel.php │ │ │ ├── UpdateModel.php │ │ │ ├── UpdatesitesModel.php │ │ │ └── WarningsModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ ├── Manage.php │ │ │ │ └── Updatesites.php │ │ ├── View │ │ │ ├── Database │ │ │ │ └── HtmlView.php │ │ │ ├── Discover │ │ │ │ └── HtmlView.php │ │ │ ├── Install │ │ │ │ └── HtmlView.php │ │ │ ├── Installer │ │ │ │ └── HtmlView.php │ │ │ ├── Languages │ │ │ │ └── HtmlView.php │ │ │ ├── Manage │ │ │ │ └── HtmlView.php │ │ │ ├── Update │ │ │ │ └── HtmlView.php │ │ │ ├── Updatesites │ │ │ │ └── HtmlView.php │ │ │ └── Warnings │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_database.xml │ │ │ ├── filter_discover.xml │ │ │ ├── filter_languages.xml │ │ │ ├── filter_manage.xml │ │ │ ├── filter_update.xml │ │ │ └── filter_updatesites.xml │ │ ├── helpers │ │ │ └── installer.php │ │ ├── installer.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── database │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── discover │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── install │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── installer │ │ │ ├── default_ftp.php │ │ │ └── default_message.php │ │ │ ├── languages │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── manage │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── update │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── updatesites │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ └── warnings │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_joomlaupdate │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── UpdateController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Helper │ │ │ └── Select.php │ │ ├── Model │ │ │ └── UpdateModel.php │ │ ├── View │ │ │ ├── Joomlaupdate │ │ │ │ └── HtmlView.php │ │ │ ├── Update │ │ │ │ └── HtmlView.php │ │ │ └── Upload │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── joomlaupdate.xml │ │ ├── restore.php │ │ ├── restore_finalisation.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── joomlaupdate │ │ │ ├── complete.php │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_nodownload.php │ │ │ ├── default_preupdatecheck.php │ │ │ ├── default_reinstall.php │ │ │ ├── default_update.php │ │ │ ├── default_updatemefirst.php │ │ │ └── default_upload.php │ │ │ ├── update │ │ │ ├── default.php │ │ │ └── finaliseconfirm.php │ │ │ └── upload │ │ │ └── captive.php │ ├── com_languages │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── InstalledController.php │ │ │ ├── LanguageController.php │ │ │ ├── LanguagesController.php │ │ │ ├── OverrideController.php │ │ │ ├── OverridesController.php │ │ │ └── StringsController.php │ │ ├── Extension │ │ │ └── LanguagesComponent.php │ │ ├── Field │ │ │ └── LanguageclientField.php │ │ ├── Helper │ │ │ ├── LanguagesHelper.php │ │ │ └── MultilangstatusHelper.php │ │ ├── Model │ │ │ ├── InstalledModel.php │ │ │ ├── LanguageModel.php │ │ │ ├── LanguagesModel.php │ │ │ ├── OverrideModel.php │ │ │ ├── OverridesModel.php │ │ │ └── StringsModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Languages.php │ │ ├── View │ │ │ ├── Installed │ │ │ │ └── HtmlView.php │ │ │ ├── Language │ │ │ │ └── HtmlView.php │ │ │ ├── Languages │ │ │ │ └── HtmlView.php │ │ │ ├── Multilangstatus │ │ │ │ └── HtmlView.php │ │ │ ├── Override │ │ │ │ └── HtmlView.php │ │ │ └── Overrides │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_installed.xml │ │ │ ├── filter_languages.xml │ │ │ ├── filter_overrides.xml │ │ │ ├── language.xml │ │ │ └── override.xml │ │ ├── languages.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── installed │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── language │ │ │ └── edit.php │ │ │ ├── languages │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── multilangstatus │ │ │ └── default.php │ │ │ ├── override │ │ │ └── edit.php │ │ │ └── overrides │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_login │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Model │ │ │ └── LoginModel.php │ │ ├── View │ │ │ └── Login │ │ │ │ └── HtmlView.php │ │ ├── login.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── login │ │ │ └── default.php │ ├── com_mailto │ │ ├── mailto.xml │ │ └── services │ │ │ └── provider.php │ ├── com_media │ │ ├── .babelrc │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── file.xml │ │ ├── layouts │ │ │ └── toolbar │ │ │ │ ├── create-folder.php │ │ │ │ ├── delete.php │ │ │ │ └── upload.php │ │ ├── media.xml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resources │ │ │ ├── scripts │ │ │ │ ├── app │ │ │ │ │ ├── Api.js │ │ │ │ │ ├── Event.js │ │ │ │ │ └── Notifications.js │ │ │ │ ├── components │ │ │ │ │ ├── app.vue │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ └── breadcrumb.vue │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── browser.vue │ │ │ │ │ │ └── items │ │ │ │ │ │ │ ├── directory.vue │ │ │ │ │ │ │ ├── file.vue │ │ │ │ │ │ │ ├── image.vue │ │ │ │ │ │ │ ├── item.js │ │ │ │ │ │ │ ├── row.vue │ │ │ │ │ │ │ └── video.vue │ │ │ │ │ ├── infobar │ │ │ │ │ │ └── infobar.vue │ │ │ │ │ ├── modals │ │ │ │ │ │ ├── confirm-delete-modal.vue │ │ │ │ │ │ ├── create-folder-modal.vue │ │ │ │ │ │ ├── modal.vue │ │ │ │ │ │ ├── preview-modal.vue │ │ │ │ │ │ ├── rename-modal.vue │ │ │ │ │ │ └── share-modal.vue │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.vue │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── disk.vue │ │ │ │ │ │ ├── drive.vue │ │ │ │ │ │ ├── item.vue │ │ │ │ │ │ └── tree.vue │ │ │ │ │ └── upload │ │ │ │ │ │ └── upload.vue │ │ │ │ ├── mediamanager.js │ │ │ │ ├── mixins │ │ │ │ │ └── navigable.js │ │ │ │ ├── plugins │ │ │ │ │ └── translate.js │ │ │ │ └── store │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── getters.js │ │ │ │ │ ├── mutation-types.js │ │ │ │ │ ├── mutations.js │ │ │ │ │ ├── plugins │ │ │ │ │ └── persisted-state.js │ │ │ │ │ ├── state.js │ │ │ │ │ └── store.js │ │ │ └── styles │ │ │ │ ├── components │ │ │ │ ├── _animations.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _media-breadcrumb.scss │ │ │ │ ├── _media-browser.scss │ │ │ │ ├── _media-edit.scss │ │ │ │ ├── _media-infobar.scss │ │ │ │ ├── _media-modal.scss │ │ │ │ ├── _media-toolbar.scss │ │ │ │ └── _media-tree.scss │ │ │ │ ├── mediamanager.scss │ │ │ │ └── variables.scss │ │ ├── services │ │ │ └── provider.php │ │ ├── src │ │ │ ├── Adapter │ │ │ │ └── AdapterInterface.php │ │ │ ├── Controller │ │ │ │ ├── ApiController.php │ │ │ │ ├── DisplayController.php │ │ │ │ └── PluginController.php │ │ │ ├── Dispatcher │ │ │ │ └── Dispatcher.php │ │ │ ├── Event │ │ │ │ ├── MediaProviderEvent.php │ │ │ │ └── OAuthCallbackEvent.php │ │ │ ├── Exception │ │ │ │ ├── FileExistsException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ └── InvalidPathException.php │ │ │ ├── Model │ │ │ │ ├── ApiModel.php │ │ │ │ ├── FileModel.php │ │ │ │ └── MediaModel.php │ │ │ ├── Plugin │ │ │ │ └── MediaActionPlugin.php │ │ │ ├── Provider │ │ │ │ ├── ProviderInterface.php │ │ │ │ └── ProviderManager.php │ │ │ └── View │ │ │ │ ├── File │ │ │ │ └── HtmlView.php │ │ │ │ └── Media │ │ │ │ └── HtmlView.php │ │ ├── tmpl │ │ │ ├── file │ │ │ │ └── default.php │ │ │ └── media │ │ │ │ ├── default.php │ │ │ │ ├── default.xml │ │ │ │ └── default_texts.php │ │ └── webpack.config.js │ ├── com_menus │ │ ├── Controller │ │ │ ├── AjaxController.php │ │ │ ├── DisplayController.php │ │ │ ├── ItemController.php │ │ │ ├── ItemsController.php │ │ │ ├── MenuController.php │ │ │ └── MenusController.php │ │ ├── Extension │ │ │ └── MenusComponent.php │ │ ├── Field │ │ │ ├── ComponentsCategoryField.php │ │ │ ├── MenuItemByTypeField.php │ │ │ ├── MenuOrderingField.php │ │ │ ├── MenuParentField.php │ │ │ ├── MenuPresetField.php │ │ │ ├── MenutypeField.php │ │ │ └── Modal │ │ │ │ └── MenuField.php │ │ ├── Helper │ │ │ ├── AssociationsHelper.php │ │ │ └── MenusHelper.php │ │ ├── Model │ │ │ ├── ItemModel.php │ │ │ ├── ItemsModel.php │ │ │ ├── MenuModel.php │ │ │ ├── MenusModel.php │ │ │ └── MenutypesModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Menus.php │ │ ├── Table │ │ │ ├── MenuTable.php │ │ │ └── MenuTypeTable.php │ │ ├── View │ │ │ ├── Item │ │ │ │ └── HtmlView.php │ │ │ ├── Items │ │ │ │ └── HtmlView.php │ │ │ ├── Menu │ │ │ │ ├── HtmlView.php │ │ │ │ └── XmlView.php │ │ │ ├── Menus │ │ │ │ └── HtmlView.php │ │ │ └── Menutypes │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_items.xml │ │ │ ├── filter_itemsadmin.xml │ │ │ ├── filter_menus.xml │ │ │ ├── item.xml │ │ │ ├── item_alias.xml │ │ │ ├── item_component.xml │ │ │ ├── item_heading.xml │ │ │ ├── item_separator.xml │ │ │ ├── item_url.xml │ │ │ ├── itemadmin.xml │ │ │ ├── itemadmin_alias.xml │ │ │ ├── itemadmin_component.xml │ │ │ ├── itemadmin_container.xml │ │ │ ├── itemadmin_heading.xml │ │ │ ├── itemadmin_separator.xml │ │ │ ├── itemadmin_url.xml │ │ │ └── menu.xml │ │ ├── helpers │ │ │ └── menus.php │ │ ├── layouts │ │ │ └── joomla │ │ │ │ ├── menu │ │ │ │ └── edit_modules.php │ │ │ │ └── searchtools │ │ │ │ └── default.php │ │ ├── menus.xml │ │ ├── presets │ │ │ ├── components.xml │ │ │ ├── content.xml │ │ │ ├── help.xml │ │ │ ├── joomla.xml │ │ │ ├── menu.xsd │ │ │ ├── menus.xml │ │ │ ├── modern.xml │ │ │ ├── system.xml │ │ │ └── users.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── item │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ ├── edit_container.php │ │ │ ├── edit_modules.php │ │ │ └── modal.php │ │ │ ├── items │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ ├── menu │ │ │ ├── edit.php │ │ │ └── edit.xml │ │ │ ├── menus │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ └── menutypes │ │ │ └── default.php │ ├── com_messages │ │ ├── Controller │ │ │ ├── ConfigController.php │ │ │ ├── DisplayController.php │ │ │ ├── MessageController.php │ │ │ └── MessagesController.php │ │ ├── Extension │ │ │ └── MessagesComponent.php │ │ ├── Field │ │ │ ├── MessageStatesField.php │ │ │ └── UserMessagesField.php │ │ ├── Helper │ │ │ └── MessagesHelper.php │ │ ├── Model │ │ │ ├── ConfigModel.php │ │ │ ├── MessageModel.php │ │ │ └── MessagesModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Messages.php │ │ ├── Table │ │ │ └── MessageTable.php │ │ ├── View │ │ │ ├── Config │ │ │ │ └── HtmlView.php │ │ │ ├── Message │ │ │ │ └── HtmlView.php │ │ │ └── Messages │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── config.xml │ │ │ ├── filter_messages.xml │ │ │ └── message.xml │ │ ├── messages.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── config │ │ │ └── default.php │ │ │ ├── message │ │ │ ├── default.php │ │ │ └── edit.php │ │ │ └── messages │ │ │ └── default.php │ ├── com_modules │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── ModuleController.php │ │ │ └── ModulesController.php │ │ ├── Extension │ │ │ └── ModulesComponent.php │ │ ├── Field │ │ │ ├── ModulesModuleField.php │ │ │ ├── ModulesPositionField.php │ │ │ └── ModulesPositioneditField.php │ │ ├── Helper │ │ │ └── ModulesHelper.php │ │ ├── Model │ │ │ ├── ModuleModel.php │ │ │ ├── ModulesModel.php │ │ │ ├── PositionsModel.php │ │ │ └── SelectModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Modules.php │ │ ├── View │ │ │ ├── Module │ │ │ │ └── HtmlView.php │ │ │ ├── Modules │ │ │ │ └── HtmlView.php │ │ │ └── Select │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── advanced.xml │ │ │ ├── filter_modules.xml │ │ │ ├── filter_modulesadmin.xml │ │ │ ├── module.xml │ │ │ └── moduleadmin.xml │ │ ├── helpers │ │ │ └── modules.php │ │ ├── layouts │ │ │ ├── joomla │ │ │ │ └── form │ │ │ │ │ └── field │ │ │ │ │ └── modulespositionedit.php │ │ │ └── toolbar │ │ │ │ └── cancelselect.php │ │ ├── modules.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── module │ │ │ ├── edit.php │ │ │ ├── edit_assignment.php │ │ │ └── modal.php │ │ │ ├── modules │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ └── select │ │ │ ├── default.php │ │ │ └── modal.php │ ├── com_newsfeeds │ │ ├── Controller │ │ │ ├── AjaxController.php │ │ │ ├── DisplayController.php │ │ │ ├── NewsfeedController.php │ │ │ └── NewsfeedsController.php │ │ ├── Extension │ │ │ └── NewsfeedsComponent.php │ │ ├── Field │ │ │ ├── Modal │ │ │ │ └── NewsfeedField.php │ │ │ └── NewsfeedsField.php │ │ ├── Helper │ │ │ ├── AssociationsHelper.php │ │ │ └── NewsfeedsHelper.php │ │ ├── Model │ │ │ ├── NewsfeedModel.php │ │ │ └── NewsfeedsModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── AdministratorService.php │ │ ├── Table │ │ │ └── NewsfeedTable.php │ │ ├── View │ │ │ ├── Newsfeed │ │ │ │ └── HtmlView.php │ │ │ └── Newsfeeds │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_newsfeeds.xml │ │ │ └── newsfeed.xml │ │ ├── helpers │ │ │ └── newsfeeds.php │ │ ├── newsfeeds.xml │ │ ├── services │ │ │ └── provider.php │ │ ├── sql │ │ │ ├── install.mysql.utf8.sql │ │ │ └── uninstall.mysql.utf8.sql │ │ └── tmpl │ │ │ ├── newsfeed │ │ │ ├── edit.php │ │ │ ├── edit_display.php │ │ │ └── modal.php │ │ │ └── newsfeeds │ │ │ ├── default.php │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ ├── com_plugins │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── PluginController.php │ │ │ └── PluginsController.php │ │ ├── Field │ │ │ ├── PluginElementField.php │ │ │ ├── PluginTypeField.php │ │ │ └── PluginorderingField.php │ │ ├── Helper │ │ │ └── PluginsHelper.php │ │ ├── Model │ │ │ ├── PluginModel.php │ │ │ └── PluginsModel.php │ │ ├── View │ │ │ ├── Plugin │ │ │ │ └── HtmlView.php │ │ │ └── Plugins │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_plugins.xml │ │ │ └── plugin.xml │ │ ├── helpers │ │ │ └── plugins.php │ │ ├── plugins.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── plugin │ │ │ ├── edit.php │ │ │ └── modal.php │ │ │ └── plugins │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_postinstall │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── MessageController.php │ │ ├── Helper │ │ │ └── PostinstallHelper.php │ │ ├── Model │ │ │ └── MessagesModel.php │ │ ├── View │ │ │ └── Messages │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── postinstall.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── messages │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_privacy │ │ ├── Controller │ │ │ ├── ConsentsController.php │ │ │ ├── DisplayController.php │ │ │ ├── RequestController.php │ │ │ └── RequestsController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Export │ │ │ ├── Domain.php │ │ │ ├── Field.php │ │ │ └── Item.php │ │ ├── Extension │ │ │ └── PrivacyComponent.php │ │ ├── Field │ │ │ ├── RequeststatusField.php │ │ │ └── RequesttypeField.php │ │ ├── Helper │ │ │ └── PrivacyHelper.php │ │ ├── Model │ │ │ ├── CapabilitiesModel.php │ │ │ ├── ConsentsModel.php │ │ │ ├── ExportModel.php │ │ │ ├── RemoveModel.php │ │ │ ├── RequestModel.php │ │ │ └── RequestsModel.php │ │ ├── Plugin │ │ │ └── PrivacyPlugin.php │ │ ├── Removal │ │ │ └── Status.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Privacy.php │ │ ├── Table │ │ │ ├── ConsentTable.php │ │ │ └── RequestTable.php │ │ ├── View │ │ │ ├── Capabilities │ │ │ │ └── HtmlView.php │ │ │ ├── Consents │ │ │ │ └── HtmlView.php │ │ │ ├── Export │ │ │ │ └── XmlView.php │ │ │ ├── Request │ │ │ │ └── HtmlView.php │ │ │ └── Requests │ │ │ │ └── HtmlView.php │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_consents.xml │ │ │ ├── filter_requests.xml │ │ │ └── request.xml │ │ ├── privacy.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── capabilities │ │ │ └── default.php │ │ │ ├── consents │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── request │ │ │ ├── default.php │ │ │ └── edit.php │ │ │ └── requests │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_redirect │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── LinkController.php │ │ │ └── LinksController.php │ │ ├── Extension │ │ │ └── RedirectComponent.php │ │ ├── Field │ │ │ └── RedirectField.php │ │ ├── Helper │ │ │ └── RedirectHelper.php │ │ ├── Model │ │ │ ├── LinkModel.php │ │ │ └── LinksModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Redirect.php │ │ ├── Table │ │ │ └── LinkTable.php │ │ ├── View │ │ │ ├── Link │ │ │ │ └── HtmlView.php │ │ │ └── Links │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_links.xml │ │ │ └── link.xml │ │ ├── helpers │ │ │ └── redirect.php │ │ ├── layouts │ │ │ └── toolbar │ │ │ │ └── batch.php │ │ ├── redirect.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── link │ │ │ └── edit.php │ │ │ └── links │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_addform.php │ │ │ ├── default_batch_body.php │ │ │ └── default_batch_footer.php │ ├── com_tags │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── TagController.php │ │ │ └── TagsController.php │ │ ├── Model │ │ │ ├── TagModel.php │ │ │ └── TagsModel.php │ │ ├── Table │ │ │ └── TagTable.php │ │ ├── View │ │ │ ├── Tag │ │ │ │ └── HtmlView.php │ │ │ └── Tags │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_tags.xml │ │ │ └── tag.xml │ │ ├── services │ │ │ └── provider.php │ │ ├── tags.xml │ │ ├── tmpl │ │ │ ├── tag │ │ │ │ └── edit.php │ │ │ └── tags │ │ │ │ ├── default.php │ │ │ │ ├── default_batch_body.php │ │ │ │ └── default_batch_footer.php │ │ └── views │ │ │ └── tags │ │ │ └── tmpl │ │ │ └── default.xml │ ├── com_templates │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── StyleController.php │ │ │ ├── StylesController.php │ │ │ └── TemplateController.php │ │ ├── Extension │ │ │ └── TemplatesComponent.php │ │ ├── Field │ │ │ ├── TemplatelocationField.php │ │ │ └── TemplatenameField.php │ │ ├── Helper │ │ │ ├── TemplateHelper.php │ │ │ └── TemplatesHelper.php │ │ ├── Model │ │ │ ├── StyleModel.php │ │ │ ├── StylesModel.php │ │ │ ├── TemplateModel.php │ │ │ └── TemplatesModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Templates.php │ │ ├── Table │ │ │ └── StyleTable.php │ │ ├── View │ │ │ ├── Style │ │ │ │ ├── HtmlView.php │ │ │ │ └── JsonView.php │ │ │ ├── Styles │ │ │ │ └── HtmlView.php │ │ │ ├── Template │ │ │ │ └── HtmlView.php │ │ │ └── Templates │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── filter_styles.xml │ │ │ ├── filter_templates.xml │ │ │ ├── source.xml │ │ │ ├── style.xml │ │ │ ├── style_administrator.xml │ │ │ └── style_site.xml │ │ ├── helpers │ │ │ ├── template.php │ │ │ └── templates.php │ │ ├── services │ │ │ └── provider.php │ │ ├── templates.xml │ │ └── tmpl │ │ │ ├── style │ │ │ ├── edit.php │ │ │ └── edit_assignment.php │ │ │ ├── styles │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── template │ │ │ ├── default.php │ │ │ ├── default_description.php │ │ │ ├── default_folders.php │ │ │ ├── default_modal_copy_body.php │ │ │ ├── default_modal_copy_footer.php │ │ │ ├── default_modal_delete_body.php │ │ │ ├── default_modal_delete_footer.php │ │ │ ├── default_modal_file_body.php │ │ │ ├── default_modal_file_footer.php │ │ │ ├── default_modal_folder_body.php │ │ │ ├── default_modal_folder_footer.php │ │ │ ├── default_modal_rename_body.php │ │ │ ├── default_modal_rename_footer.php │ │ │ ├── default_modal_resize_body.php │ │ │ ├── default_modal_resize_footer.php │ │ │ ├── default_tree.php │ │ │ ├── default_updated_files.php │ │ │ └── readonly.php │ │ │ └── templates │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_users │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── GroupController.php │ │ │ ├── GroupsController.php │ │ │ ├── LevelController.php │ │ │ ├── LevelsController.php │ │ │ ├── MailController.php │ │ │ ├── NoteController.php │ │ │ ├── NotesController.php │ │ │ ├── ProfileController.php │ │ │ ├── UserController.php │ │ │ └── UsersController.php │ │ ├── Extension │ │ │ └── UsersComponent.php │ │ ├── Field │ │ │ ├── GroupparentField.php │ │ │ └── LevelsField.php │ │ ├── Helper │ │ │ ├── UsersHelper.php │ │ │ └── UsersHelperDebug.php │ │ ├── Model │ │ │ ├── DebuggroupModel.php │ │ │ ├── DebuguserModel.php │ │ │ ├── GroupModel.php │ │ │ ├── GroupsModel.php │ │ │ ├── LevelModel.php │ │ │ ├── LevelsModel.php │ │ │ ├── MailModel.php │ │ │ ├── NoteModel.php │ │ │ ├── NotesModel.php │ │ │ ├── UserModel.php │ │ │ └── UsersModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ └── Users.php │ │ ├── Table │ │ │ └── NoteTable.php │ │ ├── View │ │ │ ├── Debuggroup │ │ │ │ └── HtmlView.php │ │ │ ├── Debuguser │ │ │ │ └── HtmlView.php │ │ │ ├── Group │ │ │ │ └── HtmlView.php │ │ │ ├── Groups │ │ │ │ └── HtmlView.php │ │ │ ├── Level │ │ │ │ └── HtmlView.php │ │ │ ├── Levels │ │ │ │ └── HtmlView.php │ │ │ ├── Mail │ │ │ │ └── HtmlView.php │ │ │ ├── Note │ │ │ │ └── HtmlView.php │ │ │ ├── Notes │ │ │ │ └── HtmlView.php │ │ │ ├── User │ │ │ │ └── HtmlView.php │ │ │ └── Users │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ ├── config_domain.xml │ │ │ ├── fields │ │ │ │ └── user.xml │ │ │ ├── filter_debuggroup.xml │ │ │ ├── filter_debuguser.xml │ │ │ ├── filter_groups.xml │ │ │ ├── filter_levels.xml │ │ │ ├── filter_notes.xml │ │ │ ├── filter_users.xml │ │ │ ├── group.xml │ │ │ ├── level.xml │ │ │ ├── mail.xml │ │ │ ├── note.xml │ │ │ └── user.xml │ │ ├── helpers │ │ │ ├── debug.php │ │ │ └── users.php │ │ ├── services │ │ │ └── provider.php │ │ ├── tmpl │ │ │ ├── debuggroup │ │ │ │ └── default.php │ │ │ ├── debuguser │ │ │ │ └── default.php │ │ │ ├── group │ │ │ │ ├── edit.php │ │ │ │ └── edit.xml │ │ │ ├── groups │ │ │ │ ├── default.php │ │ │ │ └── default.xml │ │ │ ├── level │ │ │ │ ├── edit.php │ │ │ │ └── edit.xml │ │ │ ├── levels │ │ │ │ ├── default.php │ │ │ │ └── default.xml │ │ │ ├── mail │ │ │ │ ├── default.php │ │ │ │ └── default.xml │ │ │ ├── note │ │ │ │ ├── edit.php │ │ │ │ └── edit.xml │ │ │ ├── notes │ │ │ │ ├── default.php │ │ │ │ ├── default.xml │ │ │ │ └── modal.php │ │ │ ├── user │ │ │ │ ├── edit.php │ │ │ │ ├── edit.xml │ │ │ │ └── edit_groups.php │ │ │ └── users │ │ │ │ ├── default.php │ │ │ │ ├── default.xml │ │ │ │ ├── default_batch_body.php │ │ │ │ ├── default_batch_footer.php │ │ │ │ └── modal.php │ │ └── users.xml │ ├── com_workflow │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── StageController.php │ │ │ ├── StagesController.php │ │ │ ├── TransitionController.php │ │ │ ├── TransitionsController.php │ │ │ ├── WorkflowController.php │ │ │ └── WorkflowsController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Helper │ │ │ ├── StageHelper.php │ │ │ └── WorkflowHelper.php │ │ ├── Model │ │ │ ├── StageModel.php │ │ │ ├── StagesModel.php │ │ │ ├── TransitionModel.php │ │ │ ├── TransitionsModel.php │ │ │ ├── WorkflowModel.php │ │ │ └── WorkflowsModel.php │ │ ├── Table │ │ │ ├── StageTable.php │ │ │ ├── TransitionTable.php │ │ │ └── WorkflowTable.php │ │ ├── View │ │ │ ├── Stage │ │ │ │ └── HtmlView.php │ │ │ ├── Stages │ │ │ │ └── HtmlView.php │ │ │ ├── Transition │ │ │ │ └── HtmlView.php │ │ │ ├── Transitions │ │ │ │ └── HtmlView.php │ │ │ ├── Workflow │ │ │ │ └── HtmlView.php │ │ │ └── Workflows │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── forms │ │ │ ├── filter_stages.xml │ │ │ ├── filter_transitions.xml │ │ │ ├── filter_workflows.xml │ │ │ ├── stage.xml │ │ │ ├── transition.xml │ │ │ └── workflow.xml │ │ ├── services │ │ │ └── provider.php │ │ ├── tmpl │ │ │ ├── stage │ │ │ │ └── edit.php │ │ │ ├── stages │ │ │ │ └── default.php │ │ │ ├── transition │ │ │ │ └── edit.php │ │ │ ├── transitions │ │ │ │ └── default.php │ │ │ ├── workflow │ │ │ │ └── edit.php │ │ │ └── workflows │ │ │ │ └── default.php │ │ └── workflow.xml │ └── com_wrapper │ │ ├── services │ │ └── provider.php │ │ └── wrapper.xml ├── help │ ├── en-GB │ │ └── toc.json │ └── helpsites.xml ├── includes │ ├── app.php │ ├── defines.php │ └── framework.php ├── index.php ├── language │ ├── en-GB │ │ ├── en-GB.com_actionlogs.ini │ │ ├── en-GB.com_actionlogs.sys.ini │ │ ├── en-GB.com_admin.ini │ │ ├── en-GB.com_admin.sys.ini │ │ ├── en-GB.com_ajax.ini │ │ ├── en-GB.com_ajax.sys.ini │ │ ├── en-GB.com_associations.ini │ │ ├── en-GB.com_associations.sys.ini │ │ ├── en-GB.com_banners.ini │ │ ├── en-GB.com_banners.sys.ini │ │ ├── en-GB.com_cache.ini │ │ ├── en-GB.com_cache.sys.ini │ │ ├── en-GB.com_categories.ini │ │ ├── en-GB.com_categories.sys.ini │ │ ├── en-GB.com_checkin.ini │ │ ├── en-GB.com_checkin.sys.ini │ │ ├── en-GB.com_config.ini │ │ ├── en-GB.com_config.sys.ini │ │ ├── en-GB.com_contact.ini │ │ ├── en-GB.com_contact.sys.ini │ │ ├── en-GB.com_content.ini │ │ ├── en-GB.com_content.sys.ini │ │ ├── en-GB.com_contenthistory.ini │ │ ├── en-GB.com_contenthistory.sys.ini │ │ ├── en-GB.com_cpanel.ini │ │ ├── en-GB.com_cpanel.sys.ini │ │ ├── en-GB.com_csp.ini │ │ ├── en-GB.com_csp.sys.ini │ │ ├── en-GB.com_fields.ini │ │ ├── en-GB.com_fields.sys.ini │ │ ├── en-GB.com_finder.ini │ │ ├── en-GB.com_finder.sys.ini │ │ ├── en-GB.com_installer.ini │ │ ├── en-GB.com_installer.sys.ini │ │ ├── en-GB.com_joomlaupdate.ini │ │ ├── en-GB.com_joomlaupdate.sys.ini │ │ ├── en-GB.com_languages.ini │ │ ├── en-GB.com_languages.sys.ini │ │ ├── en-GB.com_login.ini │ │ ├── en-GB.com_login.sys.ini │ │ ├── en-GB.com_mailto.sys.ini │ │ ├── en-GB.com_media.ini │ │ ├── en-GB.com_media.sys.ini │ │ ├── en-GB.com_menus.ini │ │ ├── en-GB.com_menus.sys.ini │ │ ├── en-GB.com_messages.ini │ │ ├── en-GB.com_messages.sys.ini │ │ ├── en-GB.com_modules.ini │ │ ├── en-GB.com_modules.sys.ini │ │ ├── en-GB.com_newsfeeds.ini │ │ ├── en-GB.com_newsfeeds.sys.ini │ │ ├── en-GB.com_plugins.ini │ │ ├── en-GB.com_plugins.sys.ini │ │ ├── en-GB.com_postinstall.ini │ │ ├── en-GB.com_postinstall.sys.ini │ │ ├── en-GB.com_privacy.ini │ │ ├── en-GB.com_privacy.sys.ini │ │ ├── en-GB.com_redirect.ini │ │ ├── en-GB.com_redirect.sys.ini │ │ ├── en-GB.com_tags.ini │ │ ├── en-GB.com_tags.sys.ini │ │ ├── en-GB.com_templates.ini │ │ ├── en-GB.com_templates.sys.ini │ │ ├── en-GB.com_users.ini │ │ ├── en-GB.com_users.sys.ini │ │ ├── en-GB.com_workflow.ini │ │ ├── en-GB.com_workflow.sys.ini │ │ ├── en-GB.com_wrapper.ini │ │ ├── en-GB.com_wrapper.sys.ini │ │ ├── en-GB.ini │ │ ├── en-GB.lib_joomla.ini │ │ ├── en-GB.localise.php │ │ ├── en-GB.mod_custom.ini │ │ ├── en-GB.mod_custom.sys.ini │ │ ├── en-GB.mod_feed.ini │ │ ├── en-GB.mod_feed.sys.ini │ │ ├── en-GB.mod_frontend.ini │ │ ├── en-GB.mod_frontend.sys.ini │ │ ├── en-GB.mod_latest.ini │ │ ├── en-GB.mod_latest.sys.ini │ │ ├── en-GB.mod_latestactions.ini │ │ ├── en-GB.mod_latestactions.sys.ini │ │ ├── en-GB.mod_logged.ini │ │ ├── en-GB.mod_logged.sys.ini │ │ ├── en-GB.mod_login.ini │ │ ├── en-GB.mod_login.sys.ini │ │ ├── en-GB.mod_loginsupport.ini │ │ ├── en-GB.mod_loginsupport.sys.ini │ │ ├── en-GB.mod_menu.ini │ │ ├── en-GB.mod_menu.sys.ini │ │ ├── en-GB.mod_messages.ini │ │ ├── en-GB.mod_messages.sys.ini │ │ ├── en-GB.mod_multilangstatus.ini │ │ ├── en-GB.mod_multilangstatus.sys.ini │ │ ├── en-GB.mod_popular.ini │ │ ├── en-GB.mod_popular.sys.ini │ │ ├── en-GB.mod_post_installation_messages.ini │ │ ├── en-GB.mod_post_installation_messages.sys.ini │ │ ├── en-GB.mod_privacy_dashboard.ini │ │ ├── en-GB.mod_privacy_dashboard.sys.ini │ │ ├── en-GB.mod_privacy_status.ini │ │ ├── en-GB.mod_privacy_status.sys.ini │ │ ├── en-GB.mod_quickicon.ini │ │ ├── en-GB.mod_quickicon.sys.ini │ │ ├── en-GB.mod_sampledata.ini │ │ ├── en-GB.mod_sampledata.sys.ini │ │ ├── en-GB.mod_stats_admin.ini │ │ ├── en-GB.mod_stats_admin.sys.ini │ │ ├── en-GB.mod_submenu.ini │ │ ├── en-GB.mod_submenu.sys.ini │ │ ├── en-GB.mod_title.ini │ │ ├── en-GB.mod_title.sys.ini │ │ ├── en-GB.mod_toolbar.ini │ │ ├── en-GB.mod_toolbar.sys.ini │ │ ├── en-GB.mod_user.ini │ │ ├── en-GB.mod_user.sys.ini │ │ ├── en-GB.mod_version.ini │ │ ├── en-GB.mod_version.sys.ini │ │ ├── en-GB.plg_actionlog_joomla.ini │ │ ├── en-GB.plg_actionlog_joomla.sys.ini │ │ ├── en-GB.plg_api-authentication_basic.ini │ │ ├── en-GB.plg_api-authentication_basic.sys.ini │ │ ├── en-GB.plg_authentication_cookie.ini │ │ ├── en-GB.plg_authentication_cookie.sys.ini │ │ ├── en-GB.plg_authentication_joomla.ini │ │ ├── en-GB.plg_authentication_joomla.sys.ini │ │ ├── en-GB.plg_authentication_ldap.ini │ │ ├── en-GB.plg_authentication_ldap.sys.ini │ │ ├── en-GB.plg_behaviour_taggable.ini │ │ ├── en-GB.plg_behaviour_taggable.sys.ini │ │ ├── en-GB.plg_behaviour_versionable.ini │ │ ├── en-GB.plg_behaviour_versionable.sys.ini │ │ ├── en-GB.plg_captcha_recaptcha.ini │ │ ├── en-GB.plg_captcha_recaptcha.sys.ini │ │ ├── en-GB.plg_captcha_recaptcha_invisible.ini │ │ ├── en-GB.plg_captcha_recaptcha_invisible.sys.ini │ │ ├── en-GB.plg_content_confirmconsent.ini │ │ ├── en-GB.plg_content_confirmconsent.sys.ini │ │ ├── en-GB.plg_content_contact.ini │ │ ├── en-GB.plg_content_contact.sys.ini │ │ ├── en-GB.plg_content_emailcloak.ini │ │ ├── en-GB.plg_content_emailcloak.sys.ini │ │ ├── en-GB.plg_content_fields.ini │ │ ├── en-GB.plg_content_fields.sys.ini │ │ ├── en-GB.plg_content_finder.ini │ │ ├── en-GB.plg_content_finder.sys.ini │ │ ├── en-GB.plg_content_joomla.ini │ │ ├── en-GB.plg_content_joomla.sys.ini │ │ ├── en-GB.plg_content_loadmodule.ini │ │ ├── en-GB.plg_content_loadmodule.sys.ini │ │ ├── en-GB.plg_content_pagebreak.ini │ │ ├── en-GB.plg_content_pagebreak.sys.ini │ │ ├── en-GB.plg_content_pagenavigation.ini │ │ ├── en-GB.plg_content_pagenavigation.sys.ini │ │ ├── en-GB.plg_content_vote.ini │ │ ├── en-GB.plg_content_vote.sys.ini │ │ ├── en-GB.plg_editors-xtd_article.ini │ │ ├── en-GB.plg_editors-xtd_article.sys.ini │ │ ├── en-GB.plg_editors-xtd_contact.ini │ │ ├── en-GB.plg_editors-xtd_contact.sys.ini │ │ ├── en-GB.plg_editors-xtd_fields.ini │ │ ├── en-GB.plg_editors-xtd_fields.sys.ini │ │ ├── en-GB.plg_editors-xtd_image.ini │ │ ├── en-GB.plg_editors-xtd_image.sys.ini │ │ ├── en-GB.plg_editors-xtd_menu.ini │ │ ├── en-GB.plg_editors-xtd_menu.sys.ini │ │ ├── en-GB.plg_editors-xtd_module.ini │ │ ├── en-GB.plg_editors-xtd_module.sys.ini │ │ ├── en-GB.plg_editors-xtd_pagebreak.ini │ │ ├── en-GB.plg_editors-xtd_pagebreak.sys.ini │ │ ├── en-GB.plg_editors-xtd_readmore.ini │ │ ├── en-GB.plg_editors-xtd_readmore.sys.ini │ │ ├── en-GB.plg_editors_codemirror.ini │ │ ├── en-GB.plg_editors_codemirror.sys.ini │ │ ├── en-GB.plg_editors_none.ini │ │ ├── en-GB.plg_editors_none.sys.ini │ │ ├── en-GB.plg_editors_tinymce.ini │ │ ├── en-GB.plg_editors_tinymce.sys.ini │ │ ├── en-GB.plg_extension_finder.ini │ │ ├── en-GB.plg_extension_finder.sys.ini │ │ ├── en-GB.plg_extension_joomla.ini │ │ ├── en-GB.plg_extension_joomla.sys.ini │ │ ├── en-GB.plg_extension_namespacemap.ini │ │ ├── en-GB.plg_extension_namespacemap.sys.ini │ │ ├── en-GB.plg_fields_calendar.ini │ │ ├── en-GB.plg_fields_calendar.sys.ini │ │ ├── en-GB.plg_fields_checkboxes.ini │ │ ├── en-GB.plg_fields_checkboxes.sys.ini │ │ ├── en-GB.plg_fields_color.ini │ │ ├── en-GB.plg_fields_color.sys.ini │ │ ├── en-GB.plg_fields_editor.ini │ │ ├── en-GB.plg_fields_editor.sys.ini │ │ ├── en-GB.plg_fields_image.ini │ │ ├── en-GB.plg_fields_image.sys.ini │ │ ├── en-GB.plg_fields_imagelist.ini │ │ ├── en-GB.plg_fields_imagelist.sys.ini │ │ ├── en-GB.plg_fields_integer.ini │ │ ├── en-GB.plg_fields_integer.sys.ini │ │ ├── en-GB.plg_fields_list.ini │ │ ├── en-GB.plg_fields_list.sys.ini │ │ ├── en-GB.plg_fields_media.ini │ │ ├── en-GB.plg_fields_media.sys.ini │ │ ├── en-GB.plg_fields_radio.ini │ │ ├── en-GB.plg_fields_radio.sys.ini │ │ ├── en-GB.plg_fields_repeatable.ini │ │ ├── en-GB.plg_fields_repeatable.sys.ini │ │ ├── en-GB.plg_fields_sql.ini │ │ ├── en-GB.plg_fields_sql.sys.ini │ │ ├── en-GB.plg_fields_text.ini │ │ ├── en-GB.plg_fields_text.sys.ini │ │ ├── en-GB.plg_fields_textarea.ini │ │ ├── en-GB.plg_fields_textarea.sys.ini │ │ ├── en-GB.plg_fields_url.ini │ │ ├── en-GB.plg_fields_url.sys.ini │ │ ├── en-GB.plg_fields_user.ini │ │ ├── en-GB.plg_fields_user.sys.ini │ │ ├── en-GB.plg_fields_usergrouplist.ini │ │ ├── en-GB.plg_fields_usergrouplist.sys.ini │ │ ├── en-GB.plg_filesystem_local.ini │ │ ├── en-GB.plg_filesystem_local.sys.ini │ │ ├── en-GB.plg_finder_categories.ini │ │ ├── en-GB.plg_finder_categories.sys.ini │ │ ├── en-GB.plg_finder_contacts.ini │ │ ├── en-GB.plg_finder_contacts.sys.ini │ │ ├── en-GB.plg_finder_content.ini │ │ ├── en-GB.plg_finder_content.sys.ini │ │ ├── en-GB.plg_finder_newsfeeds.ini │ │ ├── en-GB.plg_finder_newsfeeds.sys.ini │ │ ├── en-GB.plg_finder_tags.ini │ │ ├── en-GB.plg_finder_tags.sys.ini │ │ ├── en-GB.plg_installer_folderinstaller.ini │ │ ├── en-GB.plg_installer_folderinstaller.sys.ini │ │ ├── en-GB.plg_installer_override.ini │ │ ├── en-GB.plg_installer_override.sys.ini │ │ ├── en-GB.plg_installer_packageinstaller.ini │ │ ├── en-GB.plg_installer_packageinstaller.sys.ini │ │ ├── en-GB.plg_installer_urlinstaller.ini │ │ ├── en-GB.plg_installer_urlinstaller.sys.ini │ │ ├── en-GB.plg_installer_webinstaller.ini │ │ ├── en-GB.plg_installer_webinstaller.sys.ini │ │ ├── en-GB.plg_media-action_crop.ini │ │ ├── en-GB.plg_media-action_crop.sys.ini │ │ ├── en-GB.plg_media-action_resize.ini │ │ ├── en-GB.plg_media-action_resize.sys.ini │ │ ├── en-GB.plg_media-action_rotate.ini │ │ ├── en-GB.plg_media-action_rotate.sys.ini │ │ ├── en-GB.plg_privacy_actionlogs.ini │ │ ├── en-GB.plg_privacy_actionlogs.sys.ini │ │ ├── en-GB.plg_privacy_consents.ini │ │ ├── en-GB.plg_privacy_consents.sys.ini │ │ ├── en-GB.plg_privacy_contact.ini │ │ ├── en-GB.plg_privacy_contact.sys.ini │ │ ├── en-GB.plg_privacy_content.ini │ │ ├── en-GB.plg_privacy_content.sys.ini │ │ ├── en-GB.plg_privacy_message.ini │ │ ├── en-GB.plg_privacy_message.sys.ini │ │ ├── en-GB.plg_privacy_user.ini │ │ ├── en-GB.plg_privacy_user.sys.ini │ │ ├── en-GB.plg_quickicon_extensionupdate.ini │ │ ├── en-GB.plg_quickicon_extensionupdate.sys.ini │ │ ├── en-GB.plg_quickicon_joomlaupdate.ini │ │ ├── en-GB.plg_quickicon_joomlaupdate.sys.ini │ │ ├── en-GB.plg_quickicon_overridecheck.ini │ │ ├── en-GB.plg_quickicon_overridecheck.sys.ini │ │ ├── en-GB.plg_quickicon_phpversioncheck.ini │ │ ├── en-GB.plg_quickicon_phpversioncheck.sys.ini │ │ ├── en-GB.plg_quickicon_privacycheck.ini │ │ ├── en-GB.plg_quickicon_privacycheck.sys.ini │ │ ├── en-GB.plg_sampledata_blog.ini │ │ ├── en-GB.plg_sampledata_blog.sys.ini │ │ ├── en-GB.plg_sampledata_multilang.ini │ │ ├── en-GB.plg_sampledata_multilang.sys.ini │ │ ├── en-GB.plg_system_actionlogs.ini │ │ ├── en-GB.plg_system_actionlogs.sys.ini │ │ ├── en-GB.plg_system_cache.ini │ │ ├── en-GB.plg_system_cache.sys.ini │ │ ├── en-GB.plg_system_debug.ini │ │ ├── en-GB.plg_system_debug.sys.ini │ │ ├── en-GB.plg_system_fields.ini │ │ ├── en-GB.plg_system_fields.sys.ini │ │ ├── en-GB.plg_system_highlight.ini │ │ ├── en-GB.plg_system_highlight.sys.ini │ │ ├── en-GB.plg_system_httpheaders.ini │ │ ├── en-GB.plg_system_httpheaders.sys.ini │ │ ├── en-GB.plg_system_languagecode.ini │ │ ├── en-GB.plg_system_languagecode.sys.ini │ │ ├── en-GB.plg_system_languagefilter.ini │ │ ├── en-GB.plg_system_languagefilter.sys.ini │ │ ├── en-GB.plg_system_log.ini │ │ ├── en-GB.plg_system_log.sys.ini │ │ ├── en-GB.plg_system_logout.ini │ │ ├── en-GB.plg_system_logout.sys.ini │ │ ├── en-GB.plg_system_logrotation.ini │ │ ├── en-GB.plg_system_logrotation.sys.ini │ │ ├── en-GB.plg_system_privacyconsent.ini │ │ ├── en-GB.plg_system_privacyconsent.sys.ini │ │ ├── en-GB.plg_system_redirect.ini │ │ ├── en-GB.plg_system_redirect.sys.ini │ │ ├── en-GB.plg_system_remember.ini │ │ ├── en-GB.plg_system_remember.sys.ini │ │ ├── en-GB.plg_system_sef.ini │ │ ├── en-GB.plg_system_sef.sys.ini │ │ ├── en-GB.plg_system_sessiongc.ini │ │ ├── en-GB.plg_system_sessiongc.sys.ini │ │ ├── en-GB.plg_system_skipto.ini │ │ ├── en-GB.plg_system_skipto.sys.ini │ │ ├── en-GB.plg_system_stats.ini │ │ ├── en-GB.plg_system_stats.sys.ini │ │ ├── en-GB.plg_system_updatenotification.ini │ │ ├── en-GB.plg_system_updatenotification.sys.ini │ │ ├── en-GB.plg_twofactorauth_totp.ini │ │ ├── en-GB.plg_twofactorauth_totp.sys.ini │ │ ├── en-GB.plg_twofactorauth_yubikey.ini │ │ ├── en-GB.plg_twofactorauth_yubikey.sys.ini │ │ ├── en-GB.plg_user_contactcreator.ini │ │ ├── en-GB.plg_user_contactcreator.sys.ini │ │ ├── en-GB.plg_user_joomla.ini │ │ ├── en-GB.plg_user_joomla.sys.ini │ │ ├── en-GB.plg_user_profile.ini │ │ ├── en-GB.plg_user_profile.sys.ini │ │ ├── en-GB.plg_user_terms.ini │ │ ├── en-GB.plg_user_terms.sys.ini │ │ ├── en-GB.plg_webservices_content.ini │ │ ├── en-GB.plg_webservices_content.sys.ini │ │ ├── en-GB.xml │ │ └── install.xml │ └── overrides │ │ └── index.html ├── logs │ └── index.html ├── manifests │ ├── files │ │ └── joomla.xml │ ├── libraries │ │ ├── joomla.xml │ │ └── phpass.xml │ └── packages │ │ ├── index.html │ │ └── pkg_en-GB.xml ├── modules │ ├── mod_custom │ │ ├── mod_custom.php │ │ ├── mod_custom.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_feed │ │ ├── Helper │ │ │ └── FeedHelper.php │ │ ├── mod_feed.php │ │ ├── mod_feed.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_frontend │ │ ├── mod_frontend.php │ │ ├── mod_frontend.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_latest │ │ ├── Helper │ │ │ └── ModLatestHelper.php │ │ ├── mod_latest.php │ │ ├── mod_latest.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_latestactions │ │ ├── helper.php │ │ ├── mod_latestactions.php │ │ ├── mod_latestactions.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_logged │ │ ├── Helper │ │ │ └── LoggedHelper.php │ │ ├── mod_logged.php │ │ ├── mod_logged.xml │ │ └── tmpl │ │ │ ├── default.php │ │ │ └── disabled.php │ ├── mod_login │ │ ├── Helper │ │ │ └── LoginHelper.php │ │ ├── mod_login.php │ │ ├── mod_login.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_loginsupport │ │ ├── mod_loginsupport.php │ │ ├── mod_loginsupport.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_menu │ │ ├── Menu │ │ │ └── CssMenu.php │ │ ├── mod_menu.php │ │ ├── mod_menu.xml │ │ └── tmpl │ │ │ ├── default.php │ │ │ └── default_submenu.php │ ├── mod_messages │ │ ├── mod_messages.php │ │ ├── mod_messages.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_multilangstatus │ │ ├── Helper │ │ │ └── MultilangstatusAdminHelper.php │ │ ├── language │ │ │ └── en-GB │ │ │ │ ├── en-GB.mod_multilangstatus.ini │ │ │ │ └── en-GB.mod_multilangstatus.sys.ini │ │ ├── mod_multilangstatus.php │ │ ├── mod_multilangstatus.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_popular │ │ ├── Helper │ │ │ └── PopularHelper.php │ │ ├── mod_popular.php │ │ ├── mod_popular.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_post_installation_messages │ │ ├── mod_post_installation_messages.php │ │ ├── mod_post_installation_messages.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_privacy_dashboard │ │ ├── helper.php │ │ ├── mod_privacy_dashboard.php │ │ ├── mod_privacy_dashboard.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_privacy_status │ │ ├── helper.php │ │ ├── mod_privacy_status.php │ │ ├── mod_privacy_status.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_quickicon │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Event │ │ │ └── QuickIconsEvent.php │ │ ├── Helper │ │ │ └── QuickIconHelper.php │ │ ├── mod_quickicon.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ └── default.php │ ├── mod_sampledata │ │ ├── Helper │ │ │ └── SampledataHelper.php │ │ ├── mod_sampledata.php │ │ ├── mod_sampledata.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_stats_admin │ │ ├── Helper │ │ │ └── StatsAdminHelper.php │ │ ├── language │ │ │ ├── en-GB.mod_stats_admin.ini │ │ │ └── en-GB.mod_stats_admin.sys.ini │ │ ├── mod_stats_admin.php │ │ ├── mod_stats_admin.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_submenu │ │ ├── Menu │ │ │ └── Menu.php │ │ ├── mod_submenu.php │ │ ├── mod_submenu.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_title │ │ ├── mod_title.php │ │ ├── mod_title.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_toolbar │ │ ├── mod_toolbar.php │ │ ├── mod_toolbar.xml │ │ └── tmpl │ │ │ └── default.php │ ├── mod_user │ │ ├── mod_user.php │ │ ├── mod_user.xml │ │ └── tmpl │ │ │ └── default.php │ └── mod_version │ │ ├── Helper │ │ └── VersionHelper.php │ │ ├── mod_version.php │ │ ├── mod_version.xml │ │ └── tmpl │ │ └── default.php └── templates │ ├── atum │ ├── Service │ │ └── HTML │ │ │ └── Atum.php │ ├── component.php │ ├── cpanel.php │ ├── error.php │ ├── error_full.php │ ├── error_login.php │ ├── favicon.ico │ ├── html │ │ └── layouts │ │ │ └── chromes │ │ │ ├── body.php │ │ │ ├── header-item.php │ │ │ ├── title.php │ │ │ └── well.php │ ├── images │ │ ├── joomla-pattern.svg │ │ ├── logo-blue.svg │ │ ├── logo-joomla-blue.svg │ │ ├── logo-joomla-white.svg │ │ ├── logo.svg │ │ ├── select-bg-active.svg │ │ └── select-bg.svg │ ├── index.php │ ├── joomla.asset.json │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.tpl_atum.ini │ │ │ └── en-GB.tpl_atum.sys.ini │ ├── login.php │ ├── scss │ │ ├── _mixin.scss │ │ ├── _variables.scss │ │ ├── blocks │ │ │ ├── _alerts.scss │ │ │ ├── _edit.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _header.scss │ │ │ ├── _icons.scss │ │ │ ├── _iframe.scss │ │ │ ├── _layout.scss │ │ │ ├── _lists.scss │ │ │ ├── _login.scss │ │ │ ├── _modals.scss │ │ │ ├── _quickicons.scss │ │ │ ├── _searchtools.scss │ │ │ ├── _sidebar-nav.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _system-message.scss │ │ │ ├── _tabs.scss │ │ │ ├── _toolbar.scss │ │ │ ├── _treeselect.scss │ │ │ └── _utilities.scss │ │ ├── fonts │ │ │ └── _fontawesome.scss │ │ ├── pages │ │ │ ├── _com_admin.scss │ │ │ ├── _com_config.scss │ │ │ ├── _com_content.scss │ │ │ ├── _com_cpanel.scss │ │ │ ├── _com_privacy.scss │ │ │ ├── _com_tags.scss │ │ │ ├── _com_templates.scss │ │ │ └── _com_users.scss │ │ ├── template-rtl.scss │ │ ├── template.scss │ │ └── vendor │ │ │ ├── _awesomplete.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _choicesjs.scss │ │ │ ├── _chosen.scss │ │ │ ├── _codemirror.scss │ │ │ ├── _dragula.scss │ │ │ ├── _minicolors.scss │ │ │ ├── _tinymce.scss │ │ │ └── bootstrap │ │ │ ├── _badge.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _collapse.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _form.scss │ │ │ ├── _lists.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _pagination.scss │ │ │ └── _table.scss │ ├── templateDetails.xml │ ├── template_preview.png │ └── template_thumbnail.png │ └── system │ ├── component.php │ ├── css │ ├── error.css │ └── system.css │ ├── error.php │ ├── images │ └── calendar.png │ └── index.php ├── api ├── components │ └── com_content │ │ ├── Controller │ │ └── ArticlesController.php │ │ └── View │ │ └── Articles │ │ └── JsonapiView.php ├── includes │ ├── app.php │ ├── defines.php │ └── framework.php └── index.php ├── build.js ├── build.xml ├── build ├── .gitignore ├── build-modules-js │ ├── compilecss.es6.js │ ├── compilejs.es6.js │ ├── error-pages.es6.js │ ├── gzip-assets.es6.js │ ├── init.es6.js │ ├── javascript │ │ ├── babel-transform.es6.js │ │ ├── compile-es6.es6.js │ │ ├── compile-w-c.es6.js │ │ ├── handle-file.es6.js │ │ └── minify-vendor.es6.js │ ├── settings.json │ ├── stylesheets │ │ └── scss-transform.es6.js │ ├── utils │ │ ├── make-dir.es6.js │ │ ├── rootpath.es6.js │ │ └── walk-sync.es6.js │ └── watch.es6.js ├── build.php ├── bump.php ├── deleted_file_check.php ├── helpTOC.php ├── media_source │ ├── cache │ │ └── index.html │ ├── com_associations │ │ ├── css │ │ │ └── sidebyside.css │ │ └── js │ │ │ ├── admin-associations-default.es6.js │ │ │ ├── admin-associations-modal.es6.js │ │ │ ├── associations-edit.es6.js │ │ │ └── sidebyside.es5.js │ ├── com_banners │ │ └── js │ │ │ └── admin-banner-edit.es6.js │ ├── com_cache │ │ └── js │ │ │ └── admin-cache-default.es6.js │ ├── com_config │ │ └── js │ │ │ ├── admin-application-default.es6.js │ │ │ ├── config-default.es6.js │ │ │ ├── modules-default.es6.js │ │ │ └── templates-default.es6.js │ ├── com_contact │ │ └── js │ │ │ ├── admin-contacts-modal.es6.js │ │ │ └── categories-default.es6.js │ ├── com_content │ │ └── js │ │ │ ├── admin-article-pagebreak.es6.js │ │ │ ├── admin-article-readmore.es6.js │ │ │ ├── admin-articles-default-batch-footer.es6.js │ │ │ ├── admin-articles-default-stage-footer.es6.js │ │ │ ├── admin-articles-modal.es6.js │ │ │ ├── admin-articles-workflow-buttons.es6.js │ │ │ └── form-edit.es6.js │ ├── com_contenthistory │ │ └── js │ │ │ ├── admin-compare-compare.es6.js │ │ │ ├── admin-history-modal.es6.js │ │ │ └── admin-history-versions.es6.js │ ├── com_cpanel │ │ └── js │ │ │ ├── admin-add_module.es6.js │ │ │ ├── admin-cpanel-default.es6.js │ │ │ └── admin-system-loader.es6.js │ ├── com_fields │ │ └── js │ │ │ ├── admin-field-edit.es6.js │ │ │ ├── admin-fields-default-batch.es6.js │ │ │ └── admin-fields-modal.es6.js │ ├── com_finder │ │ ├── css │ │ │ ├── dates.css │ │ │ ├── finder.css │ │ │ └── indexer.css │ │ └── js │ │ │ ├── filters.es6.js │ │ │ ├── finder-edit.es6.js │ │ │ ├── finder.es6.js │ │ │ ├── index.es6.js │ │ │ ├── indexer.es6.js │ │ │ └── maps.es6.js │ ├── com_installer │ │ ├── css │ │ │ └── installer.css │ │ └── js │ │ │ ├── changelog.es6.js │ │ │ └── installer.es6.js │ ├── com_joomlaupdate │ │ └── js │ │ │ ├── admin-update-default.es6.js │ │ │ ├── default.es5.js │ │ │ ├── encryption.es5.js │ │ │ └── update.es5.js │ ├── com_languages │ │ ├── css │ │ │ └── overrider.css │ │ └── js │ │ │ ├── admin-language-edit-change-flag.es6.js │ │ │ ├── admin-override-edit-refresh-searchstring.es6.js │ │ │ └── overrider.es6.js │ ├── com_mailto │ │ └── js │ │ │ └── mailto-default.es6.js │ ├── com_media │ │ └── js │ │ │ └── edit-images.es6.js │ ├── com_menus │ │ ├── css │ │ │ ├── admin-item-edit_container.css │ │ │ └── admin-item-edit_modules.css │ │ └── js │ │ │ ├── admin-item-edit.es6.js │ │ │ ├── admin-item-edit_container.es6.js │ │ │ ├── admin-item-edit_modules.es6.js │ │ │ ├── admin-item-modal.es6.js │ │ │ ├── admin-items-modal.es6.js │ │ │ ├── admin-menus-default.es6.js │ │ │ └── default-batch-body.es6.js │ ├── com_modules │ │ └── js │ │ │ ├── admin-module-edit.es6.js │ │ │ ├── admin-module-edit_assignment.es6.js │ │ │ ├── admin-modules-modal.es6.js │ │ │ └── admin-select-modal.es6.js │ ├── com_newsfeeds │ │ └── js │ │ │ └── categories-default.es6.js │ ├── com_tags │ │ └── js │ │ │ ├── tag-default.es6.js │ │ │ ├── tag-list.es6.js │ │ │ └── tags-default.es6.js │ ├── com_templates │ │ ├── css │ │ │ └── admin-templates-default.css │ │ └── js │ │ │ ├── admin-template-compare.es6.js │ │ │ ├── admin-template-toggle-assignment.es6.js │ │ │ ├── admin-template-toggle-switch.es6.js │ │ │ └── admin-templates-default.es6.js │ ├── com_users │ │ └── js │ │ │ ├── admin-users-groups.es6.js │ │ │ ├── admin-users-mail.es6.js │ │ │ ├── admin-users-user.es6.js │ │ │ └── two-factor-switcher.es6.js │ ├── com_wrapper │ │ └── js │ │ │ └── iframe-height.es6.js │ ├── contacts │ │ └── images │ │ │ ├── con_address.png │ │ │ ├── con_fax.png │ │ │ ├── con_info.png │ │ │ ├── con_mobile.png │ │ │ ├── con_tel.png │ │ │ └── emailButton.png │ ├── index.html │ ├── layouts │ │ └── js │ │ │ └── joomla │ │ │ ├── form │ │ │ └── field │ │ │ │ └── category-change.es6.js │ │ │ └── html │ │ │ └── batch │ │ │ └── batch-language.es6.js │ ├── legacy │ │ ├── css │ │ │ └── sortablelist.css │ │ ├── joomla.asset.json │ │ └── js │ │ │ ├── ajax-chosen.es5.js │ │ │ ├── bootstrap-init.es5.js │ │ │ ├── frontediting.es5.js │ │ │ ├── helpsite.es5.js │ │ │ ├── highlighter.es5.js │ │ │ ├── joomla-chosen.es5.js │ │ │ ├── jquery-noconflict.es5.js │ │ │ ├── sortablelist.es5.js │ │ │ ├── tabs-state.es5.js │ │ │ ├── toolbar.es5.js │ │ │ └── treeselectmenu.es5.js │ ├── mailto │ │ └── images │ │ │ └── close-x.png │ ├── mod_languages │ │ ├── css │ │ │ └── template.css │ │ └── images │ │ │ ├── af.gif │ │ │ ├── af_za.gif │ │ │ ├── al.gif │ │ │ ├── ar.gif │ │ │ ├── ar_aa.gif │ │ │ ├── at.gif │ │ │ ├── az.gif │ │ │ ├── az_az.gif │ │ │ ├── be.gif │ │ │ ├── be_by.gif │ │ │ ├── belg.gif │ │ │ ├── bg.gif │ │ │ ├── bg_bg.gif │ │ │ ├── bn.gif │ │ │ ├── bn_bd.gif │ │ │ ├── br.gif │ │ │ ├── br_fr.gif │ │ │ ├── bs.gif │ │ │ ├── bs_ba.gif │ │ │ ├── ca.gif │ │ │ ├── ca_es.gif │ │ │ ├── cbk_iq.gif │ │ │ ├── ch.gif │ │ │ ├── cs.gif │ │ │ ├── cs_cz.gif │ │ │ ├── cy.gif │ │ │ ├── cy_gb.gif │ │ │ ├── cz.gif │ │ │ ├── cz_cz.gif │ │ │ ├── da.gif │ │ │ ├── da_dk.gif │ │ │ ├── de.gif │ │ │ ├── de_at.gif │ │ │ ├── de_ch.gif │ │ │ ├── de_de.gif │ │ │ ├── de_li.gif │ │ │ ├── de_lu.gif │ │ │ ├── dk.gif │ │ │ ├── dz_bt.gif │ │ │ ├── el.gif │ │ │ ├── el_gr.gif │ │ │ ├── en.gif │ │ │ ├── en_au.gif │ │ │ ├── en_ca.gif │ │ │ ├── en_gb.gif │ │ │ ├── en_nz.gif │ │ │ ├── en_us.gif │ │ │ ├── eo.gif │ │ │ ├── eo_xx.gif │ │ │ ├── es.gif │ │ │ ├── es_co.gif │ │ │ ├── es_es.gif │ │ │ ├── et.gif │ │ │ ├── et_ee.gif │ │ │ ├── eu_es.gif │ │ │ ├── fa.gif │ │ │ ├── fa_ir.gif │ │ │ ├── fi.gif │ │ │ ├── fi_fi.gif │ │ │ ├── fr.gif │ │ │ ├── fr_ca.gif │ │ │ ├── fr_fr.gif │ │ │ ├── ga_ie.gif │ │ │ ├── gd.gif │ │ │ ├── gd_gb.gif │ │ │ ├── gl.gif │ │ │ ├── gl_es.gif │ │ │ ├── he.gif │ │ │ ├── he_il.gif │ │ │ ├── hi.gif │ │ │ ├── hi_in.gif │ │ │ ├── hk.gif │ │ │ ├── hk_hk.gif │ │ │ ├── hr.gif │ │ │ ├── hr_hr.gif │ │ │ ├── hu.gif │ │ │ ├── hu_hu.gif │ │ │ ├── hy.gif │ │ │ ├── hy_am.gif │ │ │ ├── icon-16-language.png │ │ │ ├── id.gif │ │ │ ├── id_id.gif │ │ │ ├── is.gif │ │ │ ├── is_is.gif │ │ │ ├── it.gif │ │ │ ├── it_it.gif │ │ │ ├── ja.gif │ │ │ ├── ja_jp.gif │ │ │ ├── ka.gif │ │ │ ├── ka_ge.gif │ │ │ ├── kk_kz.gif │ │ │ ├── km.gif │ │ │ ├── km_kh.gif │ │ │ ├── ko.gif │ │ │ ├── ko_kr.gif │ │ │ ├── ku.gif │ │ │ ├── lo.gif │ │ │ ├── lo_la.gif │ │ │ ├── lt.gif │ │ │ ├── lt_lt.gif │ │ │ ├── lv.gif │ │ │ ├── lv_lv.gif │ │ │ ├── mk.gif │ │ │ ├── mk_mk.gif │ │ │ ├── mn.gif │ │ │ ├── mn_mn.gif │ │ │ ├── ms_my.gif │ │ │ ├── nb_no.gif │ │ │ ├── nl.gif │ │ │ ├── nl_be.gif │ │ │ ├── nl_nl.gif │ │ │ ├── nn_no.gif │ │ │ ├── no.gif │ │ │ ├── pl.gif │ │ │ ├── pl_pl.gif │ │ │ ├── prs_af.gif │ │ │ ├── ps.gif │ │ │ ├── ps_af.gif │ │ │ ├── pt.gif │ │ │ ├── pt_br.gif │ │ │ ├── pt_pt.gif │ │ │ ├── ro.gif │ │ │ ├── ro_ro.gif │ │ │ ├── ru.gif │ │ │ ├── ru_ru.gif │ │ │ ├── si.gif │ │ │ ├── si_lk.gif │ │ │ ├── sk.gif │ │ │ ├── sk_sk.gif │ │ │ ├── sl.gif │ │ │ ├── sl_si.gif │ │ │ ├── sq_al.gif │ │ │ ├── sr.gif │ │ │ ├── sr_rs.gif │ │ │ ├── sr_yu.gif │ │ │ ├── srp_me.gif │ │ │ ├── sv.gif │ │ │ ├── sv_se.gif │ │ │ ├── sw.gif │ │ │ ├── sw_ke.gif │ │ │ ├── sy.gif │ │ │ ├── sy_iq.gif │ │ │ ├── ta.gif │ │ │ ├── ta_in.gif │ │ │ ├── th.gif │ │ │ ├── th_th.gif │ │ │ ├── tk_tm.gif │ │ │ ├── tr.gif │ │ │ ├── tr_tr.gif │ │ │ ├── tw.gif │ │ │ ├── ug_cn.gif │ │ │ ├── uk.gif │ │ │ ├── uk_ua.gif │ │ │ ├── ur.gif │ │ │ ├── ur_pk.gif │ │ │ ├── us.gif │ │ │ ├── uz.gif │ │ │ ├── uz_uz.gif │ │ │ ├── vi.gif │ │ │ ├── vi_vn.gif │ │ │ ├── zh.gif │ │ │ ├── zh_cn.gif │ │ │ └── zh_tw.gif │ ├── mod_login │ │ └── js │ │ │ └── admin-login.es6.js │ ├── mod_menu │ │ └── js │ │ │ ├── admin-menu.es6.js │ │ │ └── menu.es6.js │ ├── mod_multilangstatus │ │ └── js │ │ │ └── admin-multilangstatus.es6.js │ ├── mod_quickicon │ │ └── js │ │ │ └── quickicon.es6.js │ ├── mod_sampledata │ │ └── js │ │ │ └── sampledata-process.es6.js │ ├── plg_captcha_recaptcha │ │ └── js │ │ │ └── recaptcha.es6.js │ ├── plg_captcha_recaptcha_invisible │ │ └── js │ │ │ ├── recaptcha.js │ │ │ └── recaptcha.min.js │ ├── plg_editors_codemirror │ │ ├── css │ │ │ └── codemirror.css │ │ └── js │ │ │ └── joomla-editor-codemirror.w-c.es6.js │ ├── plg_editors_none │ │ └── js │ │ │ └── joomla-editor-none.w-c.es6.js │ ├── plg_editors_tinymce │ │ ├── js │ │ │ ├── plugins │ │ │ │ └── dragdrop │ │ │ │ │ └── plugin.es6.js │ │ │ ├── tinymce-builder.es6.js │ │ │ └── tinymce.es6.js │ │ └── scss │ │ │ └── tinymce-builder.scss │ ├── plg_installer_webinstaller │ │ ├── js │ │ │ └── client.es6.js │ │ └── scss │ │ │ └── client.scss │ ├── plg_media-action_crop │ │ └── js │ │ │ └── crop.es6.js │ ├── plg_media-action_resize │ │ └── js │ │ │ └── resize.es6.js │ ├── plg_media-action_rotate │ │ └── js │ │ │ └── rotate.es6.js │ ├── plg_quickicon_extensionupdate │ │ └── js │ │ │ └── extensionupdatecheck.es6.js │ ├── plg_quickicon_joomlaupdate │ │ └── js │ │ │ └── jupdatecheck.es6.js │ ├── plg_quickicon_overridecheck │ │ └── js │ │ │ └── overridecheck.es6.js │ ├── plg_quickicon_privacycheck │ │ └── js │ │ │ └── privacycheck.es6.js │ ├── plg_system_debug │ │ ├── css │ │ │ └── debug.css │ │ ├── js │ │ │ └── debug.es6.js │ │ └── widgets │ │ │ ├── info │ │ │ ├── widget.css │ │ │ └── widget.es5.js │ │ │ ├── languageErrors │ │ │ ├── widget.css │ │ │ └── widget.es5.js │ │ │ ├── languageFiles │ │ │ ├── widget.css │ │ │ └── widget.es5.js │ │ │ ├── languageStrings │ │ │ ├── widget.css │ │ │ └── widget.es5.js │ │ │ └── sqlqueries │ │ │ ├── widget.css │ │ │ └── widget.es5.js │ ├── plg_system_highlight │ │ └── highlight.css │ ├── plg_system_stats │ │ └── js │ │ │ ├── stats-message.es6.js │ │ │ └── stats.es6.js │ ├── system │ │ ├── css │ │ │ ├── adminlist.css │ │ │ ├── calendar-jos.css │ │ │ ├── debug.css │ │ │ ├── fields │ │ │ │ ├── calendar-rtl.css │ │ │ │ └── calendar.css │ │ │ ├── frontediting.css │ │ │ ├── mootree.css │ │ │ ├── mootree_rtl.css │ │ │ ├── searchtools.css │ │ │ ├── sortablelist.css │ │ │ └── system.css │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── arrow.png │ │ │ ├── arrow_rtl.png │ │ │ ├── blank.png │ │ │ ├── calendar.png │ │ │ ├── checked_out.png │ │ │ ├── edit.png │ │ │ ├── edit_unpublished.png │ │ │ ├── emailButton.png │ │ │ ├── icon-16-logout.png │ │ │ ├── icon_error.gif │ │ │ ├── indent.png │ │ │ ├── indent1.png │ │ │ ├── indent2.png │ │ │ ├── indent3.png │ │ │ ├── indent4.png │ │ │ ├── indent5.png │ │ │ ├── joomla.png │ │ │ ├── jquery.minicolors.png │ │ │ ├── livemarks-rtl.png │ │ │ ├── livemarks.png │ │ │ ├── mooRainbow │ │ │ │ ├── blank.gif │ │ │ │ ├── moor_arrows.gif │ │ │ │ ├── moor_boverlay.png │ │ │ │ ├── moor_cursor.gif │ │ │ │ ├── moor_slider.png │ │ │ │ └── moor_woverlay.png │ │ │ ├── mootree.gif │ │ │ ├── mootree_loader.gif │ │ │ ├── new.png │ │ │ ├── no_indent.png │ │ │ ├── notice-alert.png │ │ │ ├── notice-download.png │ │ │ ├── notice-info.png │ │ │ ├── notice-note.png │ │ │ ├── pdf_button.png │ │ │ ├── printButton.png │ │ │ ├── rating_star.png │ │ │ ├── rating_star_blank.png │ │ │ ├── sort0.png │ │ │ ├── sort1.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_none.png │ │ │ ├── tooltip.png │ │ │ └── weblink.png │ │ ├── joomla.asset.json │ │ ├── js │ │ │ ├── core.es6.js │ │ │ ├── draggable.es6.js │ │ │ ├── fields │ │ │ │ ├── calendar-locales │ │ │ │ │ ├── af.es5.js │ │ │ │ │ ├── ar.es5.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── date │ │ │ │ │ │ ├── gregorian │ │ │ │ │ │ │ └── date-helper.es5.js │ │ │ │ │ │ └── jalali │ │ │ │ │ │ │ └── date-helper.es5.js │ │ │ │ │ ├── de.es5.js │ │ │ │ │ ├── el.es5.js │ │ │ │ │ ├── en.es5.js │ │ │ │ │ ├── es.es5.js │ │ │ │ │ ├── eu.es5.js │ │ │ │ │ ├── fa-ir.es5.js │ │ │ │ │ ├── fi.es5.js │ │ │ │ │ ├── fr.es5.js │ │ │ │ │ ├── ga.es5.js │ │ │ │ │ ├── hr.es5.js │ │ │ │ │ ├── hu.es5.js │ │ │ │ │ ├── it.es5.js │ │ │ │ │ ├── ja.es5.js │ │ │ │ │ ├── ka.es5.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko.es5.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── mk.es5.js │ │ │ │ │ ├── nb.es5.js │ │ │ │ │ ├── nl.es5.js │ │ │ │ │ ├── pl.es5.js │ │ │ │ │ ├── prs-af.es5.js │ │ │ │ │ ├── pt.es5.js │ │ │ │ │ ├── ru.es5.js │ │ │ │ │ ├── sk.es5.js │ │ │ │ │ ├── sl.es5.js │ │ │ │ │ ├── sr-rs.es5.js │ │ │ │ │ ├── sr-yu.es5.js │ │ │ │ │ ├── sv.es5.js │ │ │ │ │ ├── sw.es5.js │ │ │ │ │ ├── ta.es5.js │ │ │ │ │ ├── th.es5.js │ │ │ │ │ ├── uk.es5.js │ │ │ │ │ ├── zh-CN.es5.js │ │ │ │ │ └── zh-TW.es5.js │ │ │ │ ├── calendar.es5.js │ │ │ │ ├── color-field-adv-init.es5.js │ │ │ │ ├── joomla-field-color-slider.es6.js │ │ │ │ ├── joomla-field-fancy-select.w-c.es6.js │ │ │ │ ├── joomla-field-media.w-c.es6.js │ │ │ │ ├── joomla-field-module-order.w-c.es6.js │ │ │ │ ├── joomla-field-permissions.w-c.es6.js │ │ │ │ ├── joomla-field-send-test-mail.w-c.es6.js │ │ │ │ ├── joomla-field-simple-color.w-c.es6.js │ │ │ │ ├── joomla-field-subform.w-c.es6.js │ │ │ │ ├── joomla-field-user.w-c.es6.js │ │ │ │ ├── modal-fields.es5.js │ │ │ │ ├── passwordstrength.es5.js │ │ │ │ ├── passwordview.es6.js │ │ │ │ ├── select-colour.es6.js │ │ │ │ ├── tag.es5.js │ │ │ │ └── validate.es6.js │ │ │ ├── joomla-hidden-mail.w-c.es6.js │ │ │ ├── joomla-toolbar-button.w-c.es6.js │ │ │ ├── keepalive.es6.js │ │ │ ├── multiselect.es6.js │ │ │ ├── searchtools.es6.js │ │ │ └── showon.es6.js │ │ └── scss │ │ │ ├── _icomoon.scss │ │ │ ├── _jalert.scss │ │ │ ├── _jquery-minicolors.scss │ │ │ ├── fields │ │ │ ├── joomla-field-media.scss │ │ │ ├── joomla-field-permissions.scss │ │ │ ├── joomla-field-simple-color.scss │ │ │ └── switcher.scss │ │ │ └── joomla-toolbar-button.scss │ ├── templates │ │ └── atum │ │ │ └── js │ │ │ └── template.es6.js │ └── vendor │ │ ├── jquery-ui │ │ └── js │ │ │ ├── jquery.ui.core.es5.js │ │ │ └── jquery.ui.sortable.es5.js │ │ └── tinymce │ │ ├── langs │ │ ├── af.es5.js │ │ ├── ar.es5.js │ │ ├── be.es5.js │ │ ├── bg.es5.js │ │ ├── bs.es5.js │ │ ├── ca.es5.js │ │ ├── cs.es5.js │ │ ├── cy.es5.js │ │ ├── da.es5.js │ │ ├── de.es5.js │ │ ├── el.es5.js │ │ ├── es.es5.js │ │ ├── et.es5.js │ │ ├── eu.es5.js │ │ ├── fa.es5.js │ │ ├── fi.es5.js │ │ ├── fo.es5.js │ │ ├── fr.es5.js │ │ ├── ga.es5.js │ │ ├── gl.es5.js │ │ ├── he.es5.js │ │ ├── hr.es5.js │ │ ├── hu.es5.js │ │ ├── id.es5.js │ │ ├── it.es5.js │ │ ├── ja.es5.js │ │ ├── ka.es5.js │ │ ├── kk.js │ │ ├── km.es5.js │ │ ├── ko.es5.js │ │ ├── lb.es5.js │ │ ├── lt.es5.js │ │ ├── lv.es5.js │ │ ├── mk.es5.js │ │ ├── ms.es5.js │ │ ├── nb.es5.js │ │ ├── nl.es5.js │ │ ├── pl.es5.js │ │ ├── pt-BR.es5.js │ │ ├── pt-PT.es5.js │ │ ├── readme.md │ │ ├── ro.es5.js │ │ ├── ru.es5.js │ │ ├── si-LK.es5.js │ │ ├── sk.es5.js │ │ ├── sl.es5.js │ │ ├── sr.es5.js │ │ ├── sv.es5.js │ │ ├── sw.es5.js │ │ ├── sy.es5.js │ │ ├── ta.es5.js │ │ ├── th.es5.js │ │ ├── tr.es5.js │ │ ├── ug.es5.js │ │ ├── uk.es5.js │ │ ├── vi.es5.js │ │ ├── zh-CN.es5.js │ │ └── zh-TW.es5.js │ │ └── templates │ │ ├── layout1.html │ │ └── snippet1.html ├── phpmd.xml ├── stubGenerator.php └── warning_page │ ├── template.css │ ├── template.html │ └── template.js ├── cache └── index.html ├── cli ├── finder_indexer.php ├── index.html └── joomla.php ├── codeception.yml ├── components ├── com_ajax │ └── ajax.php ├── com_banners │ ├── Controller │ │ └── DisplayController.php │ ├── Helper │ │ └── BannerHelper.php │ ├── Model │ │ ├── BannerModel.php │ │ └── BannersModel.php │ ├── Service │ │ └── Category.php │ └── router.php ├── com_config │ ├── Controller │ │ ├── ConfigController.php │ │ ├── DisplayController.php │ │ ├── ModulesController.php │ │ └── TemplatesController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ ├── Model │ │ ├── CmsModel.php │ │ ├── ConfigModel.php │ │ ├── FormModel.php │ │ ├── ModulesModel.php │ │ └── TemplatesModel.php │ ├── View │ │ ├── Config │ │ │ └── HtmlView.php │ │ ├── Modules │ │ │ └── HtmlView.php │ │ └── Templates │ │ │ └── HtmlView.php │ ├── forms │ │ ├── config.xml │ │ ├── modules.xml │ │ ├── modules_advanced.xml │ │ └── templates.xml │ └── tmpl │ │ ├── config │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_metadata.php │ │ ├── default_seo.php │ │ └── default_site.php │ │ ├── modules │ │ ├── default.php │ │ └── default_options.php │ │ └── templates │ │ ├── default.php │ │ ├── default.xml │ │ └── default_options.php ├── com_contact │ ├── Controller │ │ ├── ContactController.php │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ ├── Helper │ │ ├── AssociationHelper.php │ │ └── Route.php │ ├── Model │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ ├── ContactModel.php │ │ └── FeaturedModel.php │ ├── Rule │ │ ├── ContactEmailMessageRule.php │ │ ├── ContactEmailRule.php │ │ └── ContactEmailSubjectRule.php │ ├── Service │ │ ├── Category.php │ │ └── Router.php │ ├── View │ │ ├── Categories │ │ │ └── HtmlView.php │ │ ├── Category │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ ├── Contact │ │ │ ├── HtmlView.php │ │ │ └── VcfView.php │ │ └── Featured │ │ │ └── HtmlView.php │ ├── forms │ │ ├── contact.xml │ │ └── filter_contacts.xml │ ├── helpers │ │ └── route.php │ ├── layouts │ │ ├── field │ │ │ └── render.php │ │ ├── fields │ │ │ └── render.php │ │ └── joomla │ │ │ └── form │ │ │ └── renderfield.php │ └── tmpl │ │ ├── categories │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php │ │ ├── category │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_children.php │ │ └── default_items.php │ │ ├── contact │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_address.php │ │ ├── default_articles.php │ │ ├── default_form.php │ │ ├── default_links.php │ │ ├── default_profile.php │ │ └── default_user_custom_fields.php │ │ └── featured │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php ├── com_content │ ├── Controller │ │ ├── ArticleController.php │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ ├── Helper │ │ ├── AssociationHelper.php │ │ ├── QueryHelper.php │ │ └── RouteHelper.php │ ├── Model │ │ ├── ArchiveModel.php │ │ ├── ArticleModel.php │ │ ├── ArticlesModel.php │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ ├── FeaturedModel.php │ │ └── FormModel.php │ ├── Service │ │ ├── Category.php │ │ └── Router.php │ ├── View │ │ ├── Archive │ │ │ └── HtmlView.php │ │ ├── Article │ │ │ └── HtmlView.php │ │ ├── Categories │ │ │ └── HtmlView.php │ │ ├── Category │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ ├── Featured │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ └── Form │ │ │ └── HtmlView.php │ ├── forms │ │ ├── article.xml │ │ └── filter_articles.xml │ ├── helpers │ │ └── icon.php │ └── tmpl │ │ ├── archive │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php │ │ ├── article │ │ ├── default.php │ │ ├── default.xml │ │ └── default_links.php │ │ ├── categories │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php │ │ ├── category │ │ ├── blog.php │ │ ├── blog.xml │ │ ├── blog_children.php │ │ ├── blog_item.php │ │ ├── blog_links.php │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_articles.php │ │ └── default_children.php │ │ ├── featured │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_item.php │ │ └── default_links.php │ │ └── form │ │ ├── edit.php │ │ └── edit.xml ├── com_contenthistory │ ├── Controller │ │ └── DisplayController.php │ └── Dispatcher │ │ └── Dispatcher.php ├── com_csp │ └── Controller │ │ └── ReportController.php ├── com_fields │ ├── Controller │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ ├── forms │ │ └── filter_fields.xml │ └── layouts │ │ ├── field │ │ └── render.php │ │ └── fields │ │ └── render.php ├── com_finder │ ├── Controller │ │ ├── DisplayController.php │ │ └── SuggestionsController.php │ ├── Helper │ │ └── FinderHelper.php │ ├── Model │ │ ├── SearchModel.php │ │ └── SuggestionsModel.php │ ├── Service │ │ └── Router.php │ ├── View │ │ └── Search │ │ │ ├── FeedView.php │ │ │ ├── HtmlView.php │ │ │ └── OpensearchView.php │ ├── helpers │ │ └── route.php │ └── tmpl │ │ └── search │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_form.php │ │ ├── default_result.php │ │ └── default_results.php ├── com_mailto │ ├── Controller │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ ├── Helper │ │ └── MailtoHelper.php │ ├── Model │ │ └── MailtoModel.php │ ├── View │ │ ├── Mailto │ │ │ └── HtmlView.php │ │ └── Sent │ │ │ └── HtmlView.php │ ├── forms │ │ └── mailto.xml │ ├── helpers │ │ └── mailto.php │ └── tmpl │ │ ├── mailto │ │ └── default.php │ │ └── sent │ │ └── default.php ├── com_media │ └── src │ │ └── Dispatcher │ │ └── Dispatcher.php ├── com_menus │ ├── Controller │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ └── forms │ │ └── filter_items.xml ├── com_modules │ ├── Controller │ │ └── DisplayController.php │ ├── Dispatcher │ │ └── Dispatcher.php │ └── forms │ │ └── filter_modules.xml ├── com_newsfeeds │ ├── Controller │ │ └── DisplayController.php │ ├── Helper │ │ ├── AssociationHelper.php │ │ └── Route.php │ ├── Model │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ └── NewsfeedModel.php │ ├── Service │ │ ├── Category.php │ │ └── Router.php │ ├── View │ │ ├── Categories │ │ │ └── HtmlView.php │ │ ├── Category │ │ │ └── HtmlView.php │ │ └── Newsfeed │ │ │ └── HtmlView.php │ ├── helpers │ │ └── route.php │ └── tmpl │ │ ├── categories │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php │ │ ├── category │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_children.php │ │ └── default_items.php │ │ └── newsfeed │ │ ├── default.php │ │ └── default.xml ├── com_privacy │ ├── Controller │ │ ├── DisplayController.php │ │ └── RequestController.php │ ├── Model │ │ ├── ConfirmModel.php │ │ ├── RemindModel.php │ │ └── RequestModel.php │ ├── Service │ │ └── Router.php │ ├── View │ │ ├── Confirm │ │ │ └── HtmlView.php │ │ ├── Remind │ │ │ └── HtmlView.php │ │ └── Request │ │ │ └── HtmlView.php │ ├── forms │ │ ├── confirm.xml │ │ ├── remind.xml │ │ └── request.xml │ └── tmpl │ │ ├── confirm │ │ ├── default.php │ │ └── default.xml │ │ ├── remind │ │ ├── default.php │ │ └── default.xml │ │ └── request │ │ ├── default.php │ │ └── default.xml ├── com_tags │ ├── Controller │ │ ├── DisplayController.php │ │ └── TagsController.php │ ├── Helper │ │ └── TagsHelperRoute.php │ ├── Model │ │ ├── TagModel.php │ │ └── TagsModel.php │ ├── View │ │ ├── Tag │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ └── Tags │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ ├── helpers │ │ └── route.php │ ├── router.php │ └── tmpl │ │ ├── tag │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_items.php │ │ ├── list.php │ │ ├── list.xml │ │ └── list_items.php │ │ └── tags │ │ ├── default.php │ │ ├── default.xml │ │ └── default_items.php ├── com_users │ ├── Controller │ │ ├── DisplayController.php │ │ ├── ProfileController.php │ │ ├── RegistrationController.php │ │ ├── RemindController.php │ │ ├── ResetController.php │ │ └── UserController.php │ ├── Model │ │ ├── LoginModel.php │ │ ├── ProfileModel.php │ │ ├── RegistrationModel.php │ │ ├── RemindModel.php │ │ └── ResetModel.php │ ├── Rule │ │ ├── LoginUniqueFieldRule.php │ │ └── LogoutUniqueFieldRule.php │ ├── Service │ │ └── Router.php │ ├── View │ │ ├── Login │ │ │ └── HtmlView.php │ │ ├── Profile │ │ │ └── HtmlView.php │ │ ├── Registration │ │ │ └── HtmlView.php │ │ ├── Remind │ │ │ └── HtmlView.php │ │ └── Reset │ │ │ └── HtmlView.php │ ├── forms │ │ ├── frontend.xml │ │ ├── frontend_admin.xml │ │ ├── login.xml │ │ ├── profile.xml │ │ ├── registration.xml │ │ ├── remind.xml │ │ ├── reset_complete.xml │ │ ├── reset_confirm.xml │ │ ├── reset_request.xml │ │ └── sitelang.xml │ ├── layouts │ │ └── joomla │ │ │ └── form │ │ │ └── renderfield.php │ └── tmpl │ │ ├── login │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_login.php │ │ ├── default_logout.php │ │ └── logout.xml │ │ ├── profile │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_core.php │ │ ├── default_custom.php │ │ ├── default_params.php │ │ ├── edit.php │ │ └── edit.xml │ │ ├── registration │ │ ├── complete.php │ │ ├── default.php │ │ └── default.xml │ │ ├── remind │ │ ├── default.php │ │ └── default.xml │ │ └── reset │ │ ├── complete.php │ │ ├── confirm.php │ │ ├── default.php │ │ └── default.xml ├── com_wrapper │ ├── Controller │ │ └── DisplayController.php │ ├── View │ │ └── Wrapper │ │ │ └── HtmlView.php │ ├── router.php │ └── tmpl │ │ └── wrapper │ │ ├── default.php │ │ └── default.xml └── index.html ├── composer.json ├── composer.lock ├── crowdin.yml ├── drone-package.json ├── htaccess.txt ├── images ├── banners │ ├── banner.jpg │ ├── osmbanner1.png │ ├── osmbanner2.png │ ├── shop-ad-books.jpg │ ├── shop-ad.jpg │ └── white.png ├── headers │ ├── blue-flower.jpg │ ├── maple.jpg │ ├── raindrops.jpg │ ├── walden-pond.jpg │ └── windows.jpg ├── index.html ├── joomla_black.png ├── powered_by.png └── sampledata │ ├── fruitshop │ ├── apple.jpg │ ├── bananas_2.jpg │ ├── fruits.gif │ └── tamarind.jpg │ └── parks │ ├── animals │ ├── 180px_koala_ag1.jpg │ ├── 180px_wobbegong.jpg │ ├── 200px_phyllopteryx_taeniolatus1.jpg │ ├── 220px_spottedquoll_2005_seanmcclean.jpg │ ├── 789px_spottedquoll_2005_seanmcclean.jpg │ ├── 800px_koala_ag1.jpg │ ├── 800px_phyllopteryx_taeniolatus1.jpg │ └── 800px_wobbegong.jpg │ ├── banner_cradle.jpg │ ├── landscape │ ├── 120px_pinnacles_western_australia.jpg │ ├── 120px_rainforest_bluemountainsnsw.jpg │ ├── 180px_ormiston_pound.jpg │ ├── 250px_cradle_mountain_seen_from_barn_bluff.jpg │ ├── 727px_rainforest_bluemountainsnsw.jpg │ ├── 800px_cradle_mountain_seen_from_barn_bluff.jpg │ ├── 800px_ormiston_pound.jpg │ └── 800px_pinnacles_western_australia.jpg │ └── parks.gif ├── includes ├── app.php ├── defines.php ├── framework.php └── index.html ├── index.php ├── installation ├── INSTALL ├── LICENSE.txt ├── cache │ └── index.html ├── configuration.php-dist ├── favicon.ico ├── forms │ ├── language.xml │ ├── preinstall.xml │ └── setup.xml ├── includes │ ├── app.php │ ├── defines.php │ └── framework.php ├── index.php ├── language │ ├── en-GB │ │ ├── en-GB.ini │ │ └── en-GB.xml │ └── en-US │ │ ├── en-US.ini │ │ └── en-US.xml ├── localise.xml ├── sessions │ └── .gitignore ├── sql │ ├── mysql │ │ └── joomla.sql │ └── postgresql │ │ └── joomla.sql ├── src │ ├── Application │ │ └── InstallationApplication.php │ ├── Controller │ │ ├── DisplayController.php │ │ ├── InstallationController.php │ │ ├── JSONController.php │ │ └── LanguageController.php │ ├── Error │ │ └── Renderer │ │ │ └── JsonRenderer.php │ ├── Form │ │ ├── Field │ │ │ └── Installation │ │ │ │ ├── LanguageField.php │ │ │ │ └── PrefixField.php │ │ └── Rule │ │ │ ├── PrefixRule.php │ │ │ └── UsernameRule.php │ ├── Helper │ │ └── DatabaseHelper.php │ ├── Model │ │ ├── BaseInstallationModel.php │ │ ├── ChecksModel.php │ │ ├── CleanupModel.php │ │ ├── ConfigurationModel.php │ │ ├── DatabaseModel.php │ │ ├── LanguagesModel.php │ │ └── SetupModel.php │ ├── Response │ │ └── JsonResponse.php │ ├── Router │ │ └── InstallationRouter.php │ ├── Service │ │ └── Provider │ │ │ └── Application.php │ └── View │ │ ├── DefaultView.php │ │ ├── Error │ │ └── HtmlView.php │ │ ├── Preinstall │ │ └── HtmlView.php │ │ ├── Remove │ │ └── HtmlView.php │ │ └── Setup │ │ └── HtmlView.php ├── template │ ├── body.php │ ├── error.php │ ├── images │ │ ├── joomla-pattern.svg │ │ ├── joomla.png │ │ ├── logo-blue.svg │ │ ├── logo-joomla-blue.svg │ │ ├── logo.svg │ │ ├── select-bg-active.svg │ │ └── select-bg.svg │ ├── index.php │ ├── js │ │ ├── preinstall.js │ │ ├── remove.js │ │ ├── setup.js │ │ └── template.js │ ├── message.php │ └── scss │ │ ├── template-rtl.scss │ │ └── template.scss └── tmpl │ ├── error │ └── default.php │ ├── preinstall │ └── default.php │ ├── remove │ └── default.php │ └── setup │ └── default.php ├── language ├── en-GB │ ├── en-GB.com_ajax.ini │ ├── en-GB.com_config.ini │ ├── en-GB.com_contact.ini │ ├── en-GB.com_content.ini │ ├── en-GB.com_finder.commonwords.txt │ ├── en-GB.com_finder.ini │ ├── en-GB.com_mailto.ini │ ├── en-GB.com_media.ini │ ├── en-GB.com_messages.ini │ ├── en-GB.com_newsfeeds.ini │ ├── en-GB.com_privacy.ini │ ├── en-GB.com_tags.ini │ ├── en-GB.com_users.ini │ ├── en-GB.com_wrapper.ini │ ├── en-GB.files_joomla.sys.ini │ ├── en-GB.finder_cli.ini │ ├── en-GB.ini │ ├── en-GB.lib_joomla.ini │ ├── en-GB.lib_joomla.sys.ini │ ├── en-GB.lib_phpass.sys.ini │ ├── en-GB.lib_simplepie.sys.ini │ ├── en-GB.localise.php │ ├── en-GB.mod_articles_archive.ini │ ├── en-GB.mod_articles_archive.sys.ini │ ├── en-GB.mod_articles_categories.ini │ ├── en-GB.mod_articles_categories.sys.ini │ ├── en-GB.mod_articles_category.ini │ ├── en-GB.mod_articles_category.sys.ini │ ├── en-GB.mod_articles_latest.ini │ ├── en-GB.mod_articles_latest.sys.ini │ ├── en-GB.mod_articles_news.ini │ ├── en-GB.mod_articles_news.sys.ini │ ├── en-GB.mod_articles_popular.ini │ ├── en-GB.mod_articles_popular.sys.ini │ ├── en-GB.mod_banners.ini │ ├── en-GB.mod_banners.sys.ini │ ├── en-GB.mod_breadcrumbs.ini │ ├── en-GB.mod_breadcrumbs.sys.ini │ ├── en-GB.mod_custom.ini │ ├── en-GB.mod_custom.sys.ini │ ├── en-GB.mod_feed.ini │ ├── en-GB.mod_feed.sys.ini │ ├── en-GB.mod_finder.ini │ ├── en-GB.mod_finder.sys.ini │ ├── en-GB.mod_footer.ini │ ├── en-GB.mod_footer.sys.ini │ ├── en-GB.mod_languages.ini │ ├── en-GB.mod_languages.sys.ini │ ├── en-GB.mod_login.ini │ ├── en-GB.mod_login.sys.ini │ ├── en-GB.mod_menu.ini │ ├── en-GB.mod_menu.sys.ini │ ├── en-GB.mod_random_image.ini │ ├── en-GB.mod_random_image.sys.ini │ ├── en-GB.mod_related_items.ini │ ├── en-GB.mod_related_items.sys.ini │ ├── en-GB.mod_stats.ini │ ├── en-GB.mod_stats.sys.ini │ ├── en-GB.mod_syndicate.ini │ ├── en-GB.mod_syndicate.sys.ini │ ├── en-GB.mod_tags_popular.ini │ ├── en-GB.mod_tags_popular.sys.ini │ ├── en-GB.mod_tags_similar.ini │ ├── en-GB.mod_tags_similar.sys.ini │ ├── en-GB.mod_users_latest.ini │ ├── en-GB.mod_users_latest.sys.ini │ ├── en-GB.mod_whosonline.ini │ ├── en-GB.mod_whosonline.sys.ini │ ├── en-GB.mod_wrapper.ini │ ├── en-GB.mod_wrapper.sys.ini │ ├── en-GB.tpl_cassiopeia.ini │ ├── en-GB.tpl_cassiopeia.sys.ini │ ├── en-GB.xml │ └── install.xml ├── index.html └── overrides │ └── index.html ├── layouts ├── chromes │ ├── html5.php │ ├── none.php │ ├── outline.php │ ├── sliders.php │ ├── table.php │ └── tabs.php ├── index.html ├── joomla │ ├── button │ │ ├── action-button.php │ │ ├── iconclass.php │ │ └── transition-button.php │ ├── content │ │ ├── associations.php │ │ ├── blog_style_default_item_title.php │ │ ├── blog_style_default_links.php │ │ ├── categories_default.php │ │ ├── categories_default_items.php │ │ ├── category_default.php │ │ ├── full_image.php │ │ ├── icons.php │ │ ├── icons │ │ │ ├── create.php │ │ │ ├── edit.php │ │ │ └── edit_lock.php │ │ ├── info_block.php │ │ ├── info_block │ │ │ ├── associations.php │ │ │ ├── author.php │ │ │ ├── category.php │ │ │ ├── create_date.php │ │ │ ├── hits.php │ │ │ ├── modify_date.php │ │ │ ├── parent_category.php │ │ │ └── publish_date.php │ │ ├── intro_image.php │ │ ├── language.php │ │ ├── options_default.php │ │ ├── readmore.php │ │ ├── tags.php │ │ └── text_filters.php │ ├── edit │ │ ├── admin_modules.php │ │ ├── associations.php │ │ ├── fieldset.php │ │ ├── frontediting_modules.php │ │ ├── global.php │ │ ├── metadata.php │ │ ├── params.php │ │ ├── publishingdata.php │ │ └── title_alias.php │ ├── editors │ │ ├── buttons.php │ │ └── buttons │ │ │ ├── button.php │ │ │ └── modal.php │ ├── error │ │ ├── backtrace.php │ │ └── index.html │ ├── form │ │ ├── field │ │ │ ├── accesslevel-fancy-select.php │ │ │ ├── accesslevel.php │ │ │ ├── calendar.php │ │ │ ├── checkboxes.php │ │ │ ├── color │ │ │ │ ├── advanced.php │ │ │ │ ├── simple.php │ │ │ │ └── slider.php │ │ │ ├── combo.php │ │ │ ├── contenthistory.php │ │ │ ├── email.php │ │ │ ├── file.php │ │ │ ├── hidden.php │ │ │ ├── list-fancy-select.php │ │ │ ├── list.php │ │ │ ├── media.php │ │ │ ├── meter.php │ │ │ ├── moduleorder.php │ │ │ ├── number.php │ │ │ ├── password.php │ │ │ ├── radio │ │ │ │ ├── buttons.php │ │ │ │ └── switcher.php │ │ │ ├── radiobasic.php │ │ │ ├── range.php │ │ │ ├── rules.php │ │ │ ├── subform │ │ │ │ ├── default.php │ │ │ │ ├── repeatable-table.php │ │ │ │ ├── repeatable-table │ │ │ │ │ ├── section-byfieldsets.php │ │ │ │ │ └── section.php │ │ │ │ ├── repeatable.php │ │ │ │ └── repeatable │ │ │ │ │ ├── section-byfieldsets.php │ │ │ │ │ └── section.php │ │ │ ├── tag.php │ │ │ ├── tel.php │ │ │ ├── text.php │ │ │ ├── textarea.php │ │ │ ├── url.php │ │ │ └── user.php │ │ ├── renderfield.php │ │ └── renderlabel.php │ ├── html │ │ ├── batch │ │ │ ├── access.php │ │ │ ├── adminlanguage.php │ │ │ ├── item.php │ │ │ ├── language.php │ │ │ ├── tag.php │ │ │ ├── user.php │ │ │ └── workflowstage.php │ │ └── treeprefix.php │ ├── installer │ │ └── changelog.php │ ├── links │ │ ├── groupclose.php │ │ ├── groupopen.php │ │ ├── groupsclose.php │ │ ├── groupseparator.php │ │ ├── groupsopen.php │ │ └── link.php │ ├── modal │ │ ├── body.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── iframe.php │ │ └── main.php │ ├── pagination │ │ ├── link.php │ │ ├── links.php │ │ └── list.php │ ├── quickicons │ │ └── icon.php │ ├── searchtools │ │ ├── default.php │ │ ├── default │ │ │ ├── bar.php │ │ │ ├── filters.php │ │ │ ├── list.php │ │ │ ├── noitems.php │ │ │ └── selector.php │ │ └── grid │ │ │ └── sort.php │ ├── sidebars │ │ └── submenu.php │ ├── system │ │ └── message.php │ ├── tinymce │ │ ├── textarea.php │ │ └── togglebutton.php │ └── toolbar │ │ ├── base.php │ │ ├── basic.php │ │ ├── batch.php │ │ ├── containerclose.php │ │ ├── containeropen.php │ │ ├── dropdown.php │ │ ├── iconclass.php │ │ ├── link.php │ │ ├── modal.php │ │ ├── popup.php │ │ ├── separator.php │ │ ├── standard.php │ │ ├── title.php │ │ └── versions.php ├── libraries │ └── cms │ │ └── html │ │ └── bootstrap │ │ ├── addtab.php │ │ ├── endtab.php │ │ ├── endtabset.php │ │ └── starttabset.php └── plugins │ ├── editors │ └── tinymce │ │ └── field │ │ ├── tinymcebuilder.php │ │ └── tinymcebuilder │ │ └── setoptions.php │ ├── system │ └── privacyconsent │ │ ├── label.php │ │ └── message.php │ └── user │ ├── profile │ └── fields │ │ └── dob.php │ └── terms │ ├── label.php │ └── message.php ├── libraries ├── .htaccess ├── bootstrap.php ├── classmap.php ├── cms.php ├── cms │ └── html │ │ ├── access.php │ │ ├── actionsdropdown.php │ │ ├── adminlanguage.php │ │ ├── behavior.php │ │ ├── bootstrap.php │ │ ├── category.php │ │ ├── content.php │ │ ├── contentlanguage.php │ │ ├── date.php │ │ ├── debug.php │ │ ├── draggablelist.php │ │ ├── dropdown.php │ │ ├── email.php │ │ ├── form.php │ │ ├── formbehavior.php │ │ ├── grid.php │ │ ├── icons.php │ │ ├── jgrid.php │ │ ├── jquery.php │ │ ├── links.php │ │ ├── list.php │ │ ├── menu.php │ │ ├── number.php │ │ ├── searchtools.php │ │ ├── select.php │ │ ├── sidebar.php │ │ ├── sortablelist.php │ │ ├── string.php │ │ ├── tag.php │ │ ├── tel.php │ │ ├── uitab.php │ │ ├── user.php │ │ └── workflowstage.php ├── extensions.classmap.php ├── import.legacy.php ├── import.php ├── index.html ├── joomla │ ├── base │ │ ├── adapter.php │ │ └── adapterinstance.php │ ├── controller │ │ ├── base.php │ │ └── controller.php │ ├── model │ │ ├── base.php │ │ ├── database.php │ │ └── model.php │ └── view │ │ ├── base.php │ │ ├── html.php │ │ └── view.php ├── loader.php ├── namespacemap.php ├── php-encryption │ └── Crypto.php ├── phpass │ └── PasswordHash.php ├── src │ ├── Access │ │ ├── Access.php │ │ ├── Exception │ │ │ ├── AuthenticationFailed.php │ │ │ └── NotAllowed.php │ │ ├── Rule.php │ │ └── Rules.php │ ├── Application │ │ ├── AdministratorApplication.php │ │ ├── ApiApplication.php │ │ ├── ApplicationHelper.php │ │ ├── BaseApplication.php │ │ ├── CLI │ │ │ ├── CliInput.php │ │ │ ├── CliOutput.php │ │ │ ├── ColorStyle.php │ │ │ └── Output │ │ │ │ ├── Processor │ │ │ │ ├── ColorProcessor.php │ │ │ │ └── ProcessorInterface.php │ │ │ │ ├── Stdout.php │ │ │ │ └── Xml.php │ │ ├── CMSApplication.php │ │ ├── CMSApplicationInterface.php │ │ ├── CliApplication.php │ │ ├── ConsoleApplication.php │ │ ├── DaemonApplication.php │ │ ├── EventAware.php │ │ ├── Exception │ │ │ └── NotAcceptable.php │ │ ├── ExtensionNamespaceMapper.php │ │ ├── IdentityAware.php │ │ ├── SiteApplication.php │ │ └── WebApplication.php │ ├── Association │ │ ├── AssociationExtensionHelper.php │ │ ├── AssociationExtensionInterface.php │ │ ├── AssociationServiceInterface.php │ │ └── AssociationServiceTrait.php │ ├── Authentication │ │ ├── Authentication.php │ │ ├── AuthenticationResponse.php │ │ └── Password │ │ │ ├── Argon2iHandler.php │ │ │ ├── Argon2idHandler.php │ │ │ ├── BCryptHandler.php │ │ │ ├── ChainedHandler.php │ │ │ ├── CheckIfRehashNeededHandlerInterface.php │ │ │ ├── MD5Handler.php │ │ │ ├── PHPassHandler.php │ │ │ └── SHA256Handler.php │ ├── Autoload │ │ └── ClassLoader.php │ ├── Button │ │ ├── ActionButton.php │ │ └── PublishedButton.php │ ├── Cache │ │ ├── Cache.php │ │ ├── CacheController.php │ │ ├── CacheControllerFactory.php │ │ ├── CacheControllerFactoryInterface.php │ │ ├── CacheStorage.php │ │ ├── Controller │ │ │ ├── CallbackController.php │ │ │ ├── OutputController.php │ │ │ ├── PageController.php │ │ │ └── ViewController.php │ │ ├── Exception │ │ │ ├── CacheConnectingException.php │ │ │ ├── CacheExceptionInterface.php │ │ │ └── UnsupportedCacheException.php │ │ └── Storage │ │ │ ├── ApcuStorage.php │ │ │ ├── CacheStorageHelper.php │ │ │ ├── FileStorage.php │ │ │ ├── MemcachedStorage.php │ │ │ ├── RedisStorage.php │ │ │ └── WincacheStorage.php │ ├── Captcha │ │ ├── Captcha.php │ │ └── Google │ │ │ └── HttpBridgePostRequestMethod.php │ ├── Categories │ │ ├── Categories.php │ │ ├── CategoryFactory.php │ │ ├── CategoryFactoryInterface.php │ │ ├── CategoryInterface.php │ │ ├── CategoryNode.php │ │ ├── CategoryServiceInterface.php │ │ ├── CategoryServiceTrait.php │ │ └── SectionNotFoundException.php │ ├── Changelog │ │ └── Changelog.php │ ├── Client │ │ ├── ClientHelper.php │ │ └── FtpClient.php │ ├── Component │ │ ├── ComponentHelper.php │ │ ├── ComponentRecord.php │ │ ├── Exception │ │ │ └── MissingComponentException.php │ │ └── Router │ │ │ ├── RouterBase.php │ │ │ ├── RouterFactory.php │ │ │ ├── RouterFactoryInterface.php │ │ │ ├── RouterInterface.php │ │ │ ├── RouterLegacy.php │ │ │ ├── RouterServiceInterface.php │ │ │ ├── RouterServiceTrait.php │ │ │ ├── RouterView.php │ │ │ ├── RouterViewConfiguration.php │ │ │ └── Rules │ │ │ ├── MenuRules.php │ │ │ ├── NomenuRules.php │ │ │ ├── RulesInterface.php │ │ │ └── StandardRules.php │ ├── Console │ │ ├── AddUserCommand.php │ │ ├── AddUserToGroupCommand.php │ │ ├── ChangeUserPasswordCommand.php │ │ ├── CheckUpdatesCommand.php │ │ ├── CleanCacheCommand.php │ │ ├── DeleteUserCommand.php │ │ ├── ListUserCommand.php │ │ ├── Loader │ │ │ ├── WritableContainerLoader.php │ │ │ └── WritableLoaderInterface.php │ │ ├── RemoveOldFilesCommand.php │ │ ├── RemoveUserFromGroupCommand.php │ │ ├── SessionGcCommand.php │ │ └── SessionMetadataGcCommand.php │ ├── Crypt │ │ ├── Cipher │ │ │ ├── CryptoCipher.php │ │ │ └── SodiumCipher.php │ │ └── Crypt.php │ ├── Date │ │ └── Date.php │ ├── Dispatcher │ │ ├── AbstractModuleDispatcher.php │ │ ├── ApiDispatcher.php │ │ ├── ComponentDispatcher.php │ │ ├── ComponentDispatcherFactory.php │ │ ├── ComponentDispatcherFactoryInterface.php │ │ ├── Dispatcher.php │ │ ├── DispatcherInterface.php │ │ ├── LegacyComponentDispatcher.php │ │ ├── ModuleDispatcher.php │ │ ├── ModuleDispatcherFactory.php │ │ └── ModuleDispatcherFactoryInterface.php │ ├── Document │ │ ├── Document.php │ │ ├── DocumentRenderer.php │ │ ├── ErrorDocument.php │ │ ├── Factory.php │ │ ├── FactoryInterface.php │ │ ├── Feed │ │ │ ├── FeedEnclosure.php │ │ │ ├── FeedImage.php │ │ │ └── FeedItem.php │ │ ├── FeedDocument.php │ │ ├── HtmlDocument.php │ │ ├── ImageDocument.php │ │ ├── JsonDocument.php │ │ ├── JsonapiDocument.php │ │ ├── Opensearch │ │ │ ├── OpensearchImage.php │ │ │ └── OpensearchUrl.php │ │ ├── OpensearchDocument.php │ │ ├── PreloadManager.php │ │ ├── PreloadManagerInterface.php │ │ ├── RawDocument.php │ │ ├── Renderer │ │ │ ├── Feed │ │ │ │ ├── AtomRenderer.php │ │ │ │ └── RssRenderer.php │ │ │ └── Html │ │ │ │ ├── ComponentRenderer.php │ │ │ │ ├── HeadRenderer.php │ │ │ │ ├── MessageRenderer.php │ │ │ │ ├── MetasRenderer.php │ │ │ │ ├── ModuleRenderer.php │ │ │ │ ├── ModulesRenderer.php │ │ │ │ ├── ScriptsRenderer.php │ │ │ │ └── StylesRenderer.php │ │ ├── RendererInterface.php │ │ └── XmlDocument.php │ ├── Editor │ │ └── Editor.php │ ├── Encrypt │ │ ├── AES │ │ │ ├── AbstractAES.php │ │ │ ├── AesInterface.php │ │ │ ├── Mcrypt.php │ │ │ └── OpenSSL.php │ │ ├── Aes.php │ │ ├── Base32.php │ │ ├── RandValInterface.php │ │ ├── Randval.php │ │ └── Totp.php │ ├── Environment │ │ └── Browser.php │ ├── Error │ │ ├── AbstractRenderer.php │ │ ├── JsonApi │ │ │ ├── AuthenticationFailedExceptionHandler.php │ │ │ ├── InvalidRouteExceptionHandler.php │ │ │ ├── NotAcceptableExceptionHandler.php │ │ │ ├── NotAllowedExceptionHandler.php │ │ │ └── ResourceNotFoundExceptionHandler.php │ │ ├── Renderer │ │ │ ├── CliRenderer.php │ │ │ ├── FeedRenderer.php │ │ │ ├── HtmlRenderer.php │ │ │ ├── JsonRenderer.php │ │ │ ├── JsonapiRenderer.php │ │ │ └── XmlRenderer.php │ │ └── RendererInterface.php │ ├── Event │ │ ├── AbstractEvent.php │ │ ├── AbstractImmutableEvent.php │ │ ├── AfterExtensionBootEvent.php │ │ ├── BeforeExecuteEvent.php │ │ ├── BeforeExtensionBootEvent.php │ │ ├── ErrorEvent.php │ │ ├── GenericEvent.php │ │ ├── LazyServiceEventListener.php │ │ ├── Table │ │ │ ├── AbstractEvent.php │ │ │ ├── AfterBindEvent.php │ │ │ ├── AfterCheckinEvent.php │ │ │ ├── AfterCheckoutEvent.php │ │ │ ├── AfterDeleteEvent.php │ │ │ ├── AfterHitEvent.php │ │ │ ├── AfterLoadEvent.php │ │ │ ├── AfterMoveEvent.php │ │ │ ├── AfterPublishEvent.php │ │ │ ├── AfterReorderEvent.php │ │ │ ├── AfterResetEvent.php │ │ │ ├── AfterStoreEvent.php │ │ │ ├── BeforeBindEvent.php │ │ │ ├── BeforeCheckinEvent.php │ │ │ ├── BeforeCheckoutEvent.php │ │ │ ├── BeforeDeleteEvent.php │ │ │ ├── BeforeHitEvent.php │ │ │ ├── BeforeLoadEvent.php │ │ │ ├── BeforeMoveEvent.php │ │ │ ├── BeforePublishEvent.php │ │ │ ├── BeforeReorderEvent.php │ │ │ ├── BeforeResetEvent.php │ │ │ ├── BeforeStoreEvent.php │ │ │ ├── CheckEvent.php │ │ │ ├── ObjectCreateEvent.php │ │ │ └── SetNewTagsEvent.php │ │ └── WebAsset │ │ │ ├── AbstractEvent.php │ │ │ └── WebAssetBeforeAttachEvent.php │ ├── Exception │ │ └── ExceptionHandler.php │ ├── Extension │ │ ├── BootableExtensionInterface.php │ │ ├── Component.php │ │ ├── ComponentInterface.php │ │ ├── DummyPlugin.php │ │ ├── ExtensionHelper.php │ │ ├── ExtensionManagerInterface.php │ │ ├── ExtensionManagerTrait.php │ │ ├── LegacyComponent.php │ │ ├── MVCComponent.php │ │ ├── Module.php │ │ ├── ModuleInterface.php │ │ ├── PluginInterface.php │ │ └── Service │ │ │ └── Provider │ │ │ ├── CategoryFactory.php │ │ │ ├── ComponentDispatcherFactory.php │ │ │ ├── MVCFactory.php │ │ │ ├── Module.php │ │ │ ├── ModuleDispatcherFactory.php │ │ │ └── RouterFactory.php │ ├── Factory.php │ ├── Feed │ │ ├── Feed.php │ │ ├── FeedEntry.php │ │ ├── FeedFactory.php │ │ ├── FeedLink.php │ │ ├── FeedParser.php │ │ ├── FeedPerson.php │ │ └── Parser │ │ │ ├── AtomParser.php │ │ │ ├── NamespaceParserInterface.php │ │ │ ├── Rss │ │ │ ├── ItunesRssParser.php │ │ │ └── MediaRssParser.php │ │ │ └── RssParser.php │ ├── Fields │ │ └── FieldsServiceInterface.php │ ├── Filesystem │ │ ├── File.php │ │ ├── FilesystemHelper.php │ │ ├── Folder.php │ │ ├── Meta │ │ │ └── language │ │ │ │ └── en-GB │ │ │ │ └── en-GB.lib_joomla_filesystem_patcher.ini │ │ ├── Patcher.php │ │ ├── Path.php │ │ ├── Stream.php │ │ ├── Streams │ │ │ └── StreamString.php │ │ └── Support │ │ │ └── Stringcontroller.php │ ├── Filter │ │ ├── InputFilter.php │ │ └── OutputFilter.php │ ├── Form │ │ ├── Field │ │ │ ├── AccesslevelField.php │ │ │ ├── AliastagField.php │ │ │ ├── AuthorField.php │ │ │ ├── CachehandlerField.php │ │ │ ├── CalendarField.php │ │ │ ├── CaptchaField.php │ │ │ ├── CategoryField.php │ │ │ ├── CheckboxField.php │ │ │ ├── CheckboxesField.php │ │ │ ├── ChromestyleField.php │ │ │ ├── ColorField.php │ │ │ ├── ComboField.php │ │ │ ├── ComponentlayoutField.php │ │ │ ├── ComponentsField.php │ │ │ ├── ContenthistoryField.php │ │ │ ├── ContentlanguageField.php │ │ │ ├── ContenttypeField.php │ │ │ ├── DatabaseconnectionField.php │ │ │ ├── EditorField.php │ │ │ ├── EmailField.php │ │ │ ├── FileField.php │ │ │ ├── FilelistField.php │ │ │ ├── FolderlistField.php │ │ │ ├── FrontendlanguageField.php │ │ │ ├── GroupedlistField.php │ │ │ ├── HeadertagField.php │ │ │ ├── HelpsiteField.php │ │ │ ├── HiddenField.php │ │ │ ├── ImagelistField.php │ │ │ ├── IntegerField.php │ │ │ ├── LanguageField.php │ │ │ ├── LastvisitdaterangeField.php │ │ │ ├── LimitboxField.php │ │ │ ├── ListField.php │ │ │ ├── MediaField.php │ │ │ ├── MenuField.php │ │ │ ├── MenuitemField.php │ │ │ ├── MeterField.php │ │ │ ├── ModulelayoutField.php │ │ │ ├── ModuleorderField.php │ │ │ ├── ModulepositionField.php │ │ │ ├── ModuletagField.php │ │ │ ├── NoteField.php │ │ │ ├── NumberField.php │ │ │ ├── OrderingField.php │ │ │ ├── PasswordField.php │ │ │ ├── PluginsField.php │ │ │ ├── PluginstatusField.php │ │ │ ├── PredefinedlistField.php │ │ │ ├── RadioField.php │ │ │ ├── RadiobasicField.php │ │ │ ├── RangeField.php │ │ │ ├── RedirectStatusField.php │ │ │ ├── RegistrationdaterangeField.php │ │ │ ├── RulesField.php │ │ │ ├── SessionhandlerField.php │ │ │ ├── SpacerField.php │ │ │ ├── SqlField.php │ │ │ ├── StatusField.php │ │ │ ├── SubformField.php │ │ │ ├── TagField.php │ │ │ ├── TelephoneField.php │ │ │ ├── TemplatestyleField.php │ │ │ ├── TextField.php │ │ │ ├── TextareaField.php │ │ │ ├── TimezoneField.php │ │ │ ├── TransitionField.php │ │ │ ├── UrlField.php │ │ │ ├── UserField.php │ │ │ ├── UseractiveField.php │ │ │ ├── UsergrouplistField.php │ │ │ ├── UserstateField.php │ │ │ ├── WorkflowconditionField.php │ │ │ └── WorkflowstageField.php │ │ ├── Filter │ │ │ ├── IntarrayFilter.php │ │ │ ├── RawFilter.php │ │ │ ├── RulesFilter.php │ │ │ ├── SafehtmlFilter.php │ │ │ ├── TelFilter.php │ │ │ ├── UnsetFilter.php │ │ │ └── UrlFilter.php │ │ ├── Form.php │ │ ├── FormFactory.php │ │ ├── FormFactoryAwareInterface.php │ │ ├── FormFactoryAwareTrait.php │ │ ├── FormFactoryInterface.php │ │ ├── FormField.php │ │ ├── FormFilterInterface.php │ │ ├── FormHelper.php │ │ ├── FormRule.php │ │ └── Rule │ │ │ ├── BooleanRule.php │ │ │ ├── CalendarRule.php │ │ │ ├── CaptchaRule.php │ │ │ ├── ColorRule.php │ │ │ ├── EmailRule.php │ │ │ ├── EqualsRule.php │ │ │ ├── ExistsRule.php │ │ │ ├── NotequalsRule.php │ │ │ ├── NumberRule.php │ │ │ ├── OptionsRule.php │ │ │ ├── PasswordRule.php │ │ │ ├── RulesRule.php │ │ │ ├── TelRule.php │ │ │ ├── UrlRule.php │ │ │ └── UsernameRule.php │ ├── HTML │ │ ├── HTMLHelper.php │ │ ├── HTMLRegistryAwareTrait.php │ │ └── Registry.php │ ├── Help │ │ └── Help.php │ ├── Helper │ │ ├── AuthenticationHelper.php │ │ ├── CMSHelper.php │ │ ├── ContentHelper.php │ │ ├── ContentHistoryHelper.php │ │ ├── LibraryHelper.php │ │ ├── MediaHelper.php │ │ ├── ModuleHelper.php │ │ ├── RouteHelper.php │ │ ├── TagsHelper.php │ │ └── UserGroupsHelper.php │ ├── Http │ │ ├── Http.php │ │ ├── HttpFactory.php │ │ ├── Response.php │ │ ├── Transport │ │ │ ├── CurlTransport.php │ │ │ ├── SocketTransport.php │ │ │ ├── StreamTransport.php │ │ │ └── cacert.pem │ │ └── TransportInterface.php │ ├── Image │ │ ├── Filter │ │ │ ├── Backgroundfill.php │ │ │ ├── Brightness.php │ │ │ ├── Contrast.php │ │ │ ├── Edgedetect.php │ │ │ ├── Emboss.php │ │ │ ├── Grayscale.php │ │ │ ├── Negate.php │ │ │ ├── Sketchy.php │ │ │ └── Smooth.php │ │ ├── Image.php │ │ └── ImageFilter.php │ ├── Input │ │ ├── Cli.php │ │ ├── Cookie.php │ │ ├── Files.php │ │ ├── Input.php │ │ └── Json.php │ ├── Installer │ │ ├── Adapter │ │ │ ├── ComponentAdapter.php │ │ │ ├── FileAdapter.php │ │ │ ├── LanguageAdapter.php │ │ │ ├── LibraryAdapter.php │ │ │ ├── ModuleAdapter.php │ │ │ ├── PackageAdapter.php │ │ │ ├── PluginAdapter.php │ │ │ └── TemplateAdapter.php │ │ ├── Installer.php │ │ ├── InstallerAdapter.php │ │ ├── InstallerExtension.php │ │ ├── InstallerHelper.php │ │ ├── InstallerScript.php │ │ ├── Manifest.php │ │ └── Manifest │ │ │ ├── LibraryManifest.php │ │ │ └── PackageManifest.php │ ├── Language │ │ ├── Associations.php │ │ ├── CachingLanguageFactory.php │ │ ├── Language.php │ │ ├── LanguageFactory.php │ │ ├── LanguageFactoryInterface.php │ │ ├── LanguageHelper.php │ │ ├── Multilanguage.php │ │ ├── Text.php │ │ └── Transliterate.php │ ├── Layout │ │ ├── BaseLayout.php │ │ ├── FileLayout.php │ │ ├── LayoutHelper.php │ │ └── LayoutInterface.php │ ├── Log │ │ ├── DelegatingPsrLogger.php │ │ ├── Log.php │ │ ├── LogEntry.php │ │ ├── Logger.php │ │ ├── Logger │ │ │ ├── CallbackLogger.php │ │ │ ├── DatabaseLogger.php │ │ │ ├── EchoLogger.php │ │ │ ├── FormattedtextLogger.php │ │ │ ├── MessagequeueLogger.php │ │ │ ├── SyslogLogger.php │ │ │ └── W3cLogger.php │ │ └── LoggerRegistry.php │ ├── MVC │ │ ├── Controller │ │ │ ├── AdminController.php │ │ │ ├── ApiController.php │ │ │ ├── BaseController.php │ │ │ ├── ControllerInterface.php │ │ │ ├── Exception │ │ │ │ └── ResourceNotFound.php │ │ │ └── FormController.php │ │ ├── Factory │ │ │ ├── ApiMVCFactory.php │ │ │ ├── LegacyFactory.php │ │ │ ├── MVCFactory.php │ │ │ ├── MVCFactoryAwareTrait.php │ │ │ ├── MVCFactoryInterface.php │ │ │ ├── MVCFactoryServiceInterface.php │ │ │ └── MVCFactoryServiceTrait.php │ │ ├── Model │ │ │ ├── AdminModel.php │ │ │ ├── BaseDatabaseModel.php │ │ │ ├── BaseModel.php │ │ │ ├── DatabaseAwareTrait.php │ │ │ ├── DatabaseModelInterface.php │ │ │ ├── FormBehaviorTrait.php │ │ │ ├── FormModel.php │ │ │ ├── FormModelInterface.php │ │ │ ├── ItemModel.php │ │ │ ├── ItemModelInterface.php │ │ │ ├── LeagcyModelLoaderTrait.php │ │ │ ├── ListModel.php │ │ │ ├── ListModelInterface.php │ │ │ ├── ModelInterface.php │ │ │ ├── StateBehaviorTrait.php │ │ │ └── StatefulModelInterface.php │ │ └── View │ │ │ ├── AbstractView.php │ │ │ ├── CategoriesView.php │ │ │ ├── CategoryFeedView.php │ │ │ ├── CategoryView.php │ │ │ ├── FormView.php │ │ │ ├── GenericDataException.php │ │ │ ├── HtmlView.php │ │ │ ├── JsonApiView.php │ │ │ ├── JsonView.php │ │ │ ├── ListView.php │ │ │ └── ViewInterface.php │ ├── Mail │ │ ├── Mail.php │ │ ├── MailHelper.php │ │ └── language │ │ │ └── phpmailer.lang-en_gb.php │ ├── Menu │ │ ├── AbstractMenu.php │ │ ├── AdministratorMenu.php │ │ ├── MenuFactory.php │ │ ├── MenuFactoryInterface.php │ │ ├── MenuItem.php │ │ └── SiteMenu.php │ ├── Microdata │ │ ├── Microdata.php │ │ └── types.json │ ├── Object │ │ └── CMSObject.php │ ├── Pagination │ │ ├── Pagination.php │ │ └── PaginationObject.php │ ├── Pathway │ │ ├── Pathway.php │ │ └── SitePathway.php │ ├── Plugin │ │ ├── CMSPlugin.php │ │ └── PluginHelper.php │ ├── Profiler │ │ └── Profiler.php │ ├── Response │ │ └── JsonResponse.php │ ├── Router │ │ ├── AdministratorRouter.php │ │ ├── ApiRouter.php │ │ ├── Exception │ │ │ └── RouteNotFoundException.php │ │ ├── Route.php │ │ ├── Router.php │ │ └── SiteRouter.php │ ├── Schema │ │ ├── ChangeItem.php │ │ ├── ChangeItem │ │ │ ├── MysqlChangeItem.php │ │ │ ├── PostgresqlChangeItem.php │ │ │ └── SqlsrvChangeItem.php │ │ └── ChangeSet.php │ ├── Serializer │ │ └── JoomlaSerializer.php │ ├── Service │ │ └── Provider │ │ │ ├── ApiRouter.php │ │ │ ├── Application.php │ │ │ ├── Authentication.php │ │ │ ├── CacheController.php │ │ │ ├── Config.php │ │ │ ├── Console.php │ │ │ ├── Database.php │ │ │ ├── Dispatcher.php │ │ │ ├── Document.php │ │ │ ├── Form.php │ │ │ ├── HTMLRegistry.php │ │ │ ├── Language.php │ │ │ ├── Logger.php │ │ │ ├── Menu.php │ │ │ ├── Pathway.php │ │ │ ├── Session.php │ │ │ ├── Toolbar.php │ │ │ ├── User.php │ │ │ └── WebAssetRegistry.php │ ├── Session │ │ ├── EventListener │ │ │ └── MetadataManagerListener.php │ │ ├── Exception │ │ │ └── UnsupportedStorageException.php │ │ ├── MetadataManager.php │ │ ├── Session.php │ │ ├── SessionFactory.php │ │ └── Storage │ │ │ └── JoomlaStorage.php │ ├── String │ │ └── PunycodeHelper.php │ ├── Table │ │ ├── Asset.php │ │ ├── Category.php │ │ ├── Content.php │ │ ├── ContentHistory.php │ │ ├── ContentType.php │ │ ├── CoreContent.php │ │ ├── Extension.php │ │ ├── Language.php │ │ ├── Menu.php │ │ ├── MenuType.php │ │ ├── Module.php │ │ ├── Nested.php │ │ ├── Table.php │ │ ├── TableInterface.php │ │ ├── Ucm.php │ │ ├── Update.php │ │ ├── UpdateSite.php │ │ ├── User.php │ │ ├── Usergroup.php │ │ └── ViewLevel.php │ ├── Toolbar │ │ ├── Button │ │ │ ├── AbstractGroupButton.php │ │ │ ├── BasicButton.php │ │ │ ├── ConfirmButton.php │ │ │ ├── CustomButton.php │ │ │ ├── DropdownButton.php │ │ │ ├── HelpButton.php │ │ │ ├── LinkButton.php │ │ │ ├── PopupButton.php │ │ │ ├── SeparatorButton.php │ │ │ └── StandardButton.php │ │ ├── ContainerAwareToolbarFactory.php │ │ ├── CoreButtonsTrait.php │ │ ├── Toolbar.php │ │ ├── ToolbarButton.php │ │ ├── ToolbarFactoryInterface.php │ │ └── ToolbarHelper.php │ ├── Tree │ │ ├── ImmutableNodeInterface.php │ │ ├── ImmutableNodeTrait.php │ │ ├── NodeInterface.php │ │ └── NodeTrait.php │ ├── UCM │ │ ├── UCM.php │ │ ├── UCMBase.php │ │ ├── UCMContent.php │ │ └── UCMType.php │ ├── Updater │ │ ├── Adapter │ │ │ ├── CollectionAdapter.php │ │ │ └── ExtensionAdapter.php │ │ ├── DownloadSource.php │ │ ├── Update.php │ │ ├── UpdateAdapter.php │ │ └── Updater.php │ ├── Uri │ │ └── Uri.php │ ├── User │ │ ├── User.php │ │ ├── UserFactory.php │ │ ├── UserFactoryInterface.php │ │ └── UserHelper.php │ ├── Utility │ │ ├── BufferStreamHandler.php │ │ └── Utility.php │ ├── Version.php │ ├── WebAsset │ │ ├── AssetItem │ │ │ ├── CoreAssetItem.php │ │ │ └── KeepaliveAssetItem.php │ │ ├── Exception │ │ │ ├── InvalidActionException.php │ │ │ ├── UnknownAssetException.php │ │ │ ├── UnsatisfiedDependencyException.php │ │ │ └── WebAssetExceptionInterface.php │ │ ├── WebAssetAttachBehaviorInterface.php │ │ ├── WebAssetItem.php │ │ ├── WebAssetItemInterface.php │ │ ├── WebAssetManager.php │ │ ├── WebAssetManagerInterface.php │ │ ├── WebAssetRegistry.php │ │ └── WebAssetRegistryInterface.php │ └── Workflow │ │ ├── Workflow.php │ │ ├── WorkflowServiceInterface.php │ │ └── WorkflowServiceTrait.php ├── vendor │ └── .htaccess └── web.config ├── modules ├── index.html ├── mod_articles_archive │ ├── Helper │ │ └── ArticlesArchiveHelper.php │ ├── mod_articles_archive.php │ ├── mod_articles_archive.xml │ └── tmpl │ │ └── default.php ├── mod_articles_categories │ ├── Helper │ │ └── ArticlesCategoriesHelper.php │ ├── mod_articles_categories.php │ ├── mod_articles_categories.xml │ └── tmpl │ │ ├── default.php │ │ └── default_items.php ├── mod_articles_category │ ├── Helper │ │ └── ArticlesCategoryHelper.php │ ├── mod_articles_category.php │ ├── mod_articles_category.xml │ └── tmpl │ │ └── default.php ├── mod_articles_latest │ ├── Helper │ │ └── ArticlesLatestHelper.php │ ├── mod_articles_latest.php │ ├── mod_articles_latest.xml │ └── tmpl │ │ └── default.php ├── mod_articles_news │ ├── Helper │ │ └── ArticlesNewsHelper.php │ ├── mod_articles_news.php │ ├── mod_articles_news.xml │ └── tmpl │ │ ├── _item.php │ │ ├── default.php │ │ ├── horizontal.php │ │ └── vertical.php ├── mod_articles_popular │ ├── Helper │ │ └── ArticlesPopularHelper.php │ ├── mod_articles_popular.php │ ├── mod_articles_popular.xml │ └── tmpl │ │ └── default.php ├── mod_banners │ ├── Helper │ │ └── ModBannersHelper.php │ ├── mod_banners.php │ ├── mod_banners.xml │ └── tmpl │ │ └── default.php ├── mod_breadcrumbs │ ├── Helper │ │ └── BreadcrumbsHelper.php │ ├── mod_breadcrumbs.php │ ├── mod_breadcrumbs.xml │ └── tmpl │ │ └── default.php ├── mod_custom │ ├── mod_custom.php │ ├── mod_custom.xml │ └── tmpl │ │ └── default.php ├── mod_feed │ ├── Helper │ │ └── FeedHelper.php │ ├── mod_feed.php │ ├── mod_feed.xml │ └── tmpl │ │ └── default.php ├── mod_finder │ ├── Helper │ │ └── FinderHelper.php │ ├── mod_finder.php │ ├── mod_finder.xml │ └── tmpl │ │ └── default.php ├── mod_footer │ ├── mod_footer.php │ ├── mod_footer.xml │ └── tmpl │ │ └── default.php ├── mod_languages │ ├── Helper │ │ └── LanguagesHelper.php │ ├── mod_languages.php │ ├── mod_languages.xml │ └── tmpl │ │ └── default.php ├── mod_login │ ├── Helper │ │ └── LoginHelper.php │ ├── mod_login.php │ ├── mod_login.xml │ └── tmpl │ │ ├── default.php │ │ └── default_logout.php ├── mod_menu │ ├── Helper │ │ └── MenuHelper.php │ ├── mod_menu.php │ ├── mod_menu.xml │ └── tmpl │ │ ├── default.php │ │ ├── default_component.php │ │ ├── default_heading.php │ │ ├── default_separator.php │ │ └── default_url.php ├── mod_random_image │ ├── Helper │ │ └── RandomImageHelper.php │ ├── mod_random_image.php │ ├── mod_random_image.xml │ └── tmpl │ │ └── default.php ├── mod_related_items │ ├── Helper │ │ └── RelatedItemsHelper.php │ ├── mod_related_items.php │ ├── mod_related_items.xml │ └── tmpl │ │ └── default.php ├── mod_stats │ ├── Helper │ │ └── StatsHelper.php │ ├── mod_stats.php │ ├── mod_stats.xml │ └── tmpl │ │ └── default.php ├── mod_syndicate │ ├── Helper │ │ └── SyndicateHelper.php │ ├── mod_syndicate.php │ ├── mod_syndicate.xml │ └── tmpl │ │ └── default.php ├── mod_tags_popular │ ├── Helper │ │ └── TagsPopularHelper.php │ ├── mod_tags_popular.php │ ├── mod_tags_popular.xml │ └── tmpl │ │ ├── cloud.php │ │ └── default.php ├── mod_tags_similar │ ├── Helper │ │ └── TagsSimilarHelper.php │ ├── mod_tags_similar.php │ ├── mod_tags_similar.xml │ └── tmpl │ │ └── default.php ├── mod_users_latest │ ├── Helper │ │ └── UsersLatestHelper.php │ ├── mod_users_latest.php │ ├── mod_users_latest.xml │ └── tmpl │ │ └── default.php ├── mod_whosonline │ ├── Helper │ │ └── WhosonlineHelper.php │ ├── mod_whosonline.php │ ├── mod_whosonline.xml │ └── tmpl │ │ ├── default.php │ │ └── disabled.php └── mod_wrapper │ ├── Helper │ └── WrapperHelper.php │ ├── mod_wrapper.php │ ├── mod_wrapper.xml │ └── tmpl │ └── default.php ├── package-lock.json ├── package.json ├── phpunit-pgsql.xml.dist ├── phpunit.xml.dist ├── plugins ├── actionlog │ └── joomla │ │ ├── joomla.php │ │ └── joomla.xml ├── api-authentication │ └── basic │ │ ├── basic.php │ │ └── basic.xml ├── authentication │ ├── cookie │ │ ├── cookie.php │ │ └── cookie.xml │ ├── joomla │ │ ├── joomla.php │ │ └── joomla.xml │ └── ldap │ │ ├── ldap.php │ │ └── ldap.xml ├── behaviour │ ├── taggable │ │ ├── taggable.php │ │ └── taggable.xml │ └── versionable │ │ ├── versionable.php │ │ └── versionable.xml ├── captcha │ ├── recaptcha │ │ ├── recaptcha.php │ │ └── recaptcha.xml │ └── recaptcha_invisible │ │ ├── recaptcha_invisible.php │ │ └── recaptcha_invisible.xml ├── content │ ├── confirmconsent │ │ ├── confirmconsent.php │ │ ├── confirmconsent.xml │ │ └── fields │ │ │ └── consentbox.php │ ├── contact │ │ ├── contact.php │ │ └── contact.xml │ ├── emailcloak │ │ ├── emailcloak.php │ │ └── emailcloak.xml │ ├── fields │ │ ├── fields.php │ │ └── fields.xml │ ├── finder │ │ ├── finder.php │ │ └── finder.xml │ ├── joomla │ │ ├── joomla.php │ │ └── joomla.xml │ ├── loadmodule │ │ ├── loadmodule.php │ │ └── loadmodule.xml │ ├── pagebreak │ │ ├── pagebreak.php │ │ ├── pagebreak.xml │ │ └── tmpl │ │ │ ├── navigation.php │ │ │ └── toc.php │ ├── pagenavigation │ │ ├── pagenavigation.php │ │ ├── pagenavigation.xml │ │ └── tmpl │ │ │ └── default.php │ └── vote │ │ ├── tmpl │ │ ├── rating.php │ │ └── vote.php │ │ ├── vote.php │ │ └── vote.xml ├── editors-xtd │ ├── article │ │ ├── article.php │ │ └── article.xml │ ├── contact │ │ ├── contact.php │ │ └── contact.xml │ ├── fields │ │ ├── fields.php │ │ └── fields.xml │ ├── image │ │ ├── image.php │ │ └── image.xml │ ├── menu │ │ ├── menu.php │ │ └── menu.xml │ ├── module │ │ ├── module.php │ │ └── module.xml │ ├── pagebreak │ │ ├── pagebreak.php │ │ └── pagebreak.xml │ └── readmore │ │ ├── readmore.php │ │ └── readmore.xml ├── editors │ ├── codemirror │ │ ├── codemirror.php │ │ ├── codemirror.xml │ │ ├── fonts.json │ │ ├── fonts.php │ │ └── layouts │ │ │ └── editors │ │ │ └── codemirror │ │ │ ├── element.php │ │ │ └── styles.php │ ├── none │ │ ├── none.php │ │ └── none.xml │ └── tinymce │ │ ├── field │ │ ├── skins.php │ │ ├── tinymcebuilder.php │ │ └── uploaddirs.php │ │ ├── form │ │ └── setoptions.xml │ │ ├── tinymce.php │ │ └── tinymce.xml ├── extension │ ├── finder │ │ ├── finder.php │ │ └── finder.xml │ ├── joomla │ │ ├── joomla.php │ │ └── joomla.xml │ └── namespacemap │ │ ├── namespacemap.php │ │ └── namespacemap.xml ├── fields │ ├── calendar │ │ ├── calendar.php │ │ ├── calendar.xml │ │ ├── params │ │ │ └── calendar.xml │ │ └── tmpl │ │ │ └── calendar.php │ ├── checkboxes │ │ ├── checkboxes.php │ │ ├── checkboxes.xml │ │ ├── params │ │ │ └── checkboxes.xml │ │ └── tmpl │ │ │ └── checkboxes.php │ ├── color │ │ ├── color.php │ │ ├── color.xml │ │ └── tmpl │ │ │ └── color.php │ ├── editor │ │ ├── editor.php │ │ ├── editor.xml │ │ ├── params │ │ │ └── editor.xml │ │ └── tmpl │ │ │ └── editor.php │ ├── imagelist │ │ ├── imagelist.php │ │ ├── imagelist.xml │ │ ├── params │ │ │ └── imagelist.xml │ │ └── tmpl │ │ │ └── imagelist.php │ ├── integer │ │ ├── integer.php │ │ ├── integer.xml │ │ ├── params │ │ │ └── integer.xml │ │ └── tmpl │ │ │ └── integer.php │ ├── list │ │ ├── list.php │ │ ├── list.xml │ │ ├── params │ │ │ └── list.xml │ │ └── tmpl │ │ │ └── list.php │ ├── media │ │ ├── media.php │ │ ├── media.xml │ │ ├── params │ │ │ └── media.xml │ │ └── tmpl │ │ │ └── media.php │ ├── radio │ │ ├── params │ │ │ └── radio.xml │ │ ├── radio.php │ │ ├── radio.xml │ │ └── tmpl │ │ │ └── radio.php │ ├── repeatable │ │ ├── params │ │ │ └── repeatable.xml │ │ ├── repeatable.php │ │ ├── repeatable.xml │ │ └── tmpl │ │ │ └── repeatable.php │ ├── sql │ │ ├── params │ │ │ └── sql.xml │ │ ├── sql.php │ │ ├── sql.xml │ │ └── tmpl │ │ │ └── sql.php │ ├── text │ │ ├── params │ │ │ └── text.xml │ │ ├── text.php │ │ ├── text.xml │ │ └── tmpl │ │ │ └── text.php │ ├── textarea │ │ ├── params │ │ │ └── textarea.xml │ │ ├── textarea.php │ │ ├── textarea.xml │ │ └── tmpl │ │ │ └── textarea.php │ ├── url │ │ ├── params │ │ │ └── url.xml │ │ ├── tmpl │ │ │ └── url.php │ │ ├── url.php │ │ └── url.xml │ ├── user │ │ ├── params │ │ │ └── user.xml │ │ ├── tmpl │ │ │ └── user.php │ │ ├── user.php │ │ └── user.xml │ └── usergrouplist │ │ ├── params │ │ └── usergrouplist.xml │ │ ├── tmpl │ │ └── usergrouplist.php │ │ ├── usergrouplist.php │ │ └── usergrouplist.xml ├── filesystem │ └── local │ │ ├── Adapter │ │ └── LocalAdapter.php │ │ ├── local.php │ │ └── local.xml ├── finder │ ├── categories │ │ ├── categories.php │ │ └── categories.xml │ ├── contacts │ │ ├── contacts.php │ │ └── contacts.xml │ ├── content │ │ ├── content.php │ │ └── content.xml │ ├── newsfeeds │ │ ├── newsfeeds.php │ │ └── newsfeeds.xml │ └── tags │ │ ├── tags.php │ │ └── tags.xml ├── index.html ├── installer │ ├── folderinstaller │ │ ├── folderinstaller.php │ │ ├── folderinstaller.xml │ │ └── tmpl │ │ │ └── default.php │ ├── override │ │ ├── override.php │ │ └── override.xml │ ├── packageinstaller │ │ ├── packageinstaller.php │ │ ├── packageinstaller.xml │ │ └── tmpl │ │ │ └── default.php │ ├── urlinstaller │ │ ├── tmpl │ │ │ └── default.php │ │ ├── urlinstaller.php │ │ └── urlinstaller.xml │ └── webinstaller │ │ ├── tmpl │ │ └── default.php │ │ ├── webinstaller.php │ │ └── webinstaller.xml ├── media-action │ ├── crop │ │ ├── crop.php │ │ ├── crop.xml │ │ └── form │ │ │ └── crop.xml │ ├── resize │ │ ├── form │ │ │ └── resize.xml │ │ ├── resize.php │ │ └── resize.xml │ └── rotate │ │ ├── form │ │ └── rotate.xml │ │ ├── rotate.php │ │ └── rotate.xml ├── privacy │ ├── actionlogs │ │ ├── actionlogs.php │ │ └── actionlogs.xml │ ├── consents │ │ ├── consents.php │ │ └── consents.xml │ ├── contact │ │ ├── contact.php │ │ └── contact.xml │ ├── content │ │ ├── content.php │ │ └── content.xml │ ├── message │ │ ├── message.php │ │ └── message.xml │ └── user │ │ ├── user.php │ │ └── user.xml ├── quickicon │ ├── extensionupdate │ │ ├── extensionupdate.php │ │ └── extensionupdate.xml │ ├── joomlaupdate │ │ ├── Extension │ │ │ └── Joomlaupdate.php │ │ ├── joomlaupdate.xml │ │ └── services │ │ │ └── provider.php │ ├── overridecheck │ │ ├── overridecheck.php │ │ └── overridecheck.xml │ ├── phpversioncheck │ │ ├── phpversioncheck.php │ │ └── phpversioncheck.xml │ └── privacycheck │ │ ├── privacycheck.php │ │ └── privacycheck.xml ├── sampledata │ ├── blog │ │ ├── blog.php │ │ └── blog.xml │ ├── multilang │ │ ├── multilang.php │ │ └── multilang.xml │ └── testing │ │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.plg_sampledata_testing.ini │ │ │ └── en-GB.plg_sampledata_testing.sys.ini │ │ ├── testing.php │ │ └── testing.xml ├── system │ ├── actionlogs │ │ ├── actionlogs.php │ │ ├── actionlogs.xml │ │ └── forms │ │ │ ├── actionlogs.xml │ │ │ └── information.xml │ ├── cache │ │ ├── cache.php │ │ └── cache.xml │ ├── debug │ │ ├── AbstractDataCollector.php │ │ ├── DataCollector │ │ │ ├── InfoCollector.php │ │ │ ├── LanguageErrorsCollector.php │ │ │ ├── LanguageFilesCollector.php │ │ │ ├── LanguageStringsCollector.php │ │ │ ├── ProfileCollector.php │ │ │ ├── QueryCollector.php │ │ │ └── SessionCollector.php │ │ ├── DataFormatter.php │ │ ├── Storage │ │ │ └── FileStorage.php │ │ ├── debug.php │ │ └── debug.xml │ ├── fields │ │ ├── fields.php │ │ └── fields.xml │ ├── highlight │ │ ├── highlight.php │ │ └── highlight.xml │ ├── httpheaders │ │ ├── httpheaders.php │ │ ├── httpheaders.xml │ │ └── postinstall │ │ │ └── introduction.php │ ├── languagecode │ │ ├── language │ │ │ └── en-GB │ │ │ │ ├── en-GB.plg_system_languagecode.ini │ │ │ │ └── en-GB.plg_system_languagecode.sys.ini │ │ ├── languagecode.php │ │ └── languagecode.xml │ ├── languagefilter │ │ ├── languagefilter.php │ │ └── languagefilter.xml │ ├── log │ │ ├── log.php │ │ └── log.xml │ ├── logout │ │ ├── logout.php │ │ └── logout.xml │ ├── logrotation │ │ ├── logrotation.php │ │ └── logrotation.xml │ ├── privacyconsent │ │ ├── field │ │ │ └── privacy.php │ │ ├── privacyconsent.php │ │ ├── privacyconsent.xml │ │ └── privacyconsent │ │ │ └── privacyconsent.xml │ ├── redirect │ │ ├── form │ │ │ └── excludes.xml │ │ ├── redirect.php │ │ └── redirect.xml │ ├── remember │ │ ├── remember.php │ │ └── remember.xml │ ├── sef │ │ ├── sef.php │ │ └── sef.xml │ ├── sessiongc │ │ ├── sessiongc.php │ │ └── sessiongc.xml │ ├── skipto │ │ ├── skipto.php │ │ └── skipto.xml │ ├── stats │ │ ├── Field │ │ │ ├── AbstractStatsField.php │ │ │ ├── DataField.php │ │ │ └── UniqueidField.php │ │ ├── layouts │ │ │ ├── field │ │ │ │ ├── data.php │ │ │ │ └── uniqueid.php │ │ │ ├── message.php │ │ │ └── stats.php │ │ ├── stats.php │ │ └── stats.xml │ └── updatenotification │ │ ├── postinstall │ │ └── updatecachetime.php │ │ ├── updatenotification.php │ │ └── updatenotification.xml ├── twofactorauth │ ├── totp │ │ ├── postinstall │ │ │ └── actions.php │ │ ├── tmpl │ │ │ └── form.php │ │ ├── totp.php │ │ └── totp.xml │ └── yubikey │ │ ├── tmpl │ │ └── form.php │ │ ├── yubikey.php │ │ └── yubikey.xml ├── user │ ├── contactcreator │ │ ├── contactcreator.php │ │ └── contactcreator.xml │ ├── joomla │ │ ├── joomla.php │ │ └── joomla.xml │ ├── profile │ │ ├── field │ │ │ ├── dob.php │ │ │ └── tos.php │ │ ├── profile.php │ │ ├── profile.xml │ │ └── profiles │ │ │ └── profile.xml │ └── terms │ │ ├── field │ │ └── terms.php │ │ ├── terms.php │ │ ├── terms.xml │ │ └── terms │ │ └── terms.xml └── webservices │ └── content │ ├── content.php │ └── content.xml ├── robots.txt.dist ├── scss-lint.yml ├── templates ├── cassiopeia │ ├── component.php │ ├── error.php │ ├── favicon.ico │ ├── html │ │ └── layouts │ │ │ └── chromes │ │ │ ├── cardGrey.php │ │ │ └── default.php │ ├── images │ │ ├── logo.svg │ │ └── system │ │ │ ├── rating_star.png │ │ │ ├── rating_star_blank.png │ │ │ ├── sort_asc.png │ │ │ └── sort_desc.png │ ├── index.php │ ├── joomla.asset.json │ ├── js │ │ ├── template.js │ │ └── template.min.js │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.tpl_cassiopeia.ini │ │ │ └── en-GB.tpl_cassiopeia.sys.ini │ ├── offline.php │ ├── scss │ │ ├── _variables.scss │ │ ├── blocks │ │ │ ├── _alerts.scss │ │ │ ├── _banner.scss │ │ │ ├── _css-grid.scss │ │ │ ├── _demo-styling.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _frontend-edit.scss │ │ │ ├── _global.scss │ │ │ ├── _header.scss │ │ │ ├── _icons.scss │ │ │ ├── _iframe.scss │ │ │ ├── _layout.scss │ │ │ ├── _modals.scss │ │ │ ├── _modifiers.scss │ │ │ └── _utilities.scss │ │ ├── offline.scss │ │ ├── template-rtl.scss │ │ ├── template.scss │ │ └── vendor │ │ │ ├── _awesomplete.scss │ │ │ ├── _choicesjs.scss │ │ │ ├── _chosen.scss │ │ │ ├── _dragula.scss │ │ │ ├── _minicolors.scss │ │ │ ├── _tinymce.scss │ │ │ └── bootstrap │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _collapse.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _lists.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _pagination.scss │ │ │ └── _table.scss │ ├── templateDetails.xml │ ├── template_preview.png │ └── template_thumbnail.png ├── index.html └── system │ ├── build_incomplete.html │ ├── component.php │ ├── css │ ├── editor.css │ ├── error.css │ ├── error_rtl.css │ ├── general.css │ ├── offline.css │ └── offline_rtl.css │ ├── error.php │ ├── incompatible.html │ ├── index.php │ ├── js │ └── error-locales.js │ └── offline.php ├── tests ├── Codeception │ ├── README.md │ ├── _data │ │ ├── com_media │ │ │ ├── test-image-1.jpg │ │ │ ├── test-image-1.png │ │ │ └── test-image-2.png │ │ └── dump.sql │ ├── _support │ │ ├── AcceptanceTester.php │ │ ├── ApiTester.php │ │ ├── FunctionalTester.php │ │ ├── Helper │ │ │ ├── Acceptance.php │ │ │ ├── Api.php │ │ │ ├── Functional.php │ │ │ ├── JoomlaDb.php │ │ │ └── Unit.php │ │ ├── Page │ │ │ └── Acceptance │ │ │ │ ├── Administrator │ │ │ │ ├── AdminFormPage.php │ │ │ │ ├── AdminListPage.php │ │ │ │ ├── AdminPage.php │ │ │ │ ├── BannerListPage.php │ │ │ │ ├── ContentCategoryListPage.php │ │ │ │ ├── ContentFormPage.php │ │ │ │ ├── ContentListPage.php │ │ │ │ ├── MediaFilePage.php │ │ │ │ ├── MediaListPage.php │ │ │ │ ├── MenuFormPage.php │ │ │ │ ├── MenuListPage.php │ │ │ │ └── UserListPage.php │ │ │ │ └── Site │ │ │ │ └── FrontPage.php │ │ ├── Step │ │ │ └── Acceptance │ │ │ │ └── Administrator │ │ │ │ ├── Admin.php │ │ │ │ ├── Banner.php │ │ │ │ ├── Category.php │ │ │ │ ├── Content.php │ │ │ │ └── Media.php │ │ ├── UnitTester.php │ │ └── _generated │ │ │ └── .gitignore │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── _bootstrap.php │ │ ├── administrator │ │ │ └── components │ │ │ │ ├── com_content │ │ │ │ ├── ContentCategoryListCest.php │ │ │ │ └── ContentListCest.php │ │ │ │ ├── com_media │ │ │ │ └── MediaListCest.php │ │ │ │ ├── com_menu │ │ │ │ └── MenuCest.php │ │ │ │ └── com_users │ │ │ │ └── UserListCest.php │ │ └── install │ │ │ └── InstallCest.php │ ├── api.suite.yml │ ├── api │ │ ├── BasicCest.php │ │ ├── ContentCest.php │ │ └── _bootstrap.php │ ├── drone-api-run.sh │ └── drone-system-run.sh ├── Integration │ ├── DBTestHelper.php │ ├── DBTestInterface.php │ ├── DBTestTrait.php │ ├── IntegrationTestCase.php │ ├── Libraries │ │ └── Cms │ │ │ └── Table │ │ │ ├── Stubs │ │ │ └── TestTable.php │ │ │ └── TableTest.php │ ├── README.md │ └── datasets │ │ ├── mysqli │ │ ├── framework.sql │ │ └── testtable.sql │ │ └── pgsql │ │ ├── framework.sql │ │ └── testtable.sql ├── README.md ├── Unit │ ├── Libraries │ │ └── Cms │ │ │ ├── Access │ │ │ ├── RuleTest.php │ │ │ └── RulesTest.php │ │ │ ├── Console │ │ │ └── Loader │ │ │ │ └── WritableContainerLoaderTest.php │ │ │ ├── Document │ │ │ └── DocumentTest.php │ │ │ ├── Environment │ │ │ └── BrowserTest.php │ │ │ ├── Feed │ │ │ ├── FeedEntryTest.php │ │ │ ├── FeedFactoryTest.php │ │ │ ├── FeedLinkTest.php │ │ │ ├── FeedParserTest.php │ │ │ ├── FeedTest.php │ │ │ └── Parser │ │ │ │ ├── AtomParserTest.php │ │ │ │ └── RssParserTest.php │ │ │ ├── Html │ │ │ ├── JHtmlDateTest.php │ │ │ ├── JHtmlNumberTest.php │ │ │ ├── JHtmlStringTest.php │ │ │ └── JHtmlTelTest.php │ │ │ ├── Layout │ │ │ └── BaseLayoutTest.php │ │ │ ├── Mail │ │ │ ├── MailHelperTest.php │ │ │ └── MailTest.php │ │ │ ├── Microdata │ │ │ └── MicrodataTest.php │ │ │ ├── Object │ │ │ └── CMSObjectTest.php │ │ │ ├── Toolbar │ │ │ ├── Button │ │ │ │ └── CustomButtonTest.php │ │ │ └── ToolbarTest.php │ │ │ └── VersionTest.php │ ├── README.md │ ├── UnitTestCase.php │ └── bootstrap.php └── javascript │ └── karma.conf.js ├── tmp └── index.html └── web.config.txt /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | indent_style = tab 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = true 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Steps to reproduce the issue 2 | 3 | 4 | 5 | ### Expected result 6 | 7 | 8 | 9 | ### Actual result 10 | 11 | 12 | 13 | ### System information (as much as possible) 14 | 15 | 16 | 17 | ### Additional comments 18 | 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | ### Steps to reproduce the issue 8 | 9 | 10 | 11 | ### Expected result 12 | 13 | 14 | 15 | ### Actual result 16 | 17 | 18 | 19 | ### System information (as much as possible) 20 | 21 | 22 | 23 | ### Additional comments 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Fix this template 3 | about: Suggest a fix it 4 | 5 | --- 6 | 7 | ### What needs to be fixed 8 | 9 | 10 | ### Why this should be fixed 11 | 12 | 13 | ### How would you fix it 14 | 15 | 16 | ### Side Effects expected 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | ### Is your feature request related to a problem? Please describe. 8 | 9 | 10 | 11 | ### Describe the solution you'd like 12 | 13 | 14 | 15 | ### Additional context 16 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Pull Request for Issue # . 2 | 3 | ### Summary of Changes 4 | 5 | 6 | 7 | ### Testing Instructions 8 | 9 | 10 | 11 | ### Expected result 12 | 13 | 14 | 15 | ### Actual result 16 | 17 | 18 | 19 | ### Documentation Changes Required 20 | 21 | -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | fail_on_violations: true 2 | 3 | scss: 4 | config_file: scss-lint.yml 5 | 6 | eslint: 7 | enabled: true 8 | config_file: .eslintrc 9 | ignore_file: .eslintignore 10 | 11 | # Disable hound default linters 12 | jshint: 13 | enabled: false 14 | 15 | ruby: 16 | enabled: false 17 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'scss_lint', '~> 0.57.0' 4 | -------------------------------------------------------------------------------- /administrator/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/components/com_actionlogs/tmpl/actionlogs/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.8.0-2017-07-28.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__fields_groups` ADD COLUMN `params` TEXT NOT NULL AFTER `ordering`; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.8.2-2017-10-14.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Add index for alias check #__content 3 | -- 4 | 5 | ALTER TABLE `#__content` ADD INDEX `idx_alias` (`alias`(191)); 6 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.8.4-2018-01-16.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__user_keys` DROP INDEX `series_2`; 2 | ALTER TABLE `#__user_keys` DROP INDEX `series_3`; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.8.9-2018-06-19.sql: -------------------------------------------------------------------------------- 1 | -- Enable Sample Data Module. 2 | UPDATE `#__extensions` SET `enabled` = '1' WHERE `name` = 'mod_sampledata'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-05-19.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (481, 0, 'plg_fields_repeatable', 'plugin', 'repeatable', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-05-20.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (319, 0, 'mod_latestactions', 'module', 'mod_latestactions', '', 1, 1, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-06-12.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (320, 0, 'mod_privacy_dashboard', 'module', 'mod_privacy_dashboard', '', 1, 1, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-06-17.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (489, 0, 'plg_user_terms', 'plugin', 'terms', 'user', 0, 0, 1, 0, '', '{}', '', '', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-07-10.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__action_log_config` (`id`, `type_title`, `type_alias`, `id_holder`, `title_holder`, `table_name`, `text_prefix`) 2 | VALUES (19, 'application_config', 'com_config.application', '', 'name', '', 'PLG_ACTIONLOG_JOOMLA'); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-07-11.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (493, 0, 'plg_privacy_actionlogs', 'plugin', 'actionlogs', 'privacy', 0, 1, 1, 0, '', '{}', '', '', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-08-12.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__privacy_consents` ADD COLUMN `state` INT(10) NOT NULL DEFAULT 1 AFTER `user_id`; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-08-28.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__session` MODIFY `session_id` varbinary(192) NOT NULL; 2 | ALTER TABLE `#__session` MODIFY `guest` tinyint(3) unsigned DEFAULT 1; 3 | ALTER TABLE `#__session` MODIFY `time` int(11) NOT NULL DEFAULT 0; 4 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-09-04.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `#__action_logs_users` ( 2 | `user_id` int(11) UNSIGNED NOT NULL, 3 | `notify` tinyint(1) UNSIGNED NOT NULL, 4 | `extensions` text NOT NULL, 5 | PRIMARY KEY (`user_id`), 6 | KEY `idx_notify` (`notify`) 7 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; 8 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-10-15.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__action_logs` ADD INDEX `idx_user_id` (`user_id`); 2 | ALTER TABLE `#__action_logs` ADD INDEX `idx_user_id_logdate` (`user_id`, `log_date`); 3 | ALTER TABLE `#__action_logs` ADD INDEX `idx_user_id_extension` (`user_id`, `extension`); 4 | ALTER TABLE `#__action_logs` ADD INDEX `idx_extension_item_id` (`extension`, `item_id`); 5 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-10-20.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__privacy_requests` DROP INDEX `idx_checkout`; 2 | ALTER TABLE `#__privacy_requests` DROP COLUMN `checked_out`; 3 | ALTER TABLE `#__privacy_requests` DROP COLUMN `checked_out_time`; 4 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.0-2018-10-21.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`extension_id`, `package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (495, 0, 'plg_privacy_consents', 'plugin', 'consents', 'privacy', 0, 1, 1, 0, '', '{}', '', '', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/3.9.3-2019-01-12.sql: -------------------------------------------------------------------------------- 1 | UPDATE `#__extensions` 2 | SET `params` = REPLACE(`params`, '"com_categories",', '"com_categories","com_checkin",') 3 | WHERE `name` = 'com_actionlogs'; 4 | 5 | INSERT INTO `#__action_logs_extensions` (`extension`) VALUES 6 | ('com_checkin'); -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2016-09-22.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__extensions` WHERE `type` = 'library' AND `element` = 'phputf8'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2016-09-28.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__extensions` WHERE `type` = 'plugin' AND `element` = 'p3p' AND `folder` = 'system'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2016-10-03.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__extensions` WHERE `name` = 'mod_submenu'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2017-03-18.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__extensions` DROP COLUMN `custom_data`; 2 | ALTER TABLE `#__extensions` DROP COLUMN `system_data`; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2017-05-31.sql: -------------------------------------------------------------------------------- 1 | UPDATE `#__menu` SET `link` = 'index.php?option=com_config&view=config' WHERE `link` = 'index.php?option=com_config&view=config&controller=config.display.config'; 2 | UPDATE `#__menu` SET `link` = 'index.php?option=com_config&view=templates' WHERE `link` = 'index.php?option=com_config&view=templates&controller=config.display.templates'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2017-06-03.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__extensions` ADD COLUMN `changelogurl` text AFTER `element`; 2 | ALTER TABLE `#__updates` ADD COLUMN `changelogurl` text AFTER `infourl`; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-02-24.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__extensions` WHERE `type` = 'library' AND `element` = 'idna_convert'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-03-05.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__modules` CHANGE `content` `content` TEXT NULL; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-06-11.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` 2 | (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `checked_out`, `checked_out_time`, `ordering`, `state`) 3 | VALUES 4 | (0, 'plg_sampledata_multilang', 'plugin', 'multilang', 'sampledata', 0, 0, 1, 0, '', '', 0, '0000-00-00 00:00:00', 0, 0); 5 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-06-26.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__user_notes` CHANGE `modified_user_id` `modified_user_id` int(10) unsigned NOT NULL DEFAULT 0; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-07-02.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (0, 'plg_extension_namespacemap', 'plugin', 'namespacemap', 'extension', 0, 0, 1, 1, '', '', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-09-12.sql: -------------------------------------------------------------------------------- 1 | UPDATE `#__extensions` SET `client_id` = 1 WHERE `name` = 'com_mailto'; 2 | UPDATE `#__extensions` SET `client_id` = 1 WHERE `name` = 'com_wrapper'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-10-18.sql: -------------------------------------------------------------------------------- 1 | UPDATE `#__content_types` SET `router` = '' WHERE `type_alias` = 'com_users.user'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-02-03.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__menu` WHERE `link` = 'index.php?option=com_postinstall' AND `menutype` = 'main'; 2 | DELETE FROM `#__menu` WHERE `link` = 'index.php?option=com_redirect' AND `menutype` = 'main'; 3 | DELETE FROM `#__menu` WHERE `link` = 'index.php?option=com_joomlaupdate' AND `menutype` = 'main'; -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-03-09.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES 2 | (0, 'plg_system_skipto', 'plugin', 'skipto', 'system', 0, 1, 1, 0, '', '{}', 0, '0000-00-00 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-03-30.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__menu` ADD COLUMN `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'; 2 | ALTER TABLE `#__menu` ADD COLUMN `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-05-20.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__extensions` ADD COLUMN `note` varchar(255) AFTER `state`; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-07-14.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__contact_details` DROP COLUMN `xreference`; 2 | ALTER TABLE `#__content` DROP COLUMN `xreference`; 3 | ALTER TABLE `#__newsfeeds` DROP COLUMN `xreference`; -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-07-16.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `#__menu` WHERE `link` = 'index.php?option=com_csp' AND `menutype` = 'main'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.8.0-2017-07-28.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__fields_groups" ADD COLUMN "params" TEXT NOT NULL; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.8.2-2017-10-14.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Add index for alias check #__content 3 | -- 4 | 5 | CREATE INDEX "#__content_idx_alias" ON "#__content" ("alias"); 6 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.8.4-2018-01-16.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX "#__user_keys_series_2"; 2 | DROP INDEX "#__user_keys_series_3"; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.8.9-2018-06-19.sql: -------------------------------------------------------------------------------- 1 | -- Enable Sample Data Module. 2 | UPDATE "#__extensions" SET "enabled" = '1' WHERE "name" = 'mod_sampledata'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-05-19.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("extension_id", "package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "custom_data", "system_data", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (481, 0, 'plg_fields_repeatable', 'plugin', 'repeatable', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-05-20.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("extension_id", "package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "custom_data", "system_data", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (319, 0, 'mod_latestactions', 'module', 'mod_latestactions', '', 1, 1, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-06-17.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("extension_id", "package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "custom_data", "system_data", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (489, 0, 'plg_user_terms', 'plugin', 'terms', 'user', 0, 0, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-07-10.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__action_log_config" ("id", "type_title", "type_alias", "id_holder", "title_holder", "table_name", "text_prefix") 2 | VALUES (19, 'application_config', 'com_config.application', '', 'name', '', 'PLG_ACTIONLOG_JOOMLA'); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-07-11.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("extension_id", "package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "custom_data", "system_data", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (493, 0, 'plg_privacy_actionlogs', 'plugin', 'actionlogs', 'privacy', 0, 1, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-08-12.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__privacy_consents" ADD COLUMN "state" smallint DEFAULT 1 NOT NULL; -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-09-04.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE "#__action_logs_users" ( 2 | "user_id" integer NOT NULL, 3 | "notify" integer NOT NULL, 4 | "extensions" text NOT NULL, 5 | PRIMARY KEY ("user_id") 6 | ); 7 | 8 | CREATE INDEX "#__action_logs_users_idx_notify" ON "#__action_logs_users" ("notify"); 9 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-10-15.sql: -------------------------------------------------------------------------------- 1 | CREATE INDEX "#__action_logs_idx_user_id" ON "#__action_logs" ("user_id"); 2 | CREATE INDEX "#__action_logs_idx_user_id_logdate" ON "#__action_logs" ("user_id", "log_date"); 3 | CREATE INDEX "#__action_logs_idx_user_id_extension" ON "#__action_logs" ("user_id", "extension"); 4 | CREATE INDEX "#__action_logs_idx_extension_itemid" ON "#__action_logs" ("extension", "item_id"); 5 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-10-20.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX "#__privacy_requests_idx_checked_out"; 2 | ALTER TABLE "#__privacy_requests" DROP COLUMN "checked_out"; 3 | ALTER TABLE "#__privacy_requests" DROP COLUMN "checked_out_time"; 4 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.0-2018-10-21.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("extension_id", "package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "custom_data", "system_data", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (495, 0, 'plg_privacy_consents', 'plugin', 'consents', 'privacy', 0, 1, 1, 0, '', '{}', '', '', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/3.9.3-2019-01-12.sql: -------------------------------------------------------------------------------- 1 | UPDATE "#__extensions" 2 | SET "params" = REPLACE("params", '"com_categories",', '"com_categories","com_checkin",') 3 | WHERE "name" = 'com_actionlogs'; 4 | 5 | INSERT INTO "#__action_logs_extensions" ("extension") VALUES 6 | ('com_checkin'); 7 | 8 | SELECT setval('#__action_logs_extensions_id_seq', max(id)) FROM "#__action_logs_extensions"; -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2016-09-22.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__extensions" WHERE "type" = 'library' AND "element" = 'phputf8'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2016-09-28.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__extensions" WHERE "type" = 'plugin' AND "element" = 'p3p' AND "folder" = 'system'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2016-10-03.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__extensions" WHERE "name" = 'mod_submenu'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2017-03-18.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__extensions" DROP COLUMN "custom_data"; 2 | ALTER TABLE "#__extensions" DROP COLUMN "system_data"; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2017-05-31.sql: -------------------------------------------------------------------------------- 1 | UPDATE "#__menu" SET "link" = 'index.php?option=com_config&view=config' WHERE "link" = 'index.php?option=com_config&view=config&controller=config.display.config'; 2 | UPDATE "#__menu" SET "link" = 'index.php?option=com_config&view=templates' WHERE "link" = 'index.php?option=com_config&view=templates&controller=config.display.templates'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2017-06-03.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__extensions" ADD COLUMN "changelogurl" text; 2 | ALTER TABLE "#__updates" ADD COLUMN "changelogurl" text; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-02-24.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__extensions" WHERE "type" = 'library' AND "element" = 'idna_convert'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-03-05.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__modules" ALTER COLUMN "content" DROP NOT NULL; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-06-11.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" 2 | ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "checked_out", "checked_out_time", "ordering", "state") 3 | VALUES 4 | (0, 'plg_sampledata_multilang', 'plugin', 'multilang', 'sampledata', 0, 0, 1, 0, '', '', 0, '1970-01-01 00:00:00', 0, 0); 5 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-06-26.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__user_notes" ALTER COLUMN "modified_user_id" SET DEFAULT 0; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-07-02.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (0, 'plg_extension_namespacemap', 'plugin', 'namespacemap', 'extension', 0, 0, 1, 1, '', '{}', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-09-12.sql: -------------------------------------------------------------------------------- 1 | UPDATE "#__extensions" SET "client_id" = 1 WHERE "name" = 'com_mailto'; 2 | UPDATE "#__extensions" SET "client_id" = 1 WHERE "name" = 'com_wrapper'; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-10-18.sql: -------------------------------------------------------------------------------- 1 | UPDATE "#__content_types" SET "router" = '' WHERE "type_alias" = 'com_users.user'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-02-03.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__menu" WHERE "link" = 'index.php?option=com_postinstall' AND "menutype" = 'main'; 2 | DELETE FROM "#__menu" WHERE "link" = 'index.php?option=com_redirect' AND "menutype" = 'main'; 3 | DELETE FROM "#__menu" WHERE "link" = 'index.php?option=com_joomlaupdate' AND "menutype" = 'main'; 4 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-03-09.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "manifest_cache", "params", "checked_out", "checked_out_time", "ordering", "state") VALUES 2 | (0, 'plg_system_skipto', 'plugin', 'skipto', 'system', 0, 1, 1, 0, '', '{}', 0, '1970-01-01 00:00:00', 0, 0); 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-03-30.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__menu" ADD COLUMN "publish_up" timestamp without time zone DEFAULT '1970-01-01 00:00:00' NOT NULL; 2 | ALTER TABLE "#__menu" ADD COLUMN "publish_down" timestamp without time zone DEFAULT '1970-01-01 00:00:00' NOT NULL; 3 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-05-20.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__extensions" ADD COLUMN "note" varchar(255); 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-07-14.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "#__contact_details" DROP COLUMN "xreference"; 2 | ALTER TABLE "#__content" DROP COLUMN "xreference"; 3 | ALTER TABLE "#__newsfeeds" DROP COLUMN "xreference"; -------------------------------------------------------------------------------- /administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-07-16.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "#__menu" WHERE "link" = 'index.php?option=com_csp' AND "menutype" = 'main'; 2 | -------------------------------------------------------------------------------- /administrator/components/com_admin/tmpl/help/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_admin/tmpl/sysinfo/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_ajax/ajax.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /administrator/components/com_associations/tmpl/associations/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /administrator/components/com_banners/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__banners`; 2 | 3 | DROP TABLE IF EXISTS `#__banner_clients`; 4 | 5 | DROP TABLE IF EXISTS `#__banner_tracks`; 6 | 7 | -------------------------------------------------------------------------------- /administrator/components/com_cache/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /administrator/components/com_cache/tmpl/cache/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_config/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /administrator/components/com_config/tmpl/application/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_contact/forms/fields/mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /administrator/components/com_contact/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__contact_details`; 2 | 3 | -------------------------------------------------------------------------------- /administrator/components/com_content/tmpl/featured/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_cpanel/tmpl/cpanel/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_installer/tmpl/install/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_installer/tmpl/languages/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_installer/tmpl/manage/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_installer/tmpl/updatesites/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_languages/tmpl/installed/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_languages/tmpl/languages/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_languages/tmpl/overrides/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_media/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"], 3 | "plugins": ["transform-runtime"] 4 | } -------------------------------------------------------------------------------- /administrator/components/com_media/forms/file.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | -------------------------------------------------------------------------------- /administrator/components/com_media/resources/scripts/mixins/navigable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | methods: { 3 | navigateTo: function (path) { 4 | this.$store.dispatch('getContents', path); 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /administrator/components/com_media/resources/scripts/store/plugins/persisted-state.js: -------------------------------------------------------------------------------- 1 | // The options for persisting state 2 | export const persistedStateOptions = { 3 | key: 'joomla.mediamanager', 4 | paths: [ 5 | 'selectedDirectory', 6 | 'showInfoBar', 7 | 'listView', 8 | 'gridSize', 9 | ], 10 | storage: window.sessionStorage, 11 | }; -------------------------------------------------------------------------------- /administrator/components/com_media/tmpl/media/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_menus/presets/components.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /administrator/components/com_menus/tmpl/menu/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_menus/tmpl/menus/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_modules/tmpl/modules/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_newsfeeds/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__newsfeeds`; 2 | 3 | -------------------------------------------------------------------------------- /administrator/components/com_plugins/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /administrator/components/com_plugins/tmpl/plugins/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_postinstall/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /administrator/components/com_postinstall/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
8 | 9 | 17 |
18 |
-------------------------------------------------------------------------------- /administrator/components/com_privacy/tmpl/consents/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_privacy/tmpl/requests/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_redirect/tmpl/links/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /administrator/components/com_tags/views/tags/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /administrator/components/com_templates/forms/style_administrator.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 11 | 12 | 13 | 14 |
15 |
16 | -------------------------------------------------------------------------------- /administrator/components/com_templates/forms/style_site.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 10 | 11 | 12 | 13 |
14 |
15 | -------------------------------------------------------------------------------- /administrator/components/com_templates/tmpl/styles/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_templates/tmpl/templates/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/forms/fields/user.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/group/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/groups/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/level/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/levels/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/mail/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/note/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/notes/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/user/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_users/tmpl/users/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_workflow/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /administrator/help/helpsites.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | English (GB) - Joomla help wiki 5 | 6 | 7 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_ajax.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | 7 | COM_AJAX="Ajax Interface" 8 | COM_AJAX_XML_DESCRIPTION="An extendable Ajax interface for Joomla." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_associations.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_ASSOCIATIONS="Multilingual Associations" 7 | COM_ASSOCIATIONS_XML_DESCRIPTION="Improved multilingual content management component" -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_contenthistory.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_CONTENTHISTORY="Content History" 7 | COM_CONTENTHISTORY_XML_DESCRIPTION="Content History Component." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_csp.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_CSP="Content Security Policy" 7 | COM_CSP_XML_DESCRIPTION="This component manages the Content Security Policy (CSP) reports." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_fields.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_FIELDS="Fields" 7 | COM_FIELDS_XML_DESCRIPTION="Component to manage custom fields." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_login.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_LOGIN="Login" 7 | COM_LOGIN_XML_DESCRIPTION="This component lets users login to the site." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_mailto.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_MAILTO="Mail to" 7 | COM_MAILTO_XML_DESCRIPTION="A generic mail to friend component." 8 | 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.com_redirect.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_REDIRECT="Redirects" 7 | COM_REDIRECT_XML_DESCRIPTION="This component implements link redirection." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_feed.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_FEED="Feed Display" 7 | MOD_FEED_XML_DESCRIPTION="This module allows the displaying of a syndicated feed." 8 | MOD_FEED_LAYOUT_DEFAULT="Default" 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_frontend.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_FRONTEND="Frontend Link" 7 | MOD_FRONTEND_PREVIEW="Preview %s" 8 | MOD_FRONTEND_XML_DESCRIPTION="This module shows a link to the frontend." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_frontend.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_FRONTEND="Frontend Link" 7 | MOD_FRONTEND_LAYOUT_DEFAULT="Default" 8 | MOD_FRONTEND_XML_DESCRIPTION="This module shows a link to the frontend." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_latestactions.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | 7 | MOD_LATESTACTIONS="Action Logs - Latest" 8 | MOD_LATESTACTIONS_XML_DESCRIPTION="This module shows a list of the most recent actions." 9 | 10 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_logged.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | 7 | MOD_LOGGED="Logged-in Users" 8 | MOD_LOGGED_XML_DESCRIPTION="This module shows a list of the Logged-in Users." 9 | MOD_LOGGED_LAYOUT_DEFAULT="Default" 10 | 11 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_menu.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MENU="Administrator Menu" 7 | MOD_MENU_XML_DESCRIPTION="This module displays an administrator menu module." 8 | MOD_MENU_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_messages.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MESSAGES="Messages" 7 | MOD_MESSAGES_PRIVATE_MESSAGES="Private Messages" 8 | MOD_MESSAGES_XML_DESCRIPTION="This module shows the count of private messages." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_messages.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MESSAGES="Messages" 7 | MOD_MESSAGES_XML_DESCRIPTION="This module shows the count of private messages." 8 | MOD_MESSAGES_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_multilangstatus.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MULTILANGSTATUS="Multilingual Status" 7 | MOD_MULTILANGSTATUS_XML_DESCRIPTION="This module shows the status of the multilingual parameters." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MULTILANGSTATUS="Multilingual Status" 7 | MOD_MULTILANGSTATUS_XML_DESCRIPTION="This module shows the status of the multilingual parameters." 8 | 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_PRIVACY_DASHBOARD="Privacy Dashboard" 7 | MOD_PRIVACY_DASHBOARD_XML_DESCRIPTION="The Privacy Dashboard Module shows information about privacy requests." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_privacy_status.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_PRIVACY_STATUS="Privacy Status Check" 7 | MOD_PRIVACY_STATUS_XML_DESCRIPTION="The Privacy Status Check Module shows information about your sites privacy status." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_sampledata.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_SAMPLEDATA="Sample Data" 7 | MOD_SAMPLEDATA_XML_DESCRIPTION="This module lets you install sample data." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_submenu.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_SUBMENU="Administrator Submenu" 7 | MOD_SUBMENU_XML_DESCRIPTION="This module displays an administrator submenu module." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_title.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_TITLE="Title" 7 | MOD_TITLE_XML_DESCRIPTION="This module shows the Toolbar Component Title." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_title.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_TITLE="Title" 7 | MOD_TITLE_XML_DESCRIPTION="This module shows the Toolbar Component Title." 8 | MOD_TITLE_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_toolbar.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_TOOLBAR="Toolbar" 7 | MOD_TOOLBAR_XML_DESCRIPTION="This module shows the toolbar icons used to control actions throughout the Administrator area." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_user.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_USER="User Menu" 7 | MOD_USER_LAYOUT_DEFAULT="Default" 8 | MOD_USER_XML_DESCRIPTION="This module shows the User Menu." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.mod_version.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_VERSION="Joomla! Version Information" 7 | MOD_VERSION_LAYOUT_DEFAULT="Default" 8 | MOD_VERSION_XML_DESCRIPTION="This module displays the Joomla! version." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_behaviour_taggable.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_BEHAVIOUR_TAGGABLE="Behaviour - Taggable" 7 | PLG_BEHAVIOUR_TAGGABLE_XML_DESCRIPTION="Allows content items to be tagged." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_behaviour_taggable.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_BEHAVIOUR_TAGGABLE="Behaviour - Taggable" 7 | PLG_BEHAVIOUR_TAGGABLE_XML_DESCRIPTION="Allows content items to be tagged." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_behaviour_versionable.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_BEHAVIOUR_VERSIONABLE="Behaviour - Versionable" 7 | PLG_BEHAVIOUR_VERSIONABLE_XML_DESCRIPTION="Allows content items to be versioned." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_behaviour_versionable.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_BEHAVIOUR_VERSIONABLE="Behaviour - Versionable" 7 | PLG_BEHAVIOUR_VERSIONABLE_XML_DESCRIPTION="Allows content items to be versioned." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_CONTENT_EMAILCLOAK="Content - Email Cloaking" 7 | PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION="Cloaks all email addresses in content from spambots using JavaScript." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_content_vote.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_CONTENT_VOTE="Content - Vote" 7 | PLG_VOTE_XML_DESCRIPTION="Add Voting functionality to Articles." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_CODEMIRROR_XML_DESCRIPTION="This plugin loads the CodeMirror editor." 7 | PLG_EDITORS_CODEMIRROR="Editor - CodeMirror" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_editors_none.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EDITORS_NONE="Editor - None" 7 | PLG_NONE_XML_DESCRIPTION="This loads a basic text entry field." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_editors_none.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EDITORS_NONE="Editor - None" 7 | PLG_NONE_XML_DESCRIPTION="This loads a basic text entry field." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EDITORS_TINYMCE="Editor - TinyMCE" 7 | PLG_TINY_XML_DESCRIPTION="TinyMCE is a platform independent web based JavaScript HTML WYSIWYG Editor." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_extension_finder.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EXTENSION_FINDER="Extension - Finder" 7 | PLG_EXTENSION_FINDER_XML_DESCRIPTION="Manage the common words in Smart Search." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_extension_finder.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EXTENSION_FINDER="Extension - Finder" 7 | PLG_EXTENSION_FINDER_XML_DESCRIPTION="Manage the common words in Smart Search." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_EXTENSION_JOOMLA="Extension - Joomla" 7 | PLG_EXTENSION_JOOMLA_XML_DESCRIPTION="Manage the update sites for extensions." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_FIELDS_REPEATABLE="Fields - Repeatable" 7 | PLG_FIELDS_REPEATABLE_XML_DESCRIPTION="Plugin to create a repeatable form with customisable fields." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_finder_categories.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_FINDER_CATEGORIES="Smart Search - Categories" 7 | PLG_FINDER_CATEGORIES_XML_DESCRIPTION="This plugin indexes Joomla! Categories." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_FINDER_STATISTICS_TAG="Tag" 7 | PLG_FINDER_TAGS="Smart Search - Tags" 8 | PLG_FINDER_TAGS_XML_DESCRIPTION="This plugin indexes Joomla! Tags." 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_media-action_crop.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_MEDIA-ACTION_CROP="Media Action - Crop" 7 | PLG_MEDIA-ACTION_CROP_XML_DESCRIPTION="Crop functionality for images." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_media-action_resize.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_MEDIA-ACTION_RESIZE="Media Action - Resize" 7 | PLG_MEDIA-ACTION_RESIZE_XML_DESCRIPTION="Resize functionality for images." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_media-action_rotate.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_MEDIA-ACTION_ROTATE="Media Action - Rotate" 7 | PLG_MEDIA-ACTION_ROTATE_XML_DESCRIPTION="Adds rotate functionality for images." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_privacy_content.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_PRIVACY_CONTENT="Privacy - Content" 7 | PLG_PRIVACY_CONTENT_XML_DESCRIPTION="Responsible for processing privacy related requests for the core Joomla content data." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_PRIVACY_USER="Privacy - User Accounts" 7 | PLG_PRIVACY_USER_XML_DESCRIPTION="Responsible for processing privacy related requests for the core Joomla user data." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_sampledata_blog.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SAMPLEDATA_BLOG="Sample Data - Blog" 7 | PLG_SAMPLEDATA_BLOG_XML_DESCRIPTION="Provides the blog sample data. Can be installed using the sample data module." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_cache.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | 7 | PLG_CACHE_XML_DESCRIPTION="Provides page caching." 8 | PLG_SYSTEM_CACHE="System - Page Cache" 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_debug.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_DEBUG_XML_DESCRIPTION="This plugin provides a variety of system information and help for the creation of translation files." 7 | PLG_SYSTEM_DEBUG="System - Debug" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_fields.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SYSTEM_FIELDS="System - Fields" 7 | PLG_SYSTEM_FIELDS_XML_DESCRIPTION="The system fields plugin that is required to display the custom fields." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_fields.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SYSTEM_FIELDS="System - Fields" 7 | PLG_SYSTEM_FIELDS_XML_DESCRIPTION="The system fields plugin that is required to display the custom fields." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_highlight.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SYSTEM_HIGHLIGHT="System - Highlight" 7 | PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION="System plugin to highlight specified terms." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SYSTEM_HIGHLIGHT="System - Highlight" 7 | PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION="System plugin to highlight specified terms." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_log.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_LOG_XML_DESCRIPTION="Provides logging when the user login fails." 7 | PLG_SYSTEM_LOG="System - User Log" 8 | PLG_SYSTEM_LOG_FIELD_LOG_USERNAME_LABEL="Log Usernames" 9 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_log.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_LOG_XML_DESCRIPTION="Provides logging when the user login fails." 7 | PLG_SYSTEM_LOG="System - User Log" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SYSTEM_LOGROTATION="System - Log Rotation" 7 | PLG_SYSTEM_LOGROTATION_XML_DESCRIPTION="This plugin periodically rotates system log files." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_remember.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_REMEMBER_XML_DESCRIPTION="Provides remember me functionality." 7 | PLG_SYSTEM_REMEMBER="System - Remember Me" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_system_sef.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_SEF_XML_DESCRIPTION="Adds SEF support to links in the document. It operates directly on the HTML and does not require a special tag." 7 | PLG_SYSTEM_SEF="System - SEF" -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_CONTACTCREATOR_XML_DESCRIPTION="Plugin to automatically create contact information for new users." 7 | PLG_USER_CONTACTCREATOR="User - Contact Creator" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_USER_PROFILE="User - Profile" 7 | PLG_USER_PROFILE_XML_DESCRIPTION="User Profile Plugin" 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_user_terms.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_USER_TERMS="User - Terms and Conditions" 7 | PLG_USER_TERMS_XML_DESCRIPTION="Basic plugin to request user's consent to the site's terms and conditions." -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_webservices_content.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_WEBSERVICES_CONTENT="Web Services - Content" 7 | PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Used to add articles routes to the API for your website." 8 | -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.plg_webservices_content.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | PLG_WEBSERVICES_CONTENT="Web Services - Content" 7 | PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Used to add articles routes to the API for your website." 8 | -------------------------------------------------------------------------------- /administrator/language/overrides/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/manifests/packages/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/modules/mod_custom/tmpl/default.php: -------------------------------------------------------------------------------- 1 | content; 13 | -------------------------------------------------------------------------------- /administrator/modules/mod_toolbar/tmpl/default.php: -------------------------------------------------------------------------------- 1 | __dirname.replace('/build/build-modules-js/utils', '').replace('\\build\\build-modules-js\\utils', ''); 7 | -------------------------------------------------------------------------------- /build/media_source/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /build/media_source/com_config/js/admin-application-default.es6.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | // Select first tab 7 | // @TODO delete this file when custom elements tabs is merged 8 | window.jQuery(document).ready(($) => { 9 | $('#configTabs a:first').tab('show'); 10 | }); 11 | -------------------------------------------------------------------------------- /build/media_source/com_finder/css/indexer.css: -------------------------------------------------------------------------------- 1 | #finder-progress-container { 2 | width: 350px; 3 | margin: 0 auto; 4 | } 5 | 6 | h1.finder-error { 7 | color: #FF0000; 8 | } 9 | 10 | p.finder-error { 11 | color: #FF0000; 12 | font-weight: bold; 13 | } 14 | -------------------------------------------------------------------------------- /build/media_source/contacts/images/con_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/con_address.png -------------------------------------------------------------------------------- /build/media_source/contacts/images/con_fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/con_fax.png -------------------------------------------------------------------------------- /build/media_source/contacts/images/con_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/con_info.png -------------------------------------------------------------------------------- /build/media_source/contacts/images/con_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/con_mobile.png -------------------------------------------------------------------------------- /build/media_source/contacts/images/con_tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/con_tel.png -------------------------------------------------------------------------------- /build/media_source/contacts/images/emailButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/contacts/images/emailButton.png -------------------------------------------------------------------------------- /build/media_source/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /build/media_source/legacy/js/jquery-noconflict.es5.js: -------------------------------------------------------------------------------- 1 | var $ = jQuery.noConflict(); 2 | -------------------------------------------------------------------------------- /build/media_source/mailto/images/close-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mailto/images/close-x.png -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/af.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/af_za.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/af_za.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/al.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/al.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ar.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ar_aa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ar_aa.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/at.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/az.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/az_az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/az_az.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/be.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/be_by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/be_by.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/belg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/belg.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bg.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bg_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bg_bg.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bn_bd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bn_bd.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/br.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/br_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/br_fr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bs.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/bs_ba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/bs_ba.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ca.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ca_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ca_es.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cbk_iq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cbk_iq.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ch.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cs.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cs_cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cs_cz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cy.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cy_gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cy_gb.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/cz_cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/cz_cz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/da.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/da.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/da_dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/da_dk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de_at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de_at.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de_ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de_ch.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de_de.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de_li.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de_li.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/de_lu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/de_lu.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/dk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/dz_bt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/dz_bt.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/el.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/el.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/el_gr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/el_gr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en_au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en_au.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en_ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en_ca.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en_gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en_gb.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en_nz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en_nz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/en_us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/en_us.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/eo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/eo.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/eo_xx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/eo_xx.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/es.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/es_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/es_co.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/es_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/es_es.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/et.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/et_ee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/et_ee.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/eu_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/eu_es.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fa.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fa_ir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fa_ir.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fi.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fi_fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fi_fi.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fr_ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fr_ca.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/fr_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/fr_fr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ga_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ga_ie.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/gd.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/gd_gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/gd_gb.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/gl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/gl_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/gl_es.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/he.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/he.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/he_il.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/he_il.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hi.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hi_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hi_in.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hk_hk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hk_hk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hr_hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hr_hr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hu.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hu_hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hu_hu.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hy.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/hy_am.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/hy_am.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/icon-16-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/icon-16-language.png -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/id.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/id_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/id_id.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/is.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/is_is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/is_is.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/it.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/it_it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/it_it.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ja.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ja.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ja_jp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ja_jp.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ka.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ka_ge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ka_ge.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/kk_kz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/kk_kz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/km.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/km.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/km_kh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/km_kh.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ko.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ko_kr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ko_kr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ku.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lo.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lo_la.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lo_la.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lt.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lt_lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lt_lt.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lv.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/lv_lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/lv_lv.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/mk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/mk_mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/mk_mk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/mn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/mn_mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/mn_mn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ms_my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ms_my.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/nb_no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/nb_no.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/nl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/nl_be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/nl_be.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/nl_nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/nl_nl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/nn_no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/nn_no.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/no.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/pl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/pl_pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/pl_pl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/prs_af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/prs_af.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ps.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ps_af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ps_af.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/pt.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/pt_br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/pt_br.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/pt_pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/pt_pt.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ro.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ro_ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ro_ro.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ru.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ru_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ru_ru.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/si.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/si_lk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/si_lk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sk_sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sk_sk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sl.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sl_si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sl_si.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sq_al.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sq_al.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sr_rs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sr_rs.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sr_yu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sr_yu.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/srp_me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/srp_me.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sv.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sv_se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sv_se.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sw.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sw_ke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sw_ke.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sy.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/sy_iq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/sy_iq.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ta.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ta_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ta_in.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/th.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/th_th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/th_th.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/tk_tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/tk_tm.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/tr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/tr_tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/tr_tr.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/tw.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ug_cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ug_cn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/uk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/uk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/uk_ua.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/uk_ua.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ur.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/ur_pk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/ur_pk.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/us.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/uz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/uz_uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/uz_uz.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/vi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/vi.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/vi_vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/vi_vn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/zh.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/zh_cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/zh_cn.gif -------------------------------------------------------------------------------- /build/media_source/mod_languages/images/zh_tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/mod_languages/images/zh_tw.gif -------------------------------------------------------------------------------- /build/media_source/plg_system_debug/widgets/languageErrors/widget.css: -------------------------------------------------------------------------------- 1 | ul.phpdebugbar-widgets-languageErrors { 2 | margin-left: 5px; 3 | margin-top: 5px; 4 | font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; 5 | line-height: 1.3em; 6 | } 7 | -------------------------------------------------------------------------------- /build/media_source/plg_system_highlight/highlight.css: -------------------------------------------------------------------------------- 1 | span.highlight { 2 | background-color:#FFFFCC; 3 | font-weight:bold; 4 | padding:1px 0; 5 | } 6 | -------------------------------------------------------------------------------- /build/media_source/system/css/mootree_rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | .mooTree_img { 7 | float: right; 8 | } -------------------------------------------------------------------------------- /build/media_source/system/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/ajax-loader.gif -------------------------------------------------------------------------------- /build/media_source/system/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/arrow.png -------------------------------------------------------------------------------- /build/media_source/system/images/arrow_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/arrow_rtl.png -------------------------------------------------------------------------------- /build/media_source/system/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/blank.png -------------------------------------------------------------------------------- /build/media_source/system/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/calendar.png -------------------------------------------------------------------------------- /build/media_source/system/images/checked_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/checked_out.png -------------------------------------------------------------------------------- /build/media_source/system/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/edit.png -------------------------------------------------------------------------------- /build/media_source/system/images/edit_unpublished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/edit_unpublished.png -------------------------------------------------------------------------------- /build/media_source/system/images/emailButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/emailButton.png -------------------------------------------------------------------------------- /build/media_source/system/images/icon-16-logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/icon-16-logout.png -------------------------------------------------------------------------------- /build/media_source/system/images/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/icon_error.gif -------------------------------------------------------------------------------- /build/media_source/system/images/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent.png -------------------------------------------------------------------------------- /build/media_source/system/images/indent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent1.png -------------------------------------------------------------------------------- /build/media_source/system/images/indent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent2.png -------------------------------------------------------------------------------- /build/media_source/system/images/indent3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent3.png -------------------------------------------------------------------------------- /build/media_source/system/images/indent4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent4.png -------------------------------------------------------------------------------- /build/media_source/system/images/indent5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/indent5.png -------------------------------------------------------------------------------- /build/media_source/system/images/joomla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/joomla.png -------------------------------------------------------------------------------- /build/media_source/system/images/jquery.minicolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/jquery.minicolors.png -------------------------------------------------------------------------------- /build/media_source/system/images/livemarks-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/livemarks-rtl.png -------------------------------------------------------------------------------- /build/media_source/system/images/livemarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/livemarks.png -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/blank.gif -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/moor_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/moor_arrows.gif -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/moor_boverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/moor_boverlay.png -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/moor_cursor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/moor_cursor.gif -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/moor_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/moor_slider.png -------------------------------------------------------------------------------- /build/media_source/system/images/mooRainbow/moor_woverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mooRainbow/moor_woverlay.png -------------------------------------------------------------------------------- /build/media_source/system/images/mootree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mootree.gif -------------------------------------------------------------------------------- /build/media_source/system/images/mootree_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/mootree_loader.gif -------------------------------------------------------------------------------- /build/media_source/system/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/new.png -------------------------------------------------------------------------------- /build/media_source/system/images/no_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/no_indent.png -------------------------------------------------------------------------------- /build/media_source/system/images/notice-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/notice-alert.png -------------------------------------------------------------------------------- /build/media_source/system/images/notice-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/notice-download.png -------------------------------------------------------------------------------- /build/media_source/system/images/notice-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/notice-info.png -------------------------------------------------------------------------------- /build/media_source/system/images/notice-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/notice-note.png -------------------------------------------------------------------------------- /build/media_source/system/images/pdf_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/pdf_button.png -------------------------------------------------------------------------------- /build/media_source/system/images/printButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/printButton.png -------------------------------------------------------------------------------- /build/media_source/system/images/rating_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/rating_star.png -------------------------------------------------------------------------------- /build/media_source/system/images/rating_star_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/rating_star_blank.png -------------------------------------------------------------------------------- /build/media_source/system/images/sort0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/sort0.png -------------------------------------------------------------------------------- /build/media_source/system/images/sort1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/sort1.png -------------------------------------------------------------------------------- /build/media_source/system/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/sort_asc.png -------------------------------------------------------------------------------- /build/media_source/system/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/sort_desc.png -------------------------------------------------------------------------------- /build/media_source/system/images/sort_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/sort_none.png -------------------------------------------------------------------------------- /build/media_source/system/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/tooltip.png -------------------------------------------------------------------------------- /build/media_source/system/images/weblink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/build/media_source/system/images/weblink.png -------------------------------------------------------------------------------- /build/media_source/system/scss/_jquery-minicolors.scss: -------------------------------------------------------------------------------- 1 | // Overrides for jQuery Minicolors 2 | 3 | .minicolors-theme-bootstrap .minicolors-swatch { 4 | top: 50%; 5 | left: 8px; 6 | border-radius: 0; 7 | transform: translateY(-50%); 8 | } 9 | -------------------------------------------------------------------------------- /build/media_source/system/scss/joomla-toolbar-button.scss: -------------------------------------------------------------------------------- 1 | joomla-toolbar-button .dropdown-item:focus, 2 | joomla-toolbar-button .dropdown-item:hover { 3 | color: #fff; 4 | } 5 | -------------------------------------------------------------------------------- /build/media_source/vendor/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /build/media_source/vendor/tinymce/templates/layout1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
Column 1Column 2
Username: {$username}Staffid: {$staffid}
16 | -------------------------------------------------------------------------------- /build/media_source/vendor/tinymce/templates/snippet1.html: -------------------------------------------------------------------------------- 1 | This is just some code. -------------------------------------------------------------------------------- /cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/com_privacy/tmpl/confirm/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_privacy/tmpl/remind/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_privacy/tmpl/request/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_users/tmpl/profile/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_users/tmpl/profile/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_users/tmpl/registration/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_users/tmpl/remind/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/com_users/tmpl/reset/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /components/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/banners/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/banner.jpg -------------------------------------------------------------------------------- /images/banners/osmbanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/osmbanner1.png -------------------------------------------------------------------------------- /images/banners/osmbanner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/osmbanner2.png -------------------------------------------------------------------------------- /images/banners/shop-ad-books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/shop-ad-books.jpg -------------------------------------------------------------------------------- /images/banners/shop-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/shop-ad.jpg -------------------------------------------------------------------------------- /images/banners/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/banners/white.png -------------------------------------------------------------------------------- /images/headers/blue-flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/headers/blue-flower.jpg -------------------------------------------------------------------------------- /images/headers/maple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/headers/maple.jpg -------------------------------------------------------------------------------- /images/headers/raindrops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/headers/raindrops.jpg -------------------------------------------------------------------------------- /images/headers/walden-pond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/headers/walden-pond.jpg -------------------------------------------------------------------------------- /images/headers/windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/headers/windows.jpg -------------------------------------------------------------------------------- /images/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/joomla_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/joomla_black.png -------------------------------------------------------------------------------- /images/powered_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/powered_by.png -------------------------------------------------------------------------------- /images/sampledata/fruitshop/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/fruitshop/apple.jpg -------------------------------------------------------------------------------- /images/sampledata/fruitshop/bananas_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/fruitshop/bananas_2.jpg -------------------------------------------------------------------------------- /images/sampledata/fruitshop/fruits.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/fruitshop/fruits.gif -------------------------------------------------------------------------------- /images/sampledata/fruitshop/tamarind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/fruitshop/tamarind.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/180px_koala_ag1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/180px_koala_ag1.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/180px_wobbegong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/180px_wobbegong.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/200px_phyllopteryx_taeniolatus1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/200px_phyllopteryx_taeniolatus1.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/220px_spottedquoll_2005_seanmcclean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/220px_spottedquoll_2005_seanmcclean.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/789px_spottedquoll_2005_seanmcclean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/789px_spottedquoll_2005_seanmcclean.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/800px_koala_ag1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/800px_koala_ag1.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/800px_phyllopteryx_taeniolatus1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/800px_phyllopteryx_taeniolatus1.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/animals/800px_wobbegong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/animals/800px_wobbegong.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/banner_cradle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/banner_cradle.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/120px_pinnacles_western_australia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/120px_pinnacles_western_australia.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/120px_rainforest_bluemountainsnsw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/120px_rainforest_bluemountainsnsw.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/180px_ormiston_pound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/180px_ormiston_pound.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/250px_cradle_mountain_seen_from_barn_bluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/250px_cradle_mountain_seen_from_barn_bluff.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/727px_rainforest_bluemountainsnsw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/727px_rainforest_bluemountainsnsw.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/800px_cradle_mountain_seen_from_barn_bluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/800px_cradle_mountain_seen_from_barn_bluff.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/800px_ormiston_pound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/800px_ormiston_pound.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/landscape/800px_pinnacles_western_australia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/landscape/800px_pinnacles_western_australia.jpg -------------------------------------------------------------------------------- /images/sampledata/parks/parks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/images/sampledata/parks/parks.gif -------------------------------------------------------------------------------- /includes/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installation/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installation/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/installation/favicon.ico -------------------------------------------------------------------------------- /installation/forms/language.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /installation/localise.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /installation/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /installation/template/body.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | -------------------------------------------------------------------------------- /installation/template/images/joomla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/installation/template/images/joomla.png -------------------------------------------------------------------------------- /installation/template/images/select-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installation/tmpl/error/default.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |

error

15 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_wrapper.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | COM_WRAPPER_NO_IFRAMES="This option will not work correctly. Unfortunately, your browser does not support inline frames." 7 | 8 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.lib_joomla.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | LIB_JOOMLA="Joomla! Platform" 7 | LIB_JOOMLA_XML_DESCRIPTION="The Joomla! Platform is the Core of the Joomla! Content Management System." 8 | 9 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.lib_simplepie.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | LIB_SIMPLEPIE_XML_DESCRIPTION="PHP based RSS and Atom Feed Framework." 7 | 8 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_banners.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_BANNERS="Banners" 7 | MOD_BANNERS_XML_DESCRIPTION="The Banner Module displays the active Banners from the Component." 8 | MOD_BANNERS_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_breadcrumbs.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_BREADCRUMBS="Breadcrumbs" 7 | MOD_BREADCRUMBS_XML_DESCRIPTION="This module displays the Breadcrumbs." 8 | MOD_BREADCRUMBS_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_custom.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_CUSTOM="Custom" 7 | MOD_CUSTOM_XML_DESCRIPTION="This module allows you to create your own Module using a WYSIWYG editor." 8 | MOD_CUSTOM_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_feed.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_FEED="Feed Display" 7 | MOD_FEED_XML_DESCRIPTION="This module allows the displaying of a syndicated feed." 8 | MOD_FEED_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_finder.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_FINDER="Smart Search" 7 | MOD_FINDER_XML_DESCRIPTION="This is a search module for the Smart Search system." 8 | MOD_FINDER_LAYOUT_DEFAULT="Default" 9 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_menu.sys.ini: -------------------------------------------------------------------------------- 1 | ; Joomla! Project 2 | ; Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. 3 | ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php 4 | ; Note : All ini files need to be saved as UTF-8 5 | 6 | MOD_MENU="Menu" 7 | MOD_MENU_XML_DESCRIPTION="This module displays a menu on the Frontend." 8 | MOD_MENU_LAYOUT_DEFAULT="Default" 9 | 10 | -------------------------------------------------------------------------------- /language/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /language/overrides/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/chromes/none.php: -------------------------------------------------------------------------------- 1 | content; 13 | -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/joomla/button/iconclass.php: -------------------------------------------------------------------------------- 1 | 12 | icon- 13 | -------------------------------------------------------------------------------- /layouts/joomla/error/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/joomla/links/groupclose.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /layouts/joomla/links/groupsclose.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | -------------------------------------------------------------------------------- /layouts/joomla/links/groupseparator.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | -------------------------------------------------------------------------------- /layouts/joomla/links/groupsopen.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /layouts/joomla/toolbar/iconclass.php: -------------------------------------------------------------------------------- 1 | 12 | icon- 13 | -------------------------------------------------------------------------------- /layouts/libraries/cms/html/bootstrap/endtab.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /layouts/libraries/cms/html/bootstrap/endtabset.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /libraries/.htaccess: -------------------------------------------------------------------------------- 1 | # Apache 2.4+ 2 | 3 | Require all denied 4 | 5 | 6 | # Apache 2.0-2.2 7 | 8 | Deny from all 9 | -------------------------------------------------------------------------------- /libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/vendor/.htaccess: -------------------------------------------------------------------------------- 1 | # Apache 2.4+ 2 | 3 | Require all denied 4 | 5 | 6 | # Apache 2.0-2.2 7 | 8 | Deny from all 9 | 10 | -------------------------------------------------------------------------------- /libraries/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /modules/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/fields/user/params/user.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 8 | 9 |
10 | 15 |
16 |
17 | 18 | -------------------------------------------------------------------------------- /plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/cassiopeia/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/favicon.ico -------------------------------------------------------------------------------- /templates/cassiopeia/images/system/rating_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/images/system/rating_star.png -------------------------------------------------------------------------------- /templates/cassiopeia/images/system/rating_star_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/images/system/rating_star_blank.png -------------------------------------------------------------------------------- /templates/cassiopeia/images/system/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/images/system/sort_asc.png -------------------------------------------------------------------------------- /templates/cassiopeia/images/system/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/images/system/sort_desc.png -------------------------------------------------------------------------------- /templates/cassiopeia/scss/blocks/_banner.scss: -------------------------------------------------------------------------------- 1 | // Banner 2 | 3 | .container-banner { 4 | 5 | img { 6 | width: 100%; 7 | box-shadow: 0 2px 15px rgba(0,0,0,.8); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/blocks/_footer.scss: -------------------------------------------------------------------------------- 1 | // Footer 2 | 3 | .footer { 4 | 5 | .back-top { 6 | padding: 8px 11px; 7 | color: #fff; 8 | background: $cassiopeia-template-color; 9 | border-radius: 3px; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/blocks/_frontend-edit.scss: -------------------------------------------------------------------------------- 1 | // Frontend Editing 2 | 3 | .jmodedit { 4 | position: absolute; 5 | top: 10px; 6 | right: 10px; 7 | } 8 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/blocks/_iframe.scss: -------------------------------------------------------------------------------- 1 | // Iframe 2 | 3 | iframe { 4 | border: 0; 5 | } 6 | 7 | .modal iframe { 8 | width: 100%; 9 | } 10 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/blocks/_utilities.scss: -------------------------------------------------------------------------------- 1 | // Utilities 2 | 3 | // Keep B/C 4 | .element-invisible { 5 | position: absolute; 6 | width: 1px; 7 | height: 1px; 8 | padding: 0; 9 | overflow: hidden; 10 | clip: rect(0,0,0,0); 11 | white-space: nowrap; 12 | border: 0; 13 | clip-path: inset(50%); 14 | } 15 | 16 | .hidden { 17 | display: none; 18 | visibility: hidden; 19 | } 20 | 21 | joomla-alert { 22 | display: none; 23 | } 24 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/_awesomplete.scss: -------------------------------------------------------------------------------- 1 | // Awesomplete 2 | 3 | .awesomplete { 4 | display: block; 5 | } 6 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/_dragula.scss: -------------------------------------------------------------------------------- 1 | // Dragula 2 | 3 | .gu-mirror { 4 | position: fixed !important; 5 | z-index: 9999 !important; 6 | margin: 0 !important; 7 | background-color: #90ee90; 8 | opacity: .8; 9 | 10 | &.table { 11 | display: table; 12 | 13 | td { 14 | display: table-cell; 15 | } 16 | 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/_minicolors.scss: -------------------------------------------------------------------------------- 1 | // Minicolours 2 | 3 | .minicolors-theme-bootstrap { 4 | 5 | .minicolors-input { 6 | width: 120px; 7 | } 8 | 9 | .rgb { 10 | width: 175px; 11 | } 12 | 13 | .rgba { 14 | width: 220px; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/_tinymce.scss: -------------------------------------------------------------------------------- 1 | // TinyMCE 2 | 3 | .editor { 4 | 5 | .toggle-editor { 6 | margin-top: 1rem; 7 | } 8 | 9 | .mce-tinymce { 10 | border: 1px solid $card-border-color; 11 | @include border-radius($card-border-radius); 12 | } 13 | 14 | .mce-btn, 15 | .mce-panel { 16 | background: $card-bg-color-light; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/bootstrap/_card.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .card-grey { 4 | background-color: #f7f7f9; 5 | } 6 | 7 | .card-inverse { 8 | color: rgba(255,255,255,.9); 9 | } 10 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/bootstrap/_collapse.scss: -------------------------------------------------------------------------------- 1 | // Collapse 2 | 3 | .accordion { 4 | 5 | .card-header { 6 | display: block; 7 | font-size: $h5-font-size; 8 | font-weight: bold; 9 | line-height: $headings-line-height; 10 | } 11 | 12 | .list-group-item { 13 | color: $link-color; 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/bootstrap/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | .list-group-item { 4 | background-color: $list-group-bg; 5 | } 6 | 7 | .list-unstyled .list-unstyled { 8 | padding-left: 20px; 9 | } 10 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination { 4 | margin: 1rem; 5 | } 6 | -------------------------------------------------------------------------------- /templates/cassiopeia/scss/vendor/bootstrap/_table.scss: -------------------------------------------------------------------------------- 1 | // Table 2 | 3 | .table { 4 | 5 | thead th { 6 | white-space: nowrap; 7 | border-bottom-width: 1px; 8 | } 9 | 10 | th, 11 | td { 12 | padding: 8px; 13 | vertical-align: middle; 14 | 15 | label { 16 | margin-bottom: 0; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /templates/cassiopeia/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/template_preview.png -------------------------------------------------------------------------------- /templates/cassiopeia/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/backend-template/dba943619ad1316096a9c2532965e1725d308bb4/templates/cassiopeia/template_thumbnail.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/system/css/error_rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | /* Start Common Styles */ 7 | 8 | body { 9 | text-align: right; 10 | } 11 | 12 | .TD{ 13 | text-align: left; 14 | } 15 | 16 | #errorboxbody { 17 | text-align: right; 18 | } 19 | #techinfo { 20 | text-align: right; 21 | } 22 | -------------------------------------------------------------------------------- /templates/system/index.php: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------