├── .appveyor.yml ├── .babelrc ├── .drone.yml ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── SUPPORT.md ├── .gitignore ├── .hound.yml ├── .php_cs ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── README.txt ├── RoboFile.php ├── administrator ├── cache │ └── index.html ├── components │ ├── com_admin │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── ProfileController.php │ │ ├── Dispatcher │ │ │ └── Dispatcher.php │ │ ├── Extension │ │ │ └── AdminComponent.php │ │ ├── Model │ │ │ ├── HelpModel.php │ │ │ ├── ProfileModel.php │ │ │ └── SysinfoModel.php │ │ ├── Service │ │ │ └── HTML │ │ │ │ ├── Directory.php │ │ │ │ ├── PhpSetting.php │ │ │ │ └── System.php │ │ ├── View │ │ │ ├── Help │ │ │ │ └── HtmlView.php │ │ │ ├── Profile │ │ │ │ └── HtmlView.php │ │ │ └── Sysinfo │ │ │ │ ├── HtmlView.php │ │ │ │ ├── JsonView.php │ │ │ │ └── TextView.php │ │ ├── admin.xml │ │ ├── forms │ │ │ └── profile.xml │ │ ├── postinstall │ │ │ ├── eaccelerator.php │ │ │ ├── htaccess.php │ │ │ ├── languageaccess340.php │ │ │ └── statscollection.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 │ │ │ │ ├── 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-2016-19-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-10-10.sql │ │ │ │ ├── 4.0.0-2018-02-24.sql │ │ │ │ ├── 4.0.0-2018-03-05.sql │ │ │ │ ├── 4.0.0-2018-04-14.sql │ │ │ │ ├── 4.0.0-2018-06-03.sql │ │ │ │ └── 4.0.0-2018-06-11.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 │ │ │ │ ├── 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-2016-10-19.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-10-10.sql │ │ │ │ ├── 4.0.0-2018-02-24.sql │ │ │ │ ├── 4.0.0-2018-03-05.sql │ │ │ │ ├── 4.0.0-2018-04-14.sql │ │ │ │ ├── 4.0.0-2018-06-03.sql │ │ │ │ └── 4.0.0-2018-06-11.sql │ │ └── tmpl │ │ │ ├── help │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ └── langforum.php │ │ │ ├── profile │ │ │ └── edit.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 │ │ │ │ └── bar.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 │ │ ├── Helper │ │ │ └── CacheHelper.php │ │ ├── Model │ │ │ └── CacheModel.php │ │ ├── View │ │ │ ├── Cache │ │ │ │ └── HtmlView.php │ │ │ └── Purge │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── cache.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── filter_cache.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── cache │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ └── purge │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_categories │ │ ├── Controller │ │ │ ├── CategoriesController.php │ │ │ ├── CategoryController.php │ │ │ └── DisplayController.php │ │ ├── Field │ │ │ ├── CategoryeditField.php │ │ │ └── Modal │ │ │ │ └── CategoryField.php │ │ ├── Helper │ │ │ └── CategoriesHelper.php │ │ ├── Model │ │ │ ├── CategoriesModel.php │ │ │ └── CategoryModel.php │ │ ├── Table │ │ │ └── CategoryTable.php │ │ ├── View │ │ │ ├── Categories │ │ │ │ └── HtmlView.php │ │ │ └── Category │ │ │ │ └── HtmlView.php │ │ ├── categories.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── category.xml │ │ │ └── filter_categories.xml │ │ ├── helpers │ │ │ ├── association.php │ │ │ ├── categories.php │ │ │ └── html │ │ │ │ └── categoriesadministrator.php │ │ └── tmpl │ │ │ ├── categories │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ └── category │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ ├── edit_associations.php │ │ │ ├── edit_metadata.php │ │ │ ├── modal.php │ │ │ ├── modal_associations.php │ │ │ ├── modal_extrafields.php │ │ │ ├── modal_metadata.php │ │ │ └── modal_options.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 │ │ │ ├── ContactController.php │ │ │ ├── ContactsController.php │ │ │ └── DisplayController.php │ │ ├── Field │ │ │ └── Modal │ │ │ │ └── ContactField.php │ │ ├── Helper │ │ │ └── ContactHelper.php │ │ ├── Model │ │ │ ├── ContactModel.php │ │ │ └── ContactsModel.php │ │ ├── Table │ │ │ └── ContactTable.php │ │ ├── View │ │ │ ├── Contact │ │ │ │ └── HtmlView.php │ │ │ └── Contacts │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── contact.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── contact.xml │ │ │ ├── fields │ │ │ │ └── mail.xml │ │ │ └── filter_contacts.xml │ │ ├── helpers │ │ │ ├── associations.php │ │ │ ├── contact.php │ │ │ └── html │ │ │ │ └── contact.php │ │ ├── sql │ │ │ ├── install.mysql.utf8.sql │ │ │ └── uninstall.mysql.utf8.sql │ │ └── tmpl │ │ │ ├── contact │ │ │ ├── edit.php │ │ │ ├── edit_associations.php │ │ │ ├── edit_metadata.php │ │ │ ├── edit_params.php │ │ │ ├── modal.php │ │ │ ├── modal_associations.php │ │ │ ├── modal_metadata.php │ │ │ └── modal_params.php │ │ │ └── contacts │ │ │ ├── default.php │ │ │ ├── default_batch.php │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ ├── com_content │ │ ├── Controller │ │ │ ├── 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 │ │ │ ├── filter_articles.xml │ │ │ └── filter_featured.xml │ │ ├── helpers │ │ │ ├── content.php │ │ │ └── preview.php │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── article │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ ├── edit_associations.php │ │ │ ├── edit_metadata.php │ │ │ ├── modal.php │ │ │ ├── modal_associations.php │ │ │ ├── modal_metadata.php │ │ │ └── pagebreak.php │ │ │ ├── articles │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ └── featured │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_contenthistory │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── HistoryController.php │ │ │ └── PreviewController.php │ │ ├── Helper │ │ │ └── ContenthistoryHelper.php │ │ ├── Model │ │ │ ├── CompareModel.php │ │ │ ├── HistoryModel.php │ │ │ └── PreviewModel.php │ │ ├── View │ │ │ ├── Compare │ │ │ │ └── HtmlView.php │ │ │ ├── History │ │ │ │ └── HtmlView.php │ │ │ └── Preview │ │ │ │ └── HtmlView.php │ │ ├── contenthistory.xml │ │ ├── dispatcher.php │ │ ├── helpers │ │ │ └── contenthistory.php │ │ └── tmpl │ │ │ ├── compare │ │ │ └── compare.php │ │ │ ├── history │ │ │ └── modal.php │ │ │ └── preview │ │ │ └── preview.php │ ├── com_cpanel │ │ ├── Controller │ │ │ └── DisplayController.php │ │ ├── View │ │ │ ├── Cpanel │ │ │ │ └── HtmlView.php │ │ │ ├── Help │ │ │ │ └── HtmlView.php │ │ │ └── System │ │ │ │ └── HtmlView.php │ │ ├── cpanel.xml │ │ ├── dispatcher.php │ │ └── tmpl │ │ │ ├── cpanel │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── help │ │ │ └── default.php │ │ │ └── system │ │ │ └── default.php │ ├── 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 │ │ ├── Field │ │ │ ├── FieldcontextsField.php │ │ │ ├── FieldgroupsField.php │ │ │ ├── Modal │ │ │ │ └── FieldField.php │ │ │ ├── SectionField.php │ │ │ └── TypeField.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 │ │ ├── dispatcher.php │ │ ├── fields.xml │ │ ├── forms │ │ │ ├── field.xml │ │ │ ├── filter_fields.xml │ │ │ ├── filter_groups.xml │ │ │ └── group.xml │ │ ├── helpers │ │ │ └── fields.php │ │ └── tmpl │ │ │ ├── field │ │ │ ├── edit.php │ │ │ ├── modal.php │ │ │ └── modal_options.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 │ │ ├── Field │ │ │ ├── BranchesField.php │ │ │ ├── ContentmapField.php │ │ │ ├── ContenttypesField.php │ │ │ └── SearchfilterField.php │ │ ├── Helper │ │ │ ├── FinderHelper.php │ │ │ └── FinderHelperLanguage.php │ │ ├── Model │ │ │ ├── FilterModel.php │ │ │ ├── FiltersModel.php │ │ │ ├── IndexModel.php │ │ │ ├── IndexerModel.php │ │ │ ├── MapsModel.php │ │ │ └── StatisticsModel.php │ │ ├── Table │ │ │ ├── FilterTable.php │ │ │ ├── LinkTable.php │ │ │ └── MapTable.php │ │ ├── View │ │ │ ├── Filter │ │ │ │ └── HtmlView.php │ │ │ ├── Filters │ │ │ │ └── HtmlView.php │ │ │ ├── Index │ │ │ │ └── HtmlView.php │ │ │ ├── Indexer │ │ │ │ └── HtmlView.php │ │ │ ├── Maps │ │ │ │ └── HtmlView.php │ │ │ └── Statistics │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── finder.php │ │ ├── finder.xml │ │ ├── forms │ │ │ ├── filter.xml │ │ │ ├── filter_filters.xml │ │ │ ├── filter_index.xml │ │ │ └── filter_maps.xml │ │ ├── helpers │ │ │ ├── html │ │ │ │ └── finder.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 │ │ │ └── language.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 │ │ │ └── statistics │ │ │ └── default.php │ ├── com_installer │ │ ├── Controller │ │ │ ├── DatabaseController.php │ │ │ ├── DiscoverController.php │ │ │ ├── DisplayController.php │ │ │ ├── InstallController.php │ │ │ ├── ManageController.php │ │ │ ├── UpdateController.php │ │ │ └── UpdatesitesController.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 │ │ ├── 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 │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_database.xml │ │ │ ├── filter_discover.xml │ │ │ ├── filter_languages.xml │ │ │ ├── filter_manage.xml │ │ │ ├── filter_update.xml │ │ │ └── filter_updatesites.xml │ │ ├── helpers │ │ │ ├── html │ │ │ │ ├── manage.php │ │ │ │ └── updatesites.php │ │ │ └── installer.php │ │ ├── installer.xml │ │ └── tmpl │ │ │ ├── database │ │ │ ├── default.php │ │ │ └── default.xml │ │ │ ├── discover │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ └── default_item.php │ │ │ ├── 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 │ │ ├── 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 │ │ ├── Helper │ │ │ ├── LanguagesHelper.php │ │ │ └── MultilangstatusHelper.php │ │ ├── Model │ │ │ ├── InstalledModel.php │ │ │ ├── LanguageModel.php │ │ │ ├── LanguagesModel.php │ │ │ ├── OverrideModel.php │ │ │ ├── OverridesModel.php │ │ │ └── StringsModel.php │ │ ├── View │ │ │ ├── Installed │ │ │ │ └── HtmlView.php │ │ │ ├── Language │ │ │ │ └── HtmlView.php │ │ │ ├── Languages │ │ │ │ └── HtmlView.php │ │ │ ├── Multilangstatus │ │ │ │ └── HtmlView.php │ │ │ ├── Override │ │ │ │ └── HtmlView.php │ │ │ └── Overrides │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_installed.xml │ │ │ ├── filter_languages.xml │ │ │ ├── language.xml │ │ │ └── override.xml │ │ ├── helpers │ │ │ └── html │ │ │ │ └── languages.php │ │ ├── languages.xml │ │ └── 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 │ │ ├── Model │ │ │ └── LoginModel.php │ │ ├── View │ │ │ └── Login │ │ │ │ └── HtmlView.php │ │ ├── dispatcher.php │ │ ├── login.xml │ │ └── tmpl │ │ │ └── login │ │ │ └── default.php │ ├── com_media │ │ ├── .babelrc │ │ ├── access.xml │ │ ├── config.xml │ │ ├── forms │ │ │ └── file.xml │ │ ├── layouts │ │ │ └── toolbar │ │ │ │ ├── create-folder.php │ │ │ │ ├── delete.php │ │ │ │ └── upload.php │ │ ├── media.xml │ │ ├── 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 │ │ │ ├── DisplayController.php │ │ │ ├── ItemController.php │ │ │ ├── ItemsController.php │ │ │ ├── MenuController.php │ │ │ └── MenusController.php │ │ ├── Extension │ │ │ └── MenusComponent.php │ │ ├── Field │ │ │ ├── ComponentscategoryField.php │ │ │ ├── MenuItemByTypeField.php │ │ │ ├── MenuParentField.php │ │ │ ├── MenuPresetField.php │ │ │ ├── MenuorderingField.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 │ │ │ ├── joomla.xml │ │ │ └── menu.xsd │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── item │ │ │ ├── edit.php │ │ │ ├── edit.xml │ │ │ ├── edit_associations.php │ │ │ ├── edit_container.php │ │ │ ├── edit_modules.php │ │ │ ├── edit_options.php │ │ │ ├── modal.php │ │ │ ├── modal_associations.php │ │ │ └── modal_options.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 │ │ ├── Field │ │ │ ├── MessageStatesField.php │ │ │ └── UserMessagesField.php │ │ ├── Helper │ │ │ └── MessagesHelper.php │ │ ├── Model │ │ │ ├── ConfigModel.php │ │ │ ├── MessageModel.php │ │ │ └── MessagesModel.php │ │ ├── Table │ │ │ └── MessageTable.php │ │ ├── View │ │ │ ├── Config │ │ │ │ └── HtmlView.php │ │ │ ├── Message │ │ │ │ └── HtmlView.php │ │ │ └── Messages │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── config.xml │ │ │ ├── filter_messages.xml │ │ │ └── message.xml │ │ ├── helpers │ │ │ └── html │ │ │ │ └── messages.php │ │ ├── messages.xml │ │ └── 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 │ │ ├── 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 │ │ │ └── toolbar │ │ │ │ ├── cancelselect.php │ │ │ │ └── newmodule.php │ │ ├── modules.xml │ │ ├── services │ │ │ └── provider.php │ │ └── tmpl │ │ │ ├── module │ │ │ ├── edit.php │ │ │ ├── edit_assignment.php │ │ │ ├── edit_options.php │ │ │ ├── edit_positions.php │ │ │ └── modal.php │ │ │ ├── modules │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ │ │ └── select │ │ │ └── default.php │ ├── com_newsfeeds │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── NewsfeedController.php │ │ │ └── NewsfeedsController.php │ │ ├── Field │ │ │ ├── Modal │ │ │ │ └── NewsfeedField.php │ │ │ └── NewsfeedsField.php │ │ ├── Helper │ │ │ └── NewsfeedsHelper.php │ │ ├── Model │ │ │ ├── NewsfeedModel.php │ │ │ └── NewsfeedsModel.php │ │ ├── Table │ │ │ └── NewsfeedTable.php │ │ ├── View │ │ │ ├── Newsfeed │ │ │ │ └── HtmlView.php │ │ │ └── Newsfeeds │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_newsfeeds.xml │ │ │ └── newsfeed.xml │ │ ├── helpers │ │ │ ├── associations.php │ │ │ ├── html │ │ │ │ └── newsfeed.php │ │ │ └── newsfeeds.php │ │ ├── newsfeeds.xml │ │ ├── sql │ │ │ ├── install.mysql.utf8.sql │ │ │ └── uninstall.mysql.utf8.sql │ │ └── tmpl │ │ │ ├── newsfeed │ │ │ ├── edit.php │ │ │ ├── edit_associations.php │ │ │ ├── edit_display.php │ │ │ ├── edit_metadata.php │ │ │ ├── edit_params.php │ │ │ ├── modal.php │ │ │ ├── modal_associations.php │ │ │ ├── modal_display.php │ │ │ ├── modal_metadata.php │ │ │ └── modal_params.php │ │ │ └── newsfeeds │ │ │ ├── default.php │ │ │ ├── default_batch_body.php │ │ │ ├── default_batch_footer.php │ │ │ └── modal.php │ ├── com_plugins │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── PluginController.php │ │ │ └── PluginsController.php │ │ ├── Field │ │ │ ├── PluginTypeField.php │ │ │ └── PluginorderingField.php │ │ ├── Helper │ │ │ └── PluginsHelper.php │ │ ├── Model │ │ │ ├── PluginModel.php │ │ │ └── PluginsModel.php │ │ ├── View │ │ │ ├── Plugin │ │ │ │ └── HtmlView.php │ │ │ └── Plugins │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_plugins.xml │ │ │ └── plugin.xml │ │ ├── helpers │ │ │ └── plugins.php │ │ ├── plugins.xml │ │ └── tmpl │ │ │ ├── plugin │ │ │ ├── edit.php │ │ │ ├── edit_options.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 │ │ ├── dispatcher.php │ │ ├── postinstall.xml │ │ └── tmpl │ │ │ └── messages │ │ │ ├── default.php │ │ │ └── default.xml │ ├── com_redirect │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ ├── LinkController.php │ │ │ └── LinksController.php │ │ ├── Field │ │ │ └── RedirectField.php │ │ ├── Helper │ │ │ └── RedirectHelper.php │ │ ├── Model │ │ │ ├── LinkModel.php │ │ │ └── LinksModel.php │ │ ├── Table │ │ │ └── LinkTable.php │ │ ├── View │ │ │ ├── Link │ │ │ │ └── HtmlView.php │ │ │ └── Links │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_links.xml │ │ │ └── link.xml │ │ ├── helpers │ │ │ ├── html │ │ │ │ └── redirect.php │ │ │ └── redirect.php │ │ ├── layouts │ │ │ └── toolbar │ │ │ │ └── batch.php │ │ ├── redirect.xml │ │ └── tmpl │ │ │ ├── link │ │ │ └── edit.php │ │ │ └── links │ │ │ ├── default.php │ │ │ ├── default.xml │ │ │ ├── default_addform.php │ │ │ ├── default_batch_body.php │ │ │ └── default_batch_footer.php │ ├── com_search │ │ ├── Controller │ │ │ ├── DisplayController.php │ │ │ └── SearchesController.php │ │ ├── Helper │ │ │ └── SearchHelper.php │ │ ├── Model │ │ │ └── SearchesModel.php │ │ ├── View │ │ │ └── Searches │ │ │ │ └── HtmlView.php │ │ ├── access.xml │ │ ├── config.xml │ │ ├── dispatcher.php │ │ ├── forms │ │ │ └── filter_searches.xml │ │ ├── helpers │ │ │ ├── search.php │ │ │ └── site.php │ │ ├── search.xml │ │ ├── tmpl │ │ │ └── searches │ │ │ │ └── default.php │ │ └── views │ │ │ └── searches │ │ │ └── tmpl │ │ │ └── default.xml │ ├── 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 │ │ ├── dispatcher.php │ │ ├── forms │ │ │ ├── filter_tags.xml │ │ │ └── tag.xml │ │ ├── tags.xml │ │ ├── tmpl │ │ │ ├── tag │ │ │ │ ├── edit.php │ │ │ │ ├── edit_metadata.php │ │ │ │ └── edit_options.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 │ │ │ └── edit_options.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 │ │ │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── dispatcher.php │ │ ├── forms │ │ ├── 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 │ │ ├── html │ │ │ └── users.php │ │ └── users.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 ├── help │ ├── en-GB │ │ └── toc.json │ └── helpsites.xml ├── includes │ ├── app.php │ ├── defines.php │ └── framework.php ├── index.php ├── language │ ├── en-GB │ │ ├── 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_redirect.ini │ │ ├── en-GB.com_redirect.sys.ini │ │ ├── en-GB.com_search.ini │ │ ├── en-GB.com_search.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_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_latest.ini │ │ ├── en-GB.mod_latest.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_menu.ini │ │ ├── en-GB.mod_menu.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_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_status.ini │ │ ├── en-GB.mod_status.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_version.ini │ │ ├── en-GB.mod_version.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_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_joomla.ini │ │ ├── en-GB.plg_extension_joomla.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_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_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_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_phpversioncheck.ini │ │ ├── en-GB.plg_quickicon_phpversioncheck.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_search_categories.ini │ │ ├── en-GB.plg_search_categories.sys.ini │ │ ├── en-GB.plg_search_contacts.ini │ │ ├── en-GB.plg_search_contacts.sys.ini │ │ ├── en-GB.plg_search_content.ini │ │ ├── en-GB.plg_search_content.sys.ini │ │ ├── en-GB.plg_search_newsfeeds.ini │ │ ├── en-GB.plg_search_newsfeeds.sys.ini │ │ ├── en-GB.plg_search_tags.ini │ │ ├── en-GB.plg_search_tags.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_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_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.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_latest │ │ ├── Helper │ │ │ └── ModLatestHelper.php │ │ ├── mod_latest.php │ │ ├── mod_latest.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_menu │ │ ├── Helper │ │ │ └── MenuHelper.php │ │ ├── Menu │ │ │ ├── CssMenu.php │ │ │ └── MenuNode.php │ │ ├── mod_menu.php │ │ ├── mod_menu.xml │ │ └── tmpl │ │ │ ├── default.php │ │ │ └── default_submenu.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_quickicon │ │ ├── Event │ │ │ └── QuickIconsEvent.php │ │ ├── Helper │ │ │ └── QuickIconHelper.php │ │ ├── mod_quickicon.php │ │ ├── mod_quickicon.xml │ │ └── 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_status │ │ ├── mod_status.php │ │ ├── mod_status.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_version │ │ ├── Helper │ │ └── VersionHelper.php │ │ ├── mod_version.php │ │ ├── mod_version.xml │ │ └── tmpl │ │ └── default.php └── templates │ ├── atum │ ├── component.php │ ├── cpanel.php │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── template-rtl.css │ │ ├── template-rtl.css.map │ │ ├── template-rtl.min.css │ │ ├── template.css │ │ ├── template.css.map │ │ └── template.min.css │ ├── error.php │ ├── error_full.php │ ├── error_login.php │ ├── favicon.ico │ ├── html │ │ ├── editor_content.css │ │ ├── editor_content.min.css │ │ ├── modules.php │ │ └── pagination.php │ ├── images │ │ ├── joomla-pattern.svg │ │ ├── logo-blue.svg │ │ ├── logo-joomla-white.svg │ │ └── logo.svg │ ├── index.php │ ├── js │ │ └── template.min.js │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.tpl_atum.ini │ │ │ └── en-GB.tpl_atum.sys.ini │ ├── login.php │ ├── scss │ │ ├── _variables.scss │ │ ├── blocks │ │ │ ├── _alerts.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _header.scss │ │ │ ├── _icons.scss │ │ │ ├── _iframe.scss │ │ │ ├── _login.scss │ │ │ ├── _modals.scss │ │ │ ├── _quickicons.scss │ │ │ ├── _searchtools.scss │ │ │ ├── _sidebar-nav.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _toolbar.scss │ │ │ ├── _treeselect.scss │ │ │ └── _utilities.scss │ │ ├── bootstrap.scss │ │ ├── font-awesome.scss │ │ ├── pages │ │ │ ├── _com_config.scss │ │ │ ├── _com_cpanel.scss │ │ │ ├── _com_templates.scss │ │ │ └── _com_users.scss │ │ ├── scss-lint-report.xml │ │ ├── template-rtl.scss │ │ ├── template.scss │ │ └── vendor │ │ │ ├── _awesomplete.scss │ │ │ ├── _chosen.scss │ │ │ ├── _dragula.scss │ │ │ ├── _minicolors.scss │ │ │ ├── _tinymce.scss │ │ │ └── bootstrap │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _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 │ └── system │ ├── component.php │ ├── css │ ├── error.css │ └── system.css │ ├── error.php │ ├── html │ └── modules.php │ ├── images │ └── calendar.png │ └── index.php ├── appveyor-phpunit.xml ├── 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 │ │ └── default_positions.php │ │ └── templates │ │ ├── default.php │ │ ├── default.xml │ │ └── default_options.php ├── com_contact │ ├── Controller │ │ ├── ContactController.php │ │ └── DisplayController.php │ ├── Helper │ │ └── Route.php │ ├── Model │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ ├── ContactModel.php │ │ └── FeaturedModel.php │ ├── Rule │ │ ├── ContactEmailMessageRule.php │ │ ├── ContactEmailRule.php │ │ └── ContactEmailSubjectRule.php │ ├── View │ │ ├── Categories │ │ │ └── HtmlView.php │ │ ├── Category │ │ │ ├── FeedView.php │ │ │ └── HtmlView.php │ │ ├── Contact │ │ │ ├── HtmlView.php │ │ │ └── VcfView.php │ │ └── Featured │ │ │ └── HtmlView.php │ ├── dispatcher.php │ ├── forms │ │ ├── contact.xml │ │ └── filter_contacts.xml │ ├── helpers │ │ ├── association.php │ │ ├── category.php │ │ └── route.php │ ├── layouts │ │ ├── field │ │ │ └── render.php │ │ ├── fields │ │ │ └── render.php │ │ └── joomla │ │ │ └── form │ │ │ └── renderfield.php │ ├── router.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 │ ├── Model │ │ ├── ArchiveModel.php │ │ ├── ArticleModel.php │ │ ├── ArticlesModel.php │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ ├── FeaturedModel.php │ │ └── FormModel.php │ ├── Service │ │ └── Category.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 │ │ └── route.php │ ├── router.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 │ └── dispatcher.php ├── com_csp │ └── Controller │ │ └── ReportController.php ├── com_fields │ ├── Controller │ │ └── DisplayController.php │ ├── dispatcher.php │ ├── fields.php │ ├── forms │ │ └── filter_fields.xml │ └── layouts │ │ ├── field │ │ └── render.php │ │ └── fields │ │ └── render.php ├── com_finder │ ├── Controller │ │ ├── DisplayController.php │ │ └── SuggestionsController.php │ ├── Model │ │ ├── SearchModel.php │ │ └── SuggestionsModel.php │ ├── View │ │ └── Search │ │ │ ├── FeedView.php │ │ │ ├── HtmlView.php │ │ │ └── OpensearchView.php │ ├── dispatcher.php │ ├── helpers │ │ ├── html │ │ │ ├── filter.php │ │ │ └── query.php │ │ └── route.php │ ├── router.php │ └── tmpl │ │ └── search │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_form.php │ │ ├── default_result.php │ │ └── default_results.php ├── com_mailto │ ├── Controller │ │ └── DisplayController.php │ ├── Helper │ │ └── MailtoHelper.php │ ├── View │ │ ├── Mailto │ │ │ └── HtmlView.php │ │ └── Sent │ │ │ └── HtmlView.php │ ├── dispatcher.php │ ├── helpers │ │ └── mailto.php │ ├── mailto.xml │ └── tmpl │ │ ├── mailto │ │ └── default.php │ │ └── sent │ │ └── default.php ├── com_media │ └── 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 │ │ └── Route.php │ ├── Model │ │ ├── CategoriesModel.php │ │ ├── CategoryModel.php │ │ └── NewsfeedModel.php │ ├── View │ │ ├── Categories │ │ │ └── HtmlView.php │ │ ├── Category │ │ │ └── HtmlView.php │ │ └── Newsfeed │ │ │ └── HtmlView.php │ ├── dispatcher.php │ ├── helpers │ │ ├── association.php │ │ ├── category.php │ │ └── route.php │ ├── router.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_search │ ├── Controller │ │ └── DisplayController.php │ ├── Model │ │ └── SearchModel.php │ ├── View │ │ └── Search │ │ │ ├── HtmlView.php │ │ │ └── OpensearchView.php │ ├── dispatcher.php │ ├── router.php │ └── tmpl │ │ └── search │ │ ├── default.php │ │ ├── default.xml │ │ ├── default_error.php │ │ ├── default_form.php │ │ └── default_results.php ├── 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 │ ├── dispatcher.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 │ ├── View │ │ ├── Login │ │ │ └── HtmlView.php │ │ ├── Profile │ │ │ └── HtmlView.php │ │ ├── Registration │ │ │ └── HtmlView.php │ │ ├── Remind │ │ │ └── HtmlView.php │ │ └── Reset │ │ │ └── HtmlView.php │ ├── dispatcher.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 │ ├── helpers │ │ ├── html │ │ │ └── users.php │ │ └── route.php │ ├── router.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 │ ├── dispatcher.php │ ├── router.php │ ├── tmpl │ │ └── wrapper │ │ │ ├── default.php │ │ │ └── default.xml │ └── wrapper.xml └── index.html ├── composer.json ├── composer.lock ├── dev └── assets │ └── index.html ├── 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 │ │ └── sample_testing.sql │ └── postgresql │ │ ├── joomla.sql │ │ └── sample_testing.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 │ │ │ │ └── SampleField.php │ │ └── Rule │ │ │ └── PrefixRule.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 │ ├── css │ │ ├── template.css │ │ ├── template.css.map │ │ └── template_rtl.css │ ├── error.php │ ├── images │ │ ├── joomla.png │ │ └── logo.svg │ ├── index.php │ ├── js │ │ ├── preinstall.js │ │ ├── remove.js │ │ ├── setup.js │ │ └── template.js │ ├── message.php │ └── 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.ini │ ├── en-GB.com_mailto.ini │ ├── en-GB.com_media.ini │ ├── en-GB.com_messages.ini │ ├── en-GB.com_newsfeeds.ini │ ├── en-GB.com_search.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_search.ini │ ├── en-GB.mod_search.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 ├── index.html ├── joomla │ ├── button │ │ ├── action-button.php │ │ └── iconclass.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 │ │ │ ├── email.php │ │ │ ├── print_popup.php │ │ │ └── print_screen.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 │ │ ├── item_title.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 │ │ │ ├── calendar.php │ │ │ ├── checkboxes.php │ │ │ ├── color │ │ │ │ ├── advanced.php │ │ │ │ └── simple.php │ │ │ ├── combo.php │ │ │ ├── contenthistory.php │ │ │ ├── email.php │ │ │ ├── file.php │ │ │ ├── hidden.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 │ │ │ ├── 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 │ │ └── treeprefix.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 │ │ ├── slider.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 │ └── user │ └── profile │ └── fields │ └── dob.php ├── libraries ├── .htaccess ├── bootstrap.php ├── classmap.php ├── cms.php ├── cms │ ├── class │ │ └── loader.php │ └── html │ │ ├── access.php │ │ ├── actionsdropdown.php │ │ ├── adminlanguage.php │ │ ├── batch.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 │ │ ├── language │ │ └── en-GB │ │ │ └── en-GB.jhtmldate.ini │ │ ├── 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 ├── 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 │ │ ├── genericdataexception.php │ │ ├── html.php │ │ └── view.php ├── loader.php ├── namespacemap.php ├── php-encryption │ └── Crypto.php ├── phpass │ └── PasswordHash.php ├── src │ ├── Access │ │ ├── Access.php │ │ ├── Exception │ │ │ └── NotAllowed.php │ │ ├── Rule.php │ │ └── Rules.php │ ├── Application │ │ ├── AdministratorApplication.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 │ │ ├── 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 │ │ │ ├── BCryptHandler.php │ │ │ ├── ChainedHandler.php │ │ │ ├── CheckIfRehashNeededHandlerInterface.php │ │ │ ├── MD5Handler.php │ │ │ ├── PHPassHandler.php │ │ │ └── SHA256Handler.php │ ├── Button │ │ ├── ActionButton.php │ │ └── PublishedButton.php │ ├── Cache │ │ ├── Cache.php │ │ ├── CacheController.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 │ │ ├── CategoriesServiceInterface.php │ │ ├── CategoriesServiceTrait.php │ │ ├── CategoryNode.php │ │ └── SectionNotFoundException.php │ ├── Client │ │ ├── ClientHelper.php │ │ ├── ClientWrapper.php │ │ └── FtpClient.php │ ├── Component │ │ ├── ComponentHelper.php │ │ ├── ComponentRecord.php │ │ ├── Exception │ │ │ └── MissingComponentException.php │ │ └── Router │ │ │ ├── RouterBase.php │ │ │ ├── RouterInterface.php │ │ │ ├── RouterLegacy.php │ │ │ ├── RouterView.php │ │ │ ├── RouterViewConfiguration.php │ │ │ └── Rules │ │ │ ├── MenuRules.php │ │ │ ├── NomenuRules.php │ │ │ ├── RulesInterface.php │ │ │ └── StandardRules.php │ ├── Console │ │ ├── CheckUpdatesCommand.php │ │ ├── CleanCacheCommand.php │ │ ├── RemoveOldFilesCommand.php │ │ └── SessionGcCommand.php │ ├── Crypt │ │ ├── Cipher │ │ │ ├── CryptoCipher.php │ │ │ └── SodiumCipher.php │ │ └── Crypt.php │ ├── Date │ │ └── Date.php │ ├── Dispatcher │ │ ├── Dispatcher.php │ │ ├── DispatcherFactory.php │ │ ├── DispatcherFactoryInterface.php │ │ ├── DispatcherInterface.php │ │ └── LegacyDispatcher.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 │ │ ├── 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 │ │ ├── Renderer │ │ │ ├── CliRenderer.php │ │ │ ├── FeedRenderer.php │ │ │ ├── HtmlRenderer.php │ │ │ ├── JsonRenderer.php │ │ │ └── XmlRenderer.php │ │ └── RendererInterface.php │ ├── Event │ │ ├── AbstractEvent.php │ │ ├── AbstractImmutableEvent.php │ │ ├── AfterExtensionBootEvent.php │ │ ├── BeforeExecuteEvent.php │ │ ├── BeforeExtensionBootEvent.php │ │ ├── ErrorEvent.php │ │ ├── GenericEvent.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 │ ├── Exception │ │ └── ExceptionHandler.php │ ├── Extension │ │ ├── BootableExtensionInterface.php │ │ ├── Component.php │ │ ├── ComponentInterface.php │ │ ├── ExtensionHelper.php │ │ ├── ExtensionManagerInterface.php │ │ ├── ExtensionManagerTrait.php │ │ ├── LegacyComponent.php │ │ ├── MVCComponent.php │ │ └── Service │ │ │ └── Provider │ │ │ ├── DispatcherFactory.php │ │ │ └── MVCFactoryFactory.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 │ │ └── Wrapper │ │ │ ├── FileWrapper.php │ │ │ ├── FolderWrapper.php │ │ │ └── PathWrapper.php │ ├── Filter │ │ ├── InputFilter.php │ │ ├── OutputFilter.php │ │ └── Wrapper │ │ │ └── OutputFilterWrapper.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 │ │ │ ├── UrlField.php │ │ │ ├── UserField.php │ │ │ ├── UseractiveField.php │ │ │ ├── UsergroupField.php │ │ │ ├── UsergrouplistField.php │ │ │ └── UserstateField.php │ │ ├── Form.php │ │ ├── FormFactory.php │ │ ├── FormFactoryAwareInterface.php │ │ ├── FormFactoryAwareTrait.php │ │ ├── FormFactoryInterface.php │ │ ├── FormField.php │ │ ├── FormHelper.php │ │ ├── FormRule.php │ │ ├── FormWrapper.php │ │ └── Rule │ │ │ ├── BooleanRule.php │ │ │ ├── CalendarRule.php │ │ │ ├── CaptchaRule.php │ │ │ ├── ColorRule.php │ │ │ ├── EmailRule.php │ │ │ ├── EqualsRule.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 │ │ ├── SearchHelper.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 │ │ ├── Language.php │ │ ├── LanguageHelper.php │ │ ├── LanguageStemmer.php │ │ ├── Multilanguage.php │ │ ├── Stemmer │ │ │ └── Porteren.php │ │ ├── Text.php │ │ ├── Transliterate.php │ │ └── Wrapper │ │ │ ├── JTextWrapper.php │ │ │ ├── LanguageHelperWrapper.php │ │ │ └── TransliterateWrapper.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 │ │ │ ├── BaseController.php │ │ │ ├── ControllerInterface.php │ │ │ └── FormController.php │ │ ├── Factory │ │ │ ├── LegacyFactory.php │ │ │ ├── MVCFactory.php │ │ │ ├── MVCFactoryFactory.php │ │ │ ├── MVCFactoryFactoryInterface.php │ │ │ ├── MVCFactoryInterface.php │ │ │ ├── MVCFactoryServiceInterface.php │ │ │ └── MVCFactoryServiceTrait.php │ │ ├── Model │ │ │ ├── AdminModel.php │ │ │ ├── BaseDatabaseModel.php │ │ │ ├── FormModel.php │ │ │ ├── ItemModel.php │ │ │ └── ListModel.php │ │ └── View │ │ │ ├── AbstractView.php │ │ │ ├── CategoriesView.php │ │ │ ├── CategoryFeedView.php │ │ │ ├── CategoryView.php │ │ │ ├── FormView.php │ │ │ ├── HtmlView.php │ │ │ └── ListView.php │ ├── Mail │ │ ├── Mail.php │ │ ├── MailHelper.php │ │ └── language │ │ │ └── phpmailer.lang-en_gb.php │ ├── Menu │ │ ├── AbstractMenu.php │ │ ├── AdministratorMenu.php │ │ ├── MenuFactory.php │ │ ├── MenuFactoryInterface.php │ │ ├── MenuHelper.php │ │ ├── MenuItem.php │ │ ├── Node.php │ │ ├── Node │ │ │ ├── Component.php │ │ │ ├── Container.php │ │ │ ├── Heading.php │ │ │ ├── Separator.php │ │ │ └── Url.php │ │ ├── SiteMenu.php │ │ └── Tree.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 │ │ ├── Exception │ │ │ └── RouteNotFoundException.php │ │ ├── Route.php │ │ ├── Router.php │ │ └── SiteRouter.php │ ├── Schema │ │ ├── ChangeItem.php │ │ ├── ChangeItem │ │ │ ├── MysqlChangeItem.php │ │ │ ├── PostgresqlChangeItem.php │ │ │ └── SqlsrvChangeItem.php │ │ └── ChangeSet.php │ ├── Service │ │ └── Provider │ │ │ ├── Application.php │ │ │ ├── Authentication.php │ │ │ ├── Config.php │ │ │ ├── Console.php │ │ │ ├── Database.php │ │ │ ├── Dispatcher.php │ │ │ ├── Document.php │ │ │ ├── Form.php │ │ │ ├── HTMLRegistry.php │ │ │ ├── Logger.php │ │ │ ├── Menu.php │ │ │ ├── Pathway.php │ │ │ ├── Session.php │ │ │ └── Toolbar.php │ ├── Session │ │ ├── Exception │ │ │ └── UnsupportedStorageException.php │ │ ├── Session.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 │ │ │ ├── SliderButton.php │ │ │ └── StandardButton.php │ │ ├── ContainerAwareToolbarFactory.php │ │ ├── CoreButtonsTrait.php │ │ ├── Toolbar.php │ │ ├── ToolbarButton.php │ │ ├── ToolbarFactoryInterface.php │ │ └── ToolbarHelper.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 │ │ ├── UserHelper.php │ │ └── UserWrapper.php │ ├── Utility │ │ ├── BufferStreamHandler.php │ │ └── Utility.php │ └── Version.php ├── vendor │ ├── .htaccess │ ├── autoload.php │ ├── bin │ │ └── generate-defuse-key │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── ca-bundle │ │ │ ├── LICENSE │ │ │ ├── res │ │ │ │ └── cacert.pem │ │ │ └── src │ │ │ │ └── CaBundle.php │ │ └── installed.json │ ├── defuse │ │ └── php-encryption │ │ │ ├── LICENSE │ │ │ ├── bin │ │ │ └── generate-defuse-key │ │ │ └── src │ │ │ ├── Core.php │ │ │ ├── Crypto.php │ │ │ ├── DerivedKeys.php │ │ │ ├── Encoding.php │ │ │ ├── Exception │ │ │ ├── BadFormatException.php │ │ │ ├── CryptoException.php │ │ │ ├── EnvironmentIsBrokenException.php │ │ │ ├── IOException.php │ │ │ └── WrongKeyOrModifiedCiphertextException.php │ │ │ ├── File.php │ │ │ ├── Key.php │ │ │ ├── KeyOrPassword.php │ │ │ ├── KeyProtectedByPassword.php │ │ │ └── RuntimeTests.php │ ├── doctrine │ │ └── inflector │ │ │ ├── LICENSE │ │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── fig │ │ └── link-util │ │ │ ├── LICENSE.md │ │ │ └── src │ │ │ ├── EvolvableLinkProviderTrait.php │ │ │ ├── EvolvableLinkTrait.php │ │ │ ├── GenericLinkProvider.php │ │ │ ├── Link.php │ │ │ ├── LinkProviderTrait.php │ │ │ ├── LinkTrait.php │ │ │ └── TemplatedHrefTrait.php │ ├── google │ │ └── recaptcha │ │ │ ├── LICENSE │ │ │ └── src │ │ │ ├── ReCaptcha │ │ │ ├── ReCaptcha.php │ │ │ ├── RequestMethod.php │ │ │ ├── RequestMethod │ │ │ │ ├── Curl.php │ │ │ │ ├── CurlPost.php │ │ │ │ ├── Post.php │ │ │ │ ├── Socket.php │ │ │ │ └── SocketPost.php │ │ │ ├── RequestParameters.php │ │ │ └── Response.php │ │ │ └── autoload.php │ ├── joomla │ │ ├── application │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractApplication.php │ │ │ │ ├── AbstractWebApplication.php │ │ │ │ ├── ApplicationEvents.php │ │ │ │ ├── Controller │ │ │ │ ├── ContainerControllerResolver.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ └── ControllerResolverInterface.php │ │ │ │ ├── Event │ │ │ │ ├── ApplicationErrorEvent.php │ │ │ │ └── ApplicationEvent.php │ │ │ │ ├── Exception │ │ │ │ └── UnableToWriteBody.php │ │ │ │ ├── Web │ │ │ │ └── WebClient.php │ │ │ │ └── WebApplication.php │ │ ├── archive │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Archive.php │ │ │ │ ├── Bzip2.php │ │ │ │ ├── ExtractableInterface.php │ │ │ │ ├── Gzip.php │ │ │ │ ├── Tar.php │ │ │ │ └── Zip.php │ │ ├── authentication │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractUsernamePasswordAuthenticationStrategy.php │ │ │ │ ├── Authentication.php │ │ │ │ ├── AuthenticationStrategyInterface.php │ │ │ │ ├── Password │ │ │ │ ├── Argon2iHandler.php │ │ │ │ ├── BCryptHandler.php │ │ │ │ └── HandlerInterface.php │ │ │ │ └── Strategies │ │ │ │ ├── DatabaseStrategy.php │ │ │ │ └── LocalStrategy.php │ │ ├── console │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractCommand.php │ │ │ │ ├── Application.php │ │ │ │ ├── Command │ │ │ │ ├── HelpCommand.php │ │ │ │ └── ListCommand.php │ │ │ │ ├── CommandInterface.php │ │ │ │ ├── ConsoleEvents.php │ │ │ │ ├── Descriptor │ │ │ │ ├── ApplicationDescription.php │ │ │ │ └── TextDescriptor.php │ │ │ │ ├── Event │ │ │ │ ├── BeforeCommandExecuteEvent.php │ │ │ │ ├── ConsoleErrorEvent.php │ │ │ │ ├── ConsoleEvent.php │ │ │ │ └── TerminateEvent.php │ │ │ │ ├── Helper │ │ │ │ └── DescriptorHelper.php │ │ │ │ ├── Input │ │ │ │ └── JoomlaInput.php │ │ │ │ └── Loader │ │ │ │ ├── ContainerLoader.php │ │ │ │ └── LoaderInterface.php │ │ ├── controller │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractController.php │ │ │ │ └── ControllerInterface.php │ │ ├── crypt │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Cipher │ │ │ │ ├── Crypto.php │ │ │ │ ├── OpenSSL.php │ │ │ │ └── Sodium.php │ │ │ │ ├── CipherInterface.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── Exception │ │ │ │ └── InvalidKeyTypeException.php │ │ │ │ └── Key.php │ │ ├── data │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── DataObject.php │ │ │ │ ├── DataSet.php │ │ │ │ └── DumpableInterface.php │ │ ├── database │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── DatabaseDriver.php │ │ │ │ ├── DatabaseEvents.php │ │ │ │ ├── DatabaseExporter.php │ │ │ │ ├── DatabaseFactory.php │ │ │ │ ├── DatabaseImporter.php │ │ │ │ ├── DatabaseInterface.php │ │ │ │ ├── DatabaseIterator.php │ │ │ │ ├── DatabaseQuery.php │ │ │ │ ├── Event │ │ │ │ └── ConnectionEvent.php │ │ │ │ ├── Exception │ │ │ │ ├── ConnectionFailureException.php │ │ │ │ ├── ExecutionFailureException.php │ │ │ │ ├── PrepareStatementFailureException.php │ │ │ │ └── UnsupportedAdapterException.php │ │ │ │ ├── FetchMode.php │ │ │ │ ├── FetchOrientation.php │ │ │ │ ├── Monitor │ │ │ │ ├── ChainedMonitor.php │ │ │ │ └── LoggingMonitor.php │ │ │ │ ├── Mysql │ │ │ │ ├── MysqlDriver.php │ │ │ │ ├── MysqlExporter.php │ │ │ │ ├── MysqlImporter.php │ │ │ │ └── MysqlQuery.php │ │ │ │ ├── Mysqli │ │ │ │ ├── MysqliDriver.php │ │ │ │ ├── MysqliExporter.php │ │ │ │ ├── MysqliImporter.php │ │ │ │ ├── MysqliQuery.php │ │ │ │ └── MysqliStatement.php │ │ │ │ ├── ParameterType.php │ │ │ │ ├── Pdo │ │ │ │ ├── PdoDriver.php │ │ │ │ ├── PdoQuery.php │ │ │ │ └── PdoStatement.php │ │ │ │ ├── Pgsql │ │ │ │ ├── PgsqlDriver.php │ │ │ │ ├── PgsqlExporter.php │ │ │ │ ├── PgsqlImporter.php │ │ │ │ └── PgsqlQuery.php │ │ │ │ ├── Query │ │ │ │ ├── LimitableInterface.php │ │ │ │ ├── MysqlQueryBuilder.php │ │ │ │ ├── PostgresqlQueryBuilder.php │ │ │ │ ├── PreparableInterface.php │ │ │ │ └── QueryElement.php │ │ │ │ ├── QueryInterface.php │ │ │ │ ├── QueryMonitorInterface.php │ │ │ │ ├── Service │ │ │ │ └── DatabaseProvider.php │ │ │ │ ├── Sqlazure │ │ │ │ ├── SqlazureDriver.php │ │ │ │ └── SqlazureQuery.php │ │ │ │ ├── Sqlite │ │ │ │ ├── SqliteDriver.php │ │ │ │ └── SqliteQuery.php │ │ │ │ ├── Sqlsrv │ │ │ │ ├── SqlsrvDriver.php │ │ │ │ ├── SqlsrvQuery.php │ │ │ │ └── SqlsrvStatement.php │ │ │ │ ├── StatementInterface.php │ │ │ │ └── UTF8MB4SupportInterface.php │ │ ├── di │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Container.php │ │ │ │ ├── ContainerAwareInterface.php │ │ │ │ ├── ContainerAwareTrait.php │ │ │ │ ├── Exception │ │ │ │ ├── ContainerNotFoundException.php │ │ │ │ ├── DependencyResolutionException.php │ │ │ │ ├── KeyNotFoundException.php │ │ │ │ └── ProtectedKeyException.php │ │ │ │ ├── Resource.php │ │ │ │ └── ServiceProviderInterface.php │ │ ├── event │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractEvent.php │ │ │ │ ├── DelegatingDispatcher.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── DispatcherAwareInterface.php │ │ │ │ ├── DispatcherAwareTrait.php │ │ │ │ ├── DispatcherInterface.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventImmutable.php │ │ │ │ ├── EventInterface.php │ │ │ │ ├── ListenersPriorityQueue.php │ │ │ │ ├── Priority.php │ │ │ │ └── SubscriberInterface.php │ │ ├── filesystem │ │ │ ├── LICENSE │ │ │ ├── meta │ │ │ │ └── language │ │ │ │ │ └── en-GB │ │ │ │ │ └── en-GB.lib_joomla_filesystem_patcher.ini │ │ │ └── src │ │ │ │ ├── Buffer.php │ │ │ │ ├── Clients │ │ │ │ └── FtpClient.php │ │ │ │ ├── Exception │ │ │ │ └── FilesystemException.php │ │ │ │ ├── File.php │ │ │ │ ├── Folder.php │ │ │ │ ├── Helper.php │ │ │ │ ├── Patcher.php │ │ │ │ ├── Path.php │ │ │ │ ├── Stream.php │ │ │ │ ├── Stream │ │ │ │ ├── String.php │ │ │ │ └── StringWrapper.php │ │ │ │ └── Support │ │ │ │ └── StringController.php │ │ ├── filter │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── InputFilter.php │ │ │ │ └── OutputFilter.php │ │ ├── http │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractTransport.php │ │ │ │ ├── Exception │ │ │ │ ├── InvalidResponseCodeException.php │ │ │ │ └── UnexpectedResponseException.php │ │ │ │ ├── Http.php │ │ │ │ ├── HttpFactory.php │ │ │ │ ├── Response.php │ │ │ │ ├── Transport │ │ │ │ ├── Curl.php │ │ │ │ ├── Socket.php │ │ │ │ └── Stream.php │ │ │ │ └── TransportInterface.php │ │ ├── image │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Filter │ │ │ │ ├── Backgroundfill.php │ │ │ │ ├── Brightness.php │ │ │ │ ├── Contrast.php │ │ │ │ ├── Edgedetect.php │ │ │ │ ├── Emboss.php │ │ │ │ ├── Grayscale.php │ │ │ │ ├── Negate.php │ │ │ │ ├── Sketchy.php │ │ │ │ └── Smooth.php │ │ │ │ ├── Image.php │ │ │ │ └── ImageFilter.php │ │ ├── input │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Cli.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Files.php │ │ │ │ ├── Input.php │ │ │ │ └── Json.php │ │ ├── ldap │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ └── LdapClient.php │ │ ├── oauth1 │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ └── Client.php │ │ ├── oauth2 │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ └── Client.php │ │ ├── registry │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Factory.php │ │ │ │ ├── Format │ │ │ │ ├── Ini.php │ │ │ │ ├── Json.php │ │ │ │ ├── Php.php │ │ │ │ ├── Xml.php │ │ │ │ └── Yaml.php │ │ │ │ ├── FormatInterface.php │ │ │ │ └── Registry.php │ │ ├── session │ │ │ ├── LICENSE │ │ │ ├── meta │ │ │ │ └── sql │ │ │ │ │ ├── mysql.sql │ │ │ │ │ ├── pgsql.sql │ │ │ │ │ ├── sqlite.sql │ │ │ │ │ └── sqlsrv.sql │ │ │ └── src │ │ │ │ ├── Exception │ │ │ │ └── InvalidSessionException.php │ │ │ │ ├── Handler │ │ │ │ ├── ApcuHandler.php │ │ │ │ ├── DatabaseHandler.php │ │ │ │ ├── FilesystemHandler.php │ │ │ │ ├── MemcachedHandler.php │ │ │ │ ├── RedisHandler.php │ │ │ │ └── WincacheHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionEvent.php │ │ │ │ ├── SessionEvents.php │ │ │ │ ├── SessionInterface.php │ │ │ │ ├── Storage │ │ │ │ ├── NativeStorage.php │ │ │ │ └── RuntimeStorage.php │ │ │ │ ├── StorageInterface.php │ │ │ │ ├── Validator │ │ │ │ ├── AddressValidator.php │ │ │ │ └── ForwardedValidator.php │ │ │ │ └── ValidatorInterface.php │ │ ├── string │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Inflector.php │ │ │ │ ├── Normalise.php │ │ │ │ ├── StringHelper.php │ │ │ │ └── phputf8 │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── mbstring │ │ │ │ └── core.php │ │ │ │ ├── native │ │ │ │ └── core.php │ │ │ │ ├── ord.php │ │ │ │ ├── str_ireplace.php │ │ │ │ ├── str_pad.php │ │ │ │ ├── str_split.php │ │ │ │ ├── strcasecmp.php │ │ │ │ ├── strcspn.php │ │ │ │ ├── stristr.php │ │ │ │ ├── strrev.php │ │ │ │ ├── strspn.php │ │ │ │ ├── substr_replace.php │ │ │ │ ├── trim.php │ │ │ │ ├── ucfirst.php │ │ │ │ ├── ucwords.php │ │ │ │ ├── utf8.php │ │ │ │ └── utils │ │ │ │ ├── ascii.php │ │ │ │ ├── bad.php │ │ │ │ ├── patterns.php │ │ │ │ ├── position.php │ │ │ │ ├── specials.php │ │ │ │ ├── unicode.php │ │ │ │ └── validation.php │ │ ├── uri │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── AbstractUri.php │ │ │ │ ├── Uri.php │ │ │ │ ├── UriHelper.php │ │ │ │ ├── UriImmutable.php │ │ │ │ └── UriInterface.php │ │ └── utilities │ │ │ ├── LICENSE │ │ │ └── src │ │ │ └── ArrayHelper.php │ ├── mso │ │ └── idna-convert │ │ │ ├── LICENSE │ │ │ └── src │ │ │ ├── EncodingHelper.php │ │ │ ├── IdnaConvert.php │ │ │ ├── NamePrepData.php │ │ │ ├── NamePrepData2003.php │ │ │ ├── NamePrepDataInterface.php │ │ │ ├── Punycode.php │ │ │ ├── PunycodeInterface.php │ │ │ ├── UnicodeTranscoder.php │ │ │ └── UnicodeTranscoderInterface.php │ ├── paragonie │ │ ├── random_compat │ │ │ ├── LICENSE │ │ │ └── lib │ │ │ │ ├── byte_safe_strings.php │ │ │ │ ├── cast_to_int.php │ │ │ │ ├── error_polyfill.php │ │ │ │ ├── random.php │ │ │ │ ├── random_bytes_com_dotnet.php │ │ │ │ ├── random_bytes_dev_urandom.php │ │ │ │ ├── random_bytes_libsodium.php │ │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ │ ├── random_bytes_mcrypt.php │ │ │ │ └── random_int.php │ │ └── sodium_compat │ │ │ ├── LICENSE │ │ │ ├── autoload-fast.php │ │ │ ├── autoload-pedantic.php │ │ │ ├── autoload.php │ │ │ ├── lib │ │ │ ├── constants.php │ │ │ ├── namespaced.php │ │ │ ├── php72compat.php │ │ │ └── sodium_compat.php │ │ │ ├── namespaced │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ │ ├── BLAKE2b.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── ChaCha20 │ │ │ │ │ ├── Ctx.php │ │ │ │ │ └── IetfCtx.php │ │ │ │ ├── Curve25519.php │ │ │ │ ├── Curve25519 │ │ │ │ │ ├── Fe.php │ │ │ │ │ ├── Ge │ │ │ │ │ │ ├── Cached.php │ │ │ │ │ │ ├── P1p1.php │ │ │ │ │ │ ├── P2.php │ │ │ │ │ │ ├── P3.php │ │ │ │ │ │ └── Precomp.php │ │ │ │ │ └── H.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── HChaCha20.php │ │ │ │ ├── HSalsa20.php │ │ │ │ ├── Poly1305.php │ │ │ │ ├── Poly1305 │ │ │ │ │ └── State.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── SipHash.php │ │ │ │ ├── Util.php │ │ │ │ ├── X25519.php │ │ │ │ ├── XChaCha20.php │ │ │ │ └── Xsalsa20.php │ │ │ ├── Crypto.php │ │ │ └── File.php │ │ │ └── src │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ └── H.php │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Core32 │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ ├── H.php │ │ │ │ └── README.md │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Int32.php │ │ │ ├── Int64.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Crypto.php │ │ │ ├── Crypto32.php │ │ │ ├── File.php │ │ │ └── SodiumException.php │ ├── phpmailer │ │ └── phpmailer │ │ │ ├── LICENSE │ │ │ ├── VERSION │ │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── OAuth.php │ │ │ ├── PHPMailer.php │ │ │ ├── POP3.php │ │ │ └── SMTP.php │ ├── psr │ │ ├── container │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── ContainerExceptionInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotFoundExceptionInterface.php │ │ ├── http-message │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ ├── link │ │ │ ├── LICENSE.md │ │ │ └── src │ │ │ │ ├── EvolvableLinkInterface.php │ │ │ │ ├── EvolvableLinkProviderInterface.php │ │ │ │ ├── LinkInterface.php │ │ │ │ └── LinkProviderInterface.php │ │ └── log │ │ │ ├── LICENSE │ │ │ └── Psr │ │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ ├── symfony │ │ ├── console │ │ │ ├── Application.php │ │ │ ├── Command │ │ │ │ ├── Command.php │ │ │ │ ├── HelpCommand.php │ │ │ │ ├── ListCommand.php │ │ │ │ └── LockableTrait.php │ │ │ ├── CommandLoader │ │ │ │ ├── CommandLoaderInterface.php │ │ │ │ ├── ContainerCommandLoader.php │ │ │ │ └── FactoryCommandLoader.php │ │ │ ├── ConsoleEvents.php │ │ │ ├── DependencyInjection │ │ │ │ └── AddConsoleCommandPass.php │ │ │ ├── Descriptor │ │ │ │ ├── ApplicationDescription.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorInterface.php │ │ │ │ ├── JsonDescriptor.php │ │ │ │ ├── MarkdownDescriptor.php │ │ │ │ ├── TextDescriptor.php │ │ │ │ └── XmlDescriptor.php │ │ │ ├── Event │ │ │ │ ├── ConsoleCommandEvent.php │ │ │ │ ├── ConsoleErrorEvent.php │ │ │ │ ├── ConsoleEvent.php │ │ │ │ ├── ConsoleExceptionEvent.php │ │ │ │ └── ConsoleTerminateEvent.php │ │ │ ├── EventListener │ │ │ │ └── ErrorListener.php │ │ │ ├── Exception │ │ │ │ ├── CommandNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionException.php │ │ │ │ ├── LogicException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Formatter │ │ │ │ ├── OutputFormatter.php │ │ │ │ ├── OutputFormatterInterface.php │ │ │ │ ├── OutputFormatterStyle.php │ │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ │ └── OutputFormatterStyleStack.php │ │ │ ├── Helper │ │ │ │ ├── DebugFormatterHelper.php │ │ │ │ ├── DescriptorHelper.php │ │ │ │ ├── FormatterHelper.php │ │ │ │ ├── Helper.php │ │ │ │ ├── HelperInterface.php │ │ │ │ ├── HelperSet.php │ │ │ │ ├── InputAwareHelper.php │ │ │ │ ├── ProcessHelper.php │ │ │ │ ├── ProgressBar.php │ │ │ │ ├── ProgressIndicator.php │ │ │ │ ├── QuestionHelper.php │ │ │ │ ├── SymfonyQuestionHelper.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableCell.php │ │ │ │ ├── TableSeparator.php │ │ │ │ └── TableStyle.php │ │ │ ├── Input │ │ │ │ ├── ArgvInput.php │ │ │ │ ├── ArrayInput.php │ │ │ │ ├── Input.php │ │ │ │ ├── InputArgument.php │ │ │ │ ├── InputAwareInterface.php │ │ │ │ ├── InputDefinition.php │ │ │ │ ├── InputInterface.php │ │ │ │ ├── InputOption.php │ │ │ │ ├── StreamableInputInterface.php │ │ │ │ └── StringInput.php │ │ │ ├── LICENSE │ │ │ ├── Logger │ │ │ │ └── ConsoleLogger.php │ │ │ ├── Output │ │ │ │ ├── BufferedOutput.php │ │ │ │ ├── ConsoleOutput.php │ │ │ │ ├── ConsoleOutputInterface.php │ │ │ │ ├── NullOutput.php │ │ │ │ ├── Output.php │ │ │ │ ├── OutputInterface.php │ │ │ │ └── StreamOutput.php │ │ │ ├── Question │ │ │ │ ├── ChoiceQuestion.php │ │ │ │ ├── ConfirmationQuestion.php │ │ │ │ └── Question.php │ │ │ ├── Style │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── StyleInterface.php │ │ │ │ └── SymfonyStyle.php │ │ │ ├── Terminal.php │ │ │ └── Tester │ │ │ │ ├── ApplicationTester.php │ │ │ │ └── CommandTester.php │ │ ├── debug │ │ │ ├── BufferingLogger.php │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ContextErrorException.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── FatalThrowableError.php │ │ │ │ ├── FlattenException.php │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ ├── SilencedErrorContext.php │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ └── UndefinedMethodException.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── FatalErrorHandler │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ └── LICENSE │ │ ├── ldap │ │ │ ├── Adapter │ │ │ │ ├── AbstractConnection.php │ │ │ │ ├── AbstractQuery.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── CollectionInterface.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── EntryManagerInterface.php │ │ │ │ ├── ExtLdap │ │ │ │ │ ├── Adapter.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── ConnectionOptions.php │ │ │ │ │ ├── EntryManager.php │ │ │ │ │ └── Query.php │ │ │ │ ├── QueryInterface.php │ │ │ │ └── RenameEntryInterface.php │ │ │ ├── Entry.php │ │ │ ├── Exception │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── DriverNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── LdapException.php │ │ │ │ └── NotBoundException.php │ │ │ ├── LICENSE │ │ │ ├── Ldap.php │ │ │ ├── LdapClient.php │ │ │ ├── LdapClientInterface.php │ │ │ └── LdapInterface.php │ │ ├── options-resolver │ │ │ ├── Debug │ │ │ │ └── OptionsResolverIntrospector.php │ │ │ ├── Exception │ │ │ │ ├── AccessException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionsException.php │ │ │ │ ├── MissingOptionsException.php │ │ │ │ ├── NoConfigurationException.php │ │ │ │ ├── NoSuchOptionException.php │ │ │ │ ├── OptionDefinitionException.php │ │ │ │ └── UndefinedOptionsException.php │ │ │ ├── LICENSE │ │ │ ├── Options.php │ │ │ └── OptionsResolver.php │ │ ├── polyfill-ctype │ │ │ ├── Ctype.php │ │ │ ├── LICENSE │ │ │ └── bootstrap.php │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ └── upperCase.php │ │ │ └── bootstrap.php │ │ ├── polyfill-php56 │ │ │ ├── LICENSE │ │ │ ├── Php56.php │ │ │ └── bootstrap.php │ │ ├── polyfill-util │ │ │ ├── Binary.php │ │ │ ├── BinaryNoFuncOverload.php │ │ │ ├── BinaryOnFuncOverload.php │ │ │ ├── LICENSE │ │ │ ├── LegacyTestListener.php │ │ │ └── TestListenerTrait.php │ │ ├── web-link │ │ │ ├── EventListener │ │ │ │ └── AddLinkHeaderListener.php │ │ │ ├── HttpHeaderSerializer.php │ │ │ └── LICENSE │ │ └── yaml │ │ │ ├── Command │ │ │ └── LintCommand.php │ │ │ ├── Dumper.php │ │ │ ├── Escaper.php │ │ │ ├── Exception │ │ │ ├── DumpException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── ParseException.php │ │ │ └── RuntimeException.php │ │ │ ├── Inline.php │ │ │ ├── LICENSE │ │ │ ├── Parser.php │ │ │ ├── Tag │ │ │ └── TaggedValue.php │ │ │ ├── Unescaper.php │ │ │ └── Yaml.php │ ├── wamania │ │ └── php-stemmer │ │ │ ├── LICENSE │ │ │ └── src │ │ │ ├── Danish.php │ │ │ ├── Dutch.php │ │ │ ├── English.php │ │ │ ├── French.php │ │ │ ├── German.php │ │ │ ├── Italian.php │ │ │ ├── Norwegian.php │ │ │ ├── Portuguese.php │ │ │ ├── Romanian.php │ │ │ ├── Russian.php │ │ │ ├── Spanish.php │ │ │ ├── Stem.php │ │ │ ├── Stemmer.php │ │ │ ├── Swedish.php │ │ │ └── Utf8.php │ ├── web.config │ └── zendframework │ │ └── zend-diactoros │ │ ├── LICENSE.md │ │ └── src │ │ ├── AbstractSerializer.php │ │ ├── CallbackStream.php │ │ ├── Exception │ │ ├── DeprecatedMethodException.php │ │ └── ExceptionInterface.php │ │ ├── HeaderSecurity.php │ │ ├── MessageTrait.php │ │ ├── PhpInputStream.php │ │ ├── RelativeStream.php │ │ ├── Request.php │ │ ├── Request │ │ ├── ArraySerializer.php │ │ └── Serializer.php │ │ ├── RequestTrait.php │ │ ├── Response.php │ │ ├── Response │ │ ├── ArraySerializer.php │ │ ├── EmitterInterface.php │ │ ├── EmptyResponse.php │ │ ├── HtmlResponse.php │ │ ├── InjectContentTypeTrait.php │ │ ├── JsonResponse.php │ │ ├── RedirectResponse.php │ │ ├── SapiEmitter.php │ │ ├── SapiEmitterTrait.php │ │ ├── SapiStreamEmitter.php │ │ ├── Serializer.php │ │ ├── TextResponse.php │ │ └── XmlResponse.php │ │ ├── Server.php │ │ ├── ServerRequest.php │ │ ├── ServerRequestFactory.php │ │ ├── Stream.php │ │ ├── UploadedFile.php │ │ └── Uri.php └── web.config ├── media ├── cache │ └── index.html ├── com_associations │ ├── css │ │ ├── sidebyside.css │ │ └── sidebyside.min.css │ └── js │ │ ├── admin-associations-default.js │ │ ├── admin-associations-default.min.js │ │ ├── admin-associations-modal.js │ │ ├── admin-associations-modal.min.js │ │ ├── associations-edit.js │ │ ├── associations-edit.min.js │ │ ├── modal-associations.js │ │ ├── modal-associations.min.js │ │ ├── sidebyside.js │ │ └── sidebyside.min.js ├── com_banners │ └── js │ │ ├── admin-banner-edit.es6.js │ │ ├── admin-banner-edit.es6.min.js │ │ ├── admin-banner-edit.js │ │ └── admin-banner-edit.min.js ├── com_cache │ └── js │ │ ├── admin-cache-default.es6.js │ │ ├── admin-cache-default.es6.min.js │ │ ├── admin-cache-default.js │ │ └── admin-cache-default.min.js ├── com_config │ └── js │ │ ├── admin-application-default.js │ │ ├── admin-application-default.min.js │ │ ├── config-default.js │ │ ├── config-default.min.js │ │ ├── modules-default.js │ │ ├── modules-default.min.js │ │ ├── templates-default.js │ │ └── templates-default.min.js ├── com_contact │ └── js │ │ ├── admin-contacts-modal.es6.js │ │ ├── admin-contacts-modal.es6.min.js │ │ ├── admin-contacts-modal.js │ │ ├── admin-contacts-modal.min.js │ │ ├── categories-default.js │ │ └── categories-default.min.js ├── com_content │ └── js │ │ ├── admin-article-pagebreak.es6.js │ │ ├── admin-article-pagebreak.es6.min.js │ │ ├── admin-article-pagebreak.js │ │ ├── admin-article-pagebreak.min.js │ │ ├── admin-article-readmore.es6.js │ │ ├── admin-article-readmore.es6.min.js │ │ ├── admin-article-readmore.js │ │ ├── admin-article-readmore.min.js │ │ ├── admin-articles-default-batch-footer.es6.js │ │ ├── admin-articles-default-batch-footer.es6.min.js │ │ ├── admin-articles-default-batch-footer.js │ │ ├── admin-articles-default-batch-footer.min.js │ │ ├── admin-articles-modal.es6.js │ │ ├── admin-articles-modal.es6.min.js │ │ ├── admin-articles-modal.js │ │ ├── admin-articles-modal.min.js │ │ ├── form-edit.es6.js │ │ ├── form-edit.es6.min.js │ │ ├── form-edit.js │ │ └── form-edit.min.js ├── com_contenthistory │ └── js │ │ ├── admin-compare-compare.js │ │ ├── admin-compare-compare.min.js │ │ ├── admin-history-modal.js │ │ └── admin-history-modal.min.js ├── com_fields │ └── js │ │ ├── admin-field-edit.es6.js │ │ ├── admin-field-edit.es6.min.js │ │ ├── admin-field-edit.js │ │ ├── admin-field-edit.min.js │ │ ├── admin-fields-default-batch.es6.js │ │ ├── admin-fields-default-batch.es6.min.js │ │ ├── admin-fields-default-batch.js │ │ ├── admin-fields-default-batch.min.js │ │ ├── admin-fields-modal.js │ │ └── admin-fields-modal.min.js ├── com_finder │ ├── css │ │ ├── dates.css │ │ ├── dates.min.css │ │ ├── finder.css │ │ ├── finder.min.css │ │ ├── indexer.css │ │ └── indexer.min.css │ └── js │ │ ├── filters.es6.js │ │ ├── filters.es6.min.js │ │ ├── filters.js │ │ ├── filters.min.js │ │ ├── finder-edit.js │ │ ├── finder-edit.min.js │ │ ├── finder.js │ │ ├── finder.min.js │ │ ├── index.es6.js │ │ ├── index.es6.min.js │ │ ├── index.js │ │ ├── index.min.js │ │ ├── indexer.js │ │ ├── indexer.min.js │ │ ├── maps.es6.js │ │ ├── maps.es6.min.js │ │ ├── maps.js │ │ └── maps.min.js ├── com_installer │ ├── css │ │ ├── installer.css │ │ └── installer.min.css │ └── js │ │ ├── installer.js │ │ └── installer.min.js ├── com_joomlaupdate │ └── js │ │ ├── admin-update-default.es6.js │ │ ├── admin-update-default.es6.min.js │ │ ├── admin-update-default.js │ │ ├── admin-update-default.min.js │ │ ├── default.js │ │ ├── default.min.js │ │ ├── encryption.js │ │ ├── encryption.min.js │ │ ├── update.js │ │ └── update.min.js ├── com_languages │ ├── css │ │ ├── overrider.css │ │ └── overrider.min.css │ └── js │ │ ├── admin-language-edit-change-flag.es6.js │ │ ├── admin-language-edit-change-flag.es6.min.js │ │ ├── admin-language-edit-change-flag.js │ │ ├── admin-language-edit-change-flag.min.js │ │ ├── admin-override-edit-refresh-searchstring.es6.js │ │ ├── admin-override-edit-refresh-searchstring.es6.min.js │ │ ├── admin-override-edit-refresh-searchstring.js │ │ ├── admin-override-edit-refresh-searchstring.min.js │ │ ├── overrider.js │ │ └── overrider.min.js ├── com_mailto │ └── js │ │ ├── mailto-default.js │ │ └── mailto-default.min.js ├── com_media │ ├── css │ │ ├── mediamanager.css │ │ └── mediamanager.min.css │ └── js │ │ ├── edit-images.js │ │ ├── edit-images.min.js │ │ └── mediamanager.min.js ├── com_menus │ ├── css │ │ ├── admin-item-edit_container.css │ │ ├── admin-item-edit_container.min.css │ │ ├── admin-item-edit_modules.css │ │ └── admin-item-edit_modules.min.css │ └── js │ │ ├── admin-item-edit.js │ │ ├── admin-item-edit.min.js │ │ ├── admin-item-edit_container.js │ │ ├── admin-item-edit_container.min.js │ │ ├── admin-item-edit_modules.js │ │ ├── admin-item-edit_modules.min.js │ │ ├── admin-item-modal.js │ │ ├── admin-item-modal.min.js │ │ ├── admin-items-modal.js │ │ ├── admin-items-modal.min.js │ │ ├── admin-menus-default.js │ │ ├── admin-menus-default.min.js │ │ ├── default-batch-body.js │ │ └── default-batch-body.min.js ├── com_modules │ └── js │ │ ├── admin-module-edit.js │ │ ├── admin-module-edit.min.js │ │ ├── admin-module-edit_assignment.js │ │ ├── admin-module-edit_assignment.min.js │ │ ├── admin-modules-modal.js │ │ └── admin-modules-modal.min.js ├── com_newsfeeds │ └── js │ │ ├── categories-default.js │ │ └── categories-default.min.js ├── com_tags │ └── js │ │ ├── tag-default.js │ │ ├── tag-default.min.js │ │ ├── tag-list.js │ │ ├── tag-list.min.js │ │ ├── tags-default.js │ │ └── tags-default.min.js ├── com_templates │ ├── css │ │ ├── admin-templates-default.css │ │ └── admin-templates-default.min.css │ └── js │ │ ├── admin-templates-default.js │ │ └── admin-templates-default.min.js ├── com_users │ └── js │ │ ├── admin-users-groups.es6.js │ │ ├── admin-users-groups.es6.min.js │ │ ├── admin-users-groups.js │ │ ├── admin-users-groups.min.js │ │ ├── admin-users-mail.es6.js │ │ ├── admin-users-mail.es6.min.js │ │ ├── admin-users-mail.js │ │ ├── admin-users-mail.min.js │ │ ├── admin-users-user.es6.js │ │ ├── admin-users-user.es6.min.js │ │ ├── admin-users-user.js │ │ └── admin-users-user.min.js ├── com_wrapper │ └── js │ │ ├── iframe-height.js │ │ └── iframe-height.min.js ├── contacts │ └── images │ │ ├── con_address.png │ │ ├── con_fax.png │ │ ├── con_info.png │ │ ├── con_mobile.png │ │ ├── con_tel.png │ │ └── emailButton.png ├── editors │ ├── codemirror │ │ └── css │ │ │ ├── codemirror.css │ │ │ └── codemirror.min.css │ └── tinymce │ │ ├── css │ │ ├── tinymce-builder.css │ │ └── tinymce-builder.min.css │ │ └── js │ │ ├── plugins │ │ └── dragdrop │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tinymce-builder.js │ │ ├── tinymce-builder.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── index.html ├── legacy │ ├── css │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── chosen.min.css │ │ ├── sortablelist.css │ │ └── sortablelist.min.css │ └── js │ │ ├── ajax-chosen.js │ │ ├── ajax-chosen.min.js │ │ ├── bootstrap-init.js │ │ ├── bootstrap-init.min.js │ │ ├── chosen.js │ │ ├── chosen.min.js │ │ ├── frontediting.js │ │ ├── frontediting.min.js │ │ ├── helpsite.js │ │ ├── helpsite.min.js │ │ ├── highlighter.js │ │ ├── highlighter.min.js │ │ ├── html5.js │ │ ├── html5.min.js │ │ ├── html5fallback.js │ │ ├── html5fallback.min.js │ │ ├── jquery-noconflict.js │ │ ├── jquery-noconflict.min.js │ │ ├── sortablelist.js │ │ ├── sortablelist.min.js │ │ ├── tabs-state.js │ │ ├── tabs-state.min.js │ │ ├── toolbar.js │ │ ├── toolbar.min.js │ │ ├── treeselectmenu.js │ │ └── treeselectmenu.min.js ├── mailto │ └── images │ │ └── close-x.png ├── mod_languages │ ├── css │ │ ├── template.css │ │ └── template.min.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 │ │ ├── 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 │ │ ├── admin-login.es6.min.js │ │ ├── admin-login.js │ │ └── admin-login.min.js ├── mod_menu │ └── js │ │ ├── admin-menu.js │ │ └── admin-menu.min.js ├── mod_multilangstatus │ └── js │ │ ├── admin-multilangstatus.es6.js │ │ ├── admin-multilangstatus.es6.min.js │ │ ├── admin-multilangstatus.js │ │ └── admin-multilangstatus.min.js ├── mod_sampledata │ └── js │ │ ├── sampledata-process.js │ │ └── sampledata-process.min.js ├── plg_captcha_recaptcha │ └── js │ │ ├── recaptcha.es6.js │ │ ├── recaptcha.es6.min.js │ │ ├── recaptcha.js │ │ └── recaptcha.min.js ├── plg_installer_webinstaller │ ├── css │ │ ├── client.css │ │ └── client.min.css │ ├── js │ │ ├── client.es6.js │ │ ├── client.es6.min.js │ │ ├── client.js │ │ └── client.min.js │ └── scss │ │ ├── client.css │ │ ├── client.min.css │ │ └── client.scss ├── plg_media-action_crop │ └── js │ │ ├── crop.es6.js │ │ ├── crop.es6.min.js │ │ ├── crop.js │ │ └── crop.min.js ├── plg_media-action_resize │ └── js │ │ ├── resize.es6.js │ │ ├── resize.es6.min.js │ │ ├── resize.js │ │ └── resize.min.js ├── plg_media-action_rotate │ └── js │ │ ├── rotate.es6.js │ │ ├── rotate.es6.min.js │ │ ├── rotate.js │ │ └── rotate.min.js ├── plg_quickicon_extensionupdate │ └── js │ │ ├── extensionupdatecheck.es6.js │ │ ├── extensionupdatecheck.es6.min.js │ │ ├── extensionupdatecheck.js │ │ └── extensionupdatecheck.min.js ├── plg_quickicon_joomlaupdate │ └── js │ │ ├── jupdatecheck.js │ │ └── jupdatecheck.min.js ├── plg_system_debug │ ├── css │ │ ├── debug.css │ │ └── debug.min.css │ └── js │ │ ├── debug.es6.js │ │ ├── debug.es6.min.js │ │ ├── debug.js │ │ └── debug.min.js ├── plg_system_highlight │ ├── highlight.css │ └── highlight.min.css ├── plg_system_stats │ └── js │ │ ├── stats-message.es6.js │ │ ├── stats-message.es6.min.js │ │ ├── stats-message.js │ │ ├── stats-message.min.js │ │ ├── stats.js │ │ └── stats.min.js ├── system │ ├── css │ │ ├── adminlist.css │ │ ├── adminlist.min.css │ │ ├── calendar-jos.css │ │ ├── calendar-jos.min.css │ │ ├── debug.css │ │ ├── debug.min.css │ │ ├── fields │ │ │ ├── calendar-rtl.css │ │ │ ├── calendar-rtl.min.css │ │ │ ├── calendar.css │ │ │ └── calendar.min.css │ │ ├── frontediting.css │ │ ├── frontediting.min.css │ │ ├── mootree.css │ │ ├── mootree.min.css │ │ ├── mootree_rtl.css │ │ ├── mootree_rtl.min.css │ │ ├── searchtools.css │ │ ├── searchtools.min.css │ │ ├── simplecolors.min.css │ │ ├── sortablelist.css │ │ ├── sortablelist.min.css │ │ ├── system.css │ │ └── system.min.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 │ ├── js │ │ ├── cms.js │ │ ├── cms.min.js │ │ ├── core.js │ │ ├── core.min.js │ │ ├── draggable.js │ │ ├── draggable.min.js │ │ ├── fields │ │ │ ├── batch-language.js │ │ │ ├── batch-language.min.js │ │ │ ├── calendar-locales │ │ │ │ ├── af.js │ │ │ │ ├── af.min.js │ │ │ │ ├── ar.js │ │ │ │ ├── ar.min.js │ │ │ │ ├── bg.js │ │ │ │ ├── bg.min.js │ │ │ │ ├── bn.js │ │ │ │ ├── bn.min.js │ │ │ │ ├── bs.js │ │ │ │ ├── bs.min.js │ │ │ │ ├── ca.js │ │ │ │ ├── ca.min.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs.min.js │ │ │ │ ├── cy.js │ │ │ │ ├── cy.min.js │ │ │ │ ├── da.js │ │ │ │ ├── da.min.js │ │ │ │ ├── date │ │ │ │ │ ├── gregorian │ │ │ │ │ │ ├── date-helper.js │ │ │ │ │ │ └── date-helper.min.js │ │ │ │ │ └── jalali │ │ │ │ │ │ ├── date-helper.js │ │ │ │ │ │ └── date-helper.min.js │ │ │ │ ├── de.js │ │ │ │ ├── de.min.js │ │ │ │ ├── el.js │ │ │ │ ├── el.min.js │ │ │ │ ├── en.js │ │ │ │ ├── en.min.js │ │ │ │ ├── es.js │ │ │ │ ├── es.min.js │ │ │ │ ├── eu.js │ │ │ │ ├── eu.min.js │ │ │ │ ├── fa-ir.js │ │ │ │ ├── fa-ir.min.js │ │ │ │ ├── fi.js │ │ │ │ ├── fi.min.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr.min.js │ │ │ │ ├── ga.js │ │ │ │ ├── ga.min.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr.min.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu.min.js │ │ │ │ ├── it.js │ │ │ │ ├── it.min.js │ │ │ │ ├── ja.js │ │ │ │ ├── ja.min.js │ │ │ │ ├── ka.js │ │ │ │ ├── ka.min.js │ │ │ │ ├── ko.js │ │ │ │ ├── ko.min.js │ │ │ │ ├── mk.js │ │ │ │ ├── mk.min.js │ │ │ │ ├── nb.js │ │ │ │ ├── nb.min.js │ │ │ │ ├── nl.js │ │ │ │ ├── nl.min.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl.min.js │ │ │ │ ├── prs-af.js │ │ │ │ ├── prs-af.min.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt.min.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru.min.js │ │ │ │ ├── sk.js │ │ │ │ ├── sk.min.js │ │ │ │ ├── sl.js │ │ │ │ ├── sl.min.js │ │ │ │ ├── sr-rs.js │ │ │ │ ├── sr-rs.min.js │ │ │ │ ├── sr-yu.js │ │ │ │ ├── sr-yu.min.js │ │ │ │ ├── sv.js │ │ │ │ ├── sv.min.js │ │ │ │ ├── sw.js │ │ │ │ ├── sw.min.js │ │ │ │ ├── ta.js │ │ │ │ ├── ta.min.js │ │ │ │ ├── th.js │ │ │ │ ├── th.min.js │ │ │ │ ├── uk.js │ │ │ │ ├── uk.min.js │ │ │ │ ├── zh-CN.js │ │ │ │ ├── zh-CN.min.js │ │ │ │ ├── zh-TW.js │ │ │ │ └── zh-TW.min.js │ │ │ ├── calendar.js │ │ │ ├── calendar.min.js │ │ │ ├── color-field-adv-init.js │ │ │ ├── color-field-adv-init.min.js │ │ │ ├── modal-fields.js │ │ │ ├── modal-fields.min.js │ │ │ ├── passwordstrength.js │ │ │ ├── passwordstrength.min.js │ │ │ ├── passwordview.js │ │ │ ├── passwordview.min.js │ │ │ ├── select-colour.js │ │ │ ├── select-colour.min.js │ │ │ ├── tag.js │ │ │ ├── tag.min.js │ │ │ ├── validate.js │ │ │ └── validate.min.js │ │ ├── keepalive.js │ │ ├── keepalive.min.js │ │ ├── multiselect.js │ │ ├── multiselect.min.js │ │ ├── searchtools.js │ │ └── searchtools.min.js │ ├── scss │ │ ├── _icomoon.scss │ │ └── _jalert.scss │ └── webcomponents │ │ ├── css │ │ ├── joomla-field-media.css │ │ ├── joomla-field-media.min.css │ │ ├── joomla-field-simple-color.css │ │ ├── joomla-field-simple-color.min.css │ │ ├── joomla-field-switcher.css │ │ ├── joomla-field-switcher.min.css │ │ ├── joomla-tab.css │ │ └── joomla-tab.min.css │ │ └── js │ │ ├── joomla-editor-codemirror-es5.js │ │ ├── joomla-editor-codemirror-es5.min.js │ │ ├── joomla-editor-codemirror.js │ │ ├── joomla-editor-codemirror.min.js │ │ ├── joomla-editor-none-es5.js │ │ ├── joomla-editor-none-es5.min.js │ │ ├── joomla-editor-none.js │ │ ├── joomla-editor-none.min.js │ │ ├── joomla-field-media-es5.js │ │ ├── joomla-field-media-es5.min.js │ │ ├── joomla-field-media.js │ │ ├── joomla-field-media.min.js │ │ ├── joomla-field-module-order-es5.js │ │ ├── joomla-field-module-order-es5.min.js │ │ ├── joomla-field-module-order.js │ │ ├── joomla-field-module-order.min.js │ │ ├── joomla-field-permissions-es5.js │ │ ├── joomla-field-permissions-es5.min.js │ │ ├── joomla-field-permissions.js │ │ ├── joomla-field-permissions.min.js │ │ ├── joomla-field-send-test-mail-es5.js │ │ ├── joomla-field-send-test-mail-es5.min.js │ │ ├── joomla-field-send-test-mail.js │ │ ├── joomla-field-send-test-mail.min.js │ │ ├── joomla-field-simple-color-es5.js │ │ ├── joomla-field-simple-color-es5.min.js │ │ ├── joomla-field-simple-color.js │ │ ├── joomla-field-simple-color.min.js │ │ ├── joomla-field-subform-es5.js │ │ ├── joomla-field-subform-es5.min.js │ │ ├── joomla-field-subform.js │ │ ├── joomla-field-subform.min.js │ │ ├── joomla-field-switcher-es5.js │ │ ├── joomla-field-switcher-es5.min.js │ │ ├── joomla-field-switcher.js │ │ ├── joomla-field-switcher.min.js │ │ ├── joomla-field-user-es5.js │ │ ├── joomla-field-user-es5.min.js │ │ ├── joomla-field-user.js │ │ ├── joomla-field-user.min.js │ │ ├── joomla-hidden-mail-es5.js │ │ ├── joomla-hidden-mail-es5.min.js │ │ ├── joomla-hidden-mail.js │ │ ├── joomla-hidden-mail.min.js │ │ ├── joomla-tab-es5.js │ │ ├── joomla-tab-es5.min.js │ │ ├── joomla-tab.js │ │ ├── joomla-tab.min.js │ │ ├── joomla-toolbar-button-es5.js │ │ ├── joomla-toolbar-button-es5.min.js │ │ ├── joomla-toolbar-button.js │ │ └── joomla-toolbar-button.min.js └── vendor │ ├── awesomplete │ ├── LICENSE │ ├── css │ │ ├── awesomplete.css │ │ ├── awesomplete.css.map │ │ └── awesomplete.min.css │ └── js │ │ ├── awesomplete.js │ │ ├── awesomplete.min.js │ │ └── awesomplete.min.js.map │ ├── bootstrap │ ├── LICENSE │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ └── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ ├── codemirror │ ├── addon │ │ ├── comment │ │ │ ├── comment.js │ │ │ ├── comment.min.js │ │ │ ├── continuecomment.js │ │ │ └── continuecomment.min.js │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ ├── dialog.js │ │ │ ├── dialog.min.css │ │ │ └── dialog.min.js │ │ ├── display │ │ │ ├── autorefresh.js │ │ │ ├── autorefresh.min.js │ │ │ ├── fullscreen.css │ │ │ ├── fullscreen.js │ │ │ ├── fullscreen.min.css │ │ │ ├── fullscreen.min.js │ │ │ ├── panel.js │ │ │ ├── panel.min.js │ │ │ ├── placeholder.js │ │ │ ├── placeholder.min.js │ │ │ ├── rulers.js │ │ │ └── rulers.min.js │ │ ├── edit │ │ │ ├── closebrackets.js │ │ │ ├── closebrackets.min.js │ │ │ ├── closetag.js │ │ │ ├── closetag.min.js │ │ │ ├── continuelist.js │ │ │ ├── continuelist.min.js │ │ │ ├── matchbrackets.js │ │ │ ├── matchbrackets.min.js │ │ │ ├── matchtags.js │ │ │ ├── matchtags.min.js │ │ │ ├── trailingspace.js │ │ │ └── trailingspace.min.js │ │ ├── fold │ │ │ ├── brace-fold.js │ │ │ ├── brace-fold.min.js │ │ │ ├── comment-fold.js │ │ │ ├── comment-fold.min.js │ │ │ ├── foldcode.js │ │ │ ├── foldcode.min.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ ├── foldgutter.min.css │ │ │ ├── foldgutter.min.js │ │ │ ├── indent-fold.js │ │ │ ├── indent-fold.min.js │ │ │ ├── markdown-fold.js │ │ │ ├── markdown-fold.min.js │ │ │ ├── xml-fold.js │ │ │ └── xml-fold.min.js │ │ ├── hint │ │ │ ├── anyword-hint.js │ │ │ ├── anyword-hint.min.js │ │ │ ├── css-hint.js │ │ │ ├── css-hint.min.js │ │ │ ├── html-hint.js │ │ │ ├── html-hint.min.js │ │ │ ├── javascript-hint.js │ │ │ ├── javascript-hint.min.js │ │ │ ├── show-hint.css │ │ │ ├── show-hint.js │ │ │ ├── show-hint.min.css │ │ │ ├── show-hint.min.js │ │ │ ├── sql-hint.js │ │ │ ├── sql-hint.min.js │ │ │ ├── xml-hint.js │ │ │ └── xml-hint.min.js │ │ ├── lint │ │ │ ├── coffeescript-lint.js │ │ │ ├── coffeescript-lint.min.js │ │ │ ├── css-lint.js │ │ │ ├── css-lint.min.js │ │ │ ├── html-lint.js │ │ │ ├── html-lint.min.js │ │ │ ├── javascript-lint.js │ │ │ ├── javascript-lint.min.js │ │ │ ├── json-lint.js │ │ │ ├── json-lint.min.js │ │ │ ├── lint.css │ │ │ ├── lint.js │ │ │ ├── lint.min.css │ │ │ ├── lint.min.js │ │ │ ├── yaml-lint.js │ │ │ └── yaml-lint.min.js │ │ ├── merge │ │ │ ├── merge.css │ │ │ ├── merge.js │ │ │ ├── merge.min.css │ │ │ └── merge.min.js │ │ ├── mode │ │ │ ├── loadmode.js │ │ │ ├── loadmode.min.js │ │ │ ├── multiplex.js │ │ │ ├── multiplex.min.js │ │ │ ├── multiplex_test.js │ │ │ ├── multiplex_test.min.js │ │ │ ├── overlay.js │ │ │ ├── overlay.min.js │ │ │ ├── simple.js │ │ │ └── simple.min.js │ │ ├── runmode │ │ │ ├── colorize.js │ │ │ ├── colorize.min.js │ │ │ ├── runmode-standalone.js │ │ │ ├── runmode-standalone.min.js │ │ │ ├── runmode.js │ │ │ ├── runmode.min.js │ │ │ ├── runmode.node.js │ │ │ └── runmode.node.min.js │ │ ├── scroll │ │ │ ├── annotatescrollbar.js │ │ │ ├── annotatescrollbar.min.js │ │ │ ├── scrollpastend.js │ │ │ ├── scrollpastend.min.js │ │ │ ├── simplescrollbars.css │ │ │ ├── simplescrollbars.js │ │ │ ├── simplescrollbars.min.css │ │ │ └── simplescrollbars.min.js │ │ ├── search │ │ │ ├── jump-to-line.js │ │ │ ├── jump-to-line.min.js │ │ │ ├── match-highlighter.js │ │ │ ├── match-highlighter.min.js │ │ │ ├── matchesonscrollbar.css │ │ │ ├── matchesonscrollbar.js │ │ │ ├── matchesonscrollbar.min.css │ │ │ ├── matchesonscrollbar.min.js │ │ │ ├── search.js │ │ │ ├── search.min.js │ │ │ ├── searchcursor.js │ │ │ └── searchcursor.min.js │ │ ├── selection │ │ │ ├── active-line.js │ │ │ ├── active-line.min.js │ │ │ ├── mark-selection.js │ │ │ ├── mark-selection.min.js │ │ │ ├── selection-pointer.js │ │ │ └── selection-pointer.min.js │ │ ├── tern │ │ │ ├── tern.css │ │ │ ├── tern.js │ │ │ ├── tern.min.css │ │ │ ├── tern.min.js │ │ │ ├── worker.js │ │ │ └── worker.min.js │ │ └── wrap │ │ │ ├── hardwrap.js │ │ │ └── hardwrap.min.js │ ├── keymap │ │ ├── emacs.js │ │ ├── emacs.min.js │ │ ├── sublime.js │ │ ├── sublime.min.js │ │ ├── vim.js │ │ └── vim.min.js │ ├── lib │ │ ├── addons.css │ │ ├── addons.js │ │ ├── addons.min.css │ │ ├── addons.min.js │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── codemirror.min.css │ │ └── codemirror.min.js │ ├── mode │ │ ├── apl │ │ │ ├── apl.js │ │ │ └── apl.min.js │ │ ├── asciiarmor │ │ │ ├── asciiarmor.js │ │ │ └── asciiarmor.min.js │ │ ├── asn.1 │ │ │ ├── asn.1.js │ │ │ └── asn.1.min.js │ │ ├── asterisk │ │ │ ├── asterisk.js │ │ │ └── asterisk.min.js │ │ ├── brainfuck │ │ │ ├── brainfuck.js │ │ │ └── brainfuck.min.js │ │ ├── clike │ │ │ ├── clike.js │ │ │ └── clike.min.js │ │ ├── clojure │ │ │ ├── clojure.js │ │ │ └── clojure.min.js │ │ ├── cmake │ │ │ ├── cmake.js │ │ │ └── cmake.min.js │ │ ├── cobol │ │ │ ├── cobol.js │ │ │ └── cobol.min.js │ │ ├── coffeescript │ │ │ ├── coffeescript.js │ │ │ └── coffeescript.min.js │ │ ├── commonlisp │ │ │ ├── commonlisp.js │ │ │ └── commonlisp.min.js │ │ ├── crystal │ │ │ ├── crystal.js │ │ │ └── crystal.min.js │ │ ├── css │ │ │ ├── css.js │ │ │ └── css.min.js │ │ ├── cypher │ │ │ ├── cypher.js │ │ │ └── cypher.min.js │ │ ├── d │ │ │ ├── d.js │ │ │ └── d.min.js │ │ ├── dart │ │ │ ├── dart.js │ │ │ └── dart.min.js │ │ ├── diff │ │ │ ├── diff.js │ │ │ └── diff.min.js │ │ ├── django │ │ │ ├── django.js │ │ │ └── django.min.js │ │ ├── dockerfile │ │ │ ├── dockerfile.js │ │ │ └── dockerfile.min.js │ │ ├── dtd │ │ │ ├── dtd.js │ │ │ └── dtd.min.js │ │ ├── dylan │ │ │ ├── dylan.js │ │ │ └── dylan.min.js │ │ ├── ebnf │ │ │ ├── ebnf.js │ │ │ └── ebnf.min.js │ │ ├── ecl │ │ │ ├── ecl.js │ │ │ └── ecl.min.js │ │ ├── eiffel │ │ │ ├── eiffel.js │ │ │ └── eiffel.min.js │ │ ├── elm │ │ │ ├── elm.js │ │ │ └── elm.min.js │ │ ├── erlang │ │ │ ├── erlang.js │ │ │ └── erlang.min.js │ │ ├── factor │ │ │ ├── factor.js │ │ │ └── factor.min.js │ │ ├── fcl │ │ │ ├── fcl.js │ │ │ └── fcl.min.js │ │ ├── forth │ │ │ ├── forth.js │ │ │ └── forth.min.js │ │ ├── fortran │ │ │ ├── fortran.js │ │ │ └── fortran.min.js │ │ ├── gas │ │ │ ├── gas.js │ │ │ └── gas.min.js │ │ ├── gfm │ │ │ ├── gfm.js │ │ │ └── gfm.min.js │ │ ├── gherkin │ │ │ ├── gherkin.js │ │ │ └── gherkin.min.js │ │ ├── go │ │ │ ├── go.js │ │ │ └── go.min.js │ │ ├── groovy │ │ │ ├── groovy.js │ │ │ └── groovy.min.js │ │ ├── haml │ │ │ ├── haml.js │ │ │ └── haml.min.js │ │ ├── handlebars │ │ │ ├── handlebars.js │ │ │ └── handlebars.min.js │ │ ├── haskell-literate │ │ │ ├── haskell-literate.js │ │ │ └── haskell-literate.min.js │ │ ├── haskell │ │ │ ├── haskell.js │ │ │ └── haskell.min.js │ │ ├── haxe │ │ │ ├── haxe.js │ │ │ └── haxe.min.js │ │ ├── htmlembedded │ │ │ ├── htmlembedded.js │ │ │ └── htmlembedded.min.js │ │ ├── htmlmixed │ │ │ ├── htmlmixed.js │ │ │ └── htmlmixed.min.js │ │ ├── http │ │ │ ├── http.js │ │ │ └── http.min.js │ │ ├── idl │ │ │ ├── idl.js │ │ │ └── idl.min.js │ │ ├── javascript │ │ │ ├── javascript.js │ │ │ └── javascript.min.js │ │ ├── jinja2 │ │ │ ├── jinja2.js │ │ │ └── jinja2.min.js │ │ ├── jsx │ │ │ ├── jsx.js │ │ │ └── jsx.min.js │ │ ├── julia │ │ │ ├── julia.js │ │ │ └── julia.min.js │ │ ├── livescript │ │ │ ├── livescript.js │ │ │ └── livescript.min.js │ │ ├── lua │ │ │ ├── lua.js │ │ │ └── lua.min.js │ │ ├── markdown │ │ │ ├── markdown.js │ │ │ └── markdown.min.js │ │ ├── mathematica │ │ │ ├── mathematica.js │ │ │ └── mathematica.min.js │ │ ├── mbox │ │ │ ├── mbox.js │ │ │ └── mbox.min.js │ │ ├── meta.js │ │ ├── meta.min.js │ │ ├── mirc │ │ │ ├── mirc.js │ │ │ └── mirc.min.js │ │ ├── mllike │ │ │ ├── mllike.js │ │ │ └── mllike.min.js │ │ ├── modelica │ │ │ ├── modelica.js │ │ │ └── modelica.min.js │ │ ├── mscgen │ │ │ ├── mscgen.js │ │ │ └── mscgen.min.js │ │ ├── mumps │ │ │ ├── mumps.js │ │ │ └── mumps.min.js │ │ ├── nginx │ │ │ ├── nginx.js │ │ │ └── nginx.min.js │ │ ├── nsis │ │ │ ├── nsis.js │ │ │ └── nsis.min.js │ │ ├── ntriples │ │ │ ├── ntriples.js │ │ │ └── ntriples.min.js │ │ ├── octave │ │ │ ├── octave.js │ │ │ └── octave.min.js │ │ ├── oz │ │ │ ├── oz.js │ │ │ └── oz.min.js │ │ ├── pascal │ │ │ ├── pascal.js │ │ │ └── pascal.min.js │ │ ├── pegjs │ │ │ ├── pegjs.js │ │ │ └── pegjs.min.js │ │ ├── perl │ │ │ ├── perl.js │ │ │ └── perl.min.js │ │ ├── php │ │ │ ├── php.js │ │ │ └── php.min.js │ │ ├── pig │ │ │ ├── pig.js │ │ │ └── pig.min.js │ │ ├── powershell │ │ │ ├── powershell.js │ │ │ └── powershell.min.js │ │ ├── properties │ │ │ ├── properties.js │ │ │ └── properties.min.js │ │ ├── protobuf │ │ │ ├── protobuf.js │ │ │ └── protobuf.min.js │ │ ├── pug │ │ │ ├── pug.js │ │ │ └── pug.min.js │ │ ├── puppet │ │ │ ├── puppet.js │ │ │ └── puppet.min.js │ │ ├── python │ │ │ ├── python.js │ │ │ └── python.min.js │ │ ├── q │ │ │ ├── q.js │ │ │ └── q.min.js │ │ ├── r │ │ │ ├── r.js │ │ │ └── r.min.js │ │ ├── rpm │ │ │ ├── changes │ │ │ │ └── index.html │ │ │ ├── rpm.js │ │ │ └── rpm.min.js │ │ ├── rst │ │ │ ├── rst.js │ │ │ └── rst.min.js │ │ ├── ruby │ │ │ ├── ruby.js │ │ │ └── ruby.min.js │ │ ├── rust │ │ │ ├── rust.js │ │ │ └── rust.min.js │ │ ├── sas │ │ │ ├── sas.js │ │ │ └── sas.min.js │ │ ├── sass │ │ │ ├── sass.js │ │ │ └── sass.min.js │ │ ├── scheme │ │ │ ├── scheme.js │ │ │ └── scheme.min.js │ │ ├── shell │ │ │ ├── shell.js │ │ │ └── shell.min.js │ │ ├── sieve │ │ │ ├── sieve.js │ │ │ └── sieve.min.js │ │ ├── slim │ │ │ ├── slim.js │ │ │ └── slim.min.js │ │ ├── smalltalk │ │ │ ├── smalltalk.js │ │ │ └── smalltalk.min.js │ │ ├── smarty │ │ │ ├── smarty.js │ │ │ └── smarty.min.js │ │ ├── solr │ │ │ ├── solr.js │ │ │ └── solr.min.js │ │ ├── soy │ │ │ ├── soy.js │ │ │ └── soy.min.js │ │ ├── sparql │ │ │ ├── sparql.js │ │ │ └── sparql.min.js │ │ ├── spreadsheet │ │ │ ├── spreadsheet.js │ │ │ └── spreadsheet.min.js │ │ ├── sql │ │ │ ├── sql.js │ │ │ └── sql.min.js │ │ ├── stex │ │ │ ├── stex.js │ │ │ └── stex.min.js │ │ ├── stylus │ │ │ ├── stylus.js │ │ │ └── stylus.min.js │ │ ├── swift │ │ │ ├── swift.js │ │ │ └── swift.min.js │ │ ├── tcl │ │ │ ├── tcl.js │ │ │ └── tcl.min.js │ │ ├── textile │ │ │ ├── textile.js │ │ │ └── textile.min.js │ │ ├── tiddlywiki │ │ │ ├── tiddlywiki.css │ │ │ ├── tiddlywiki.js │ │ │ ├── tiddlywiki.min.css │ │ │ └── tiddlywiki.min.js │ │ ├── tiki │ │ │ ├── tiki.css │ │ │ ├── tiki.js │ │ │ ├── tiki.min.css │ │ │ └── tiki.min.js │ │ ├── toml │ │ │ ├── toml.js │ │ │ └── toml.min.js │ │ ├── tornado │ │ │ ├── tornado.js │ │ │ └── tornado.min.js │ │ ├── troff │ │ │ ├── troff.js │ │ │ └── troff.min.js │ │ ├── ttcn-cfg │ │ │ ├── ttcn-cfg.js │ │ │ └── ttcn-cfg.min.js │ │ ├── ttcn │ │ │ ├── ttcn.js │ │ │ └── ttcn.min.js │ │ ├── turtle │ │ │ ├── turtle.js │ │ │ └── turtle.min.js │ │ ├── twig │ │ │ ├── twig.js │ │ │ └── twig.min.js │ │ ├── vb │ │ │ ├── vb.js │ │ │ └── vb.min.js │ │ ├── vbscript │ │ │ ├── vbscript.js │ │ │ └── vbscript.min.js │ │ ├── velocity │ │ │ ├── velocity.js │ │ │ └── velocity.min.js │ │ ├── verilog │ │ │ ├── verilog.js │ │ │ └── verilog.min.js │ │ ├── vhdl │ │ │ ├── vhdl.js │ │ │ └── vhdl.min.js │ │ ├── vue │ │ │ ├── vue.js │ │ │ └── vue.min.js │ │ ├── webidl │ │ │ ├── webidl.js │ │ │ └── webidl.min.js │ │ ├── xml │ │ │ ├── xml.js │ │ │ └── xml.min.js │ │ ├── xquery │ │ │ ├── xquery.js │ │ │ └── xquery.min.js │ │ ├── yacas │ │ │ ├── yacas.js │ │ │ └── yacas.min.js │ │ ├── yaml-frontmatter │ │ │ ├── yaml-frontmatter.js │ │ │ └── yaml-frontmatter.min.js │ │ ├── yaml │ │ │ ├── yaml.js │ │ │ └── yaml.min.js │ │ └── z80 │ │ │ ├── z80.js │ │ │ └── z80.min.js │ └── theme │ │ ├── 3024-day.css │ │ ├── 3024-day.min.css │ │ ├── 3024-night.css │ │ ├── 3024-night.min.css │ │ ├── abcdef.css │ │ ├── abcdef.min.css │ │ ├── ambiance-mobile.css │ │ ├── ambiance-mobile.min.css │ │ ├── ambiance.css │ │ ├── ambiance.min.css │ │ ├── base16-dark.css │ │ ├── base16-dark.min.css │ │ ├── base16-light.css │ │ ├── base16-light.min.css │ │ ├── bespin.css │ │ ├── bespin.min.css │ │ ├── blackboard.css │ │ ├── blackboard.min.css │ │ ├── cobalt.css │ │ ├── cobalt.min.css │ │ ├── colorforth.css │ │ ├── colorforth.min.css │ │ ├── dracula.css │ │ ├── dracula.min.css │ │ ├── duotone-dark.css │ │ ├── duotone-dark.min.css │ │ ├── duotone-light.css │ │ ├── duotone-light.min.css │ │ ├── eclipse.css │ │ ├── eclipse.min.css │ │ ├── elegant.css │ │ ├── elegant.min.css │ │ ├── erlang-dark.css │ │ ├── erlang-dark.min.css │ │ ├── hopscotch.css │ │ ├── hopscotch.min.css │ │ ├── icecoder.css │ │ ├── icecoder.min.css │ │ ├── isotope.css │ │ ├── isotope.min.css │ │ ├── lesser-dark.css │ │ ├── lesser-dark.min.css │ │ ├── liquibyte.css │ │ ├── liquibyte.min.css │ │ ├── material.css │ │ ├── material.min.css │ │ ├── mbo.css │ │ ├── mbo.min.css │ │ ├── mdn-like.css │ │ ├── mdn-like.min.css │ │ ├── midnight.css │ │ ├── midnight.min.css │ │ ├── monokai.css │ │ ├── monokai.min.css │ │ ├── neat.css │ │ ├── neat.min.css │ │ ├── neo.css │ │ ├── neo.min.css │ │ ├── night.css │ │ ├── night.min.css │ │ ├── oceanic-next.css │ │ ├── oceanic-next.min.css │ │ ├── panda-syntax.css │ │ ├── panda-syntax.min.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-dark.min.css │ │ ├── paraiso-light.css │ │ ├── paraiso-light.min.css │ │ ├── pastel-on-dark.css │ │ ├── pastel-on-dark.min.css │ │ ├── railscasts.css │ │ ├── railscasts.min.css │ │ ├── rubyblue.css │ │ ├── rubyblue.min.css │ │ ├── seti.css │ │ ├── seti.min.css │ │ ├── shadowfox.css │ │ ├── shadowfox.min.css │ │ ├── solarized.css │ │ ├── solarized.min.css │ │ ├── the-matrix.css │ │ ├── the-matrix.min.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-bright.min.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night-eighties.min.css │ │ ├── ttcn.css │ │ ├── ttcn.min.css │ │ ├── twilight.css │ │ ├── twilight.min.css │ │ ├── vibrant-ink.css │ │ ├── vibrant-ink.min.css │ │ ├── xq-dark.css │ │ ├── xq-dark.min.css │ │ ├── xq-light.css │ │ ├── xq-light.min.css │ │ ├── yeti.css │ │ ├── yeti.min.css │ │ ├── zenburn.css │ │ └── zenburn.min.css │ ├── cropperjs │ ├── LICENSE │ ├── css │ │ ├── cropper.css │ │ └── cropper.min.css │ └── js │ │ ├── cropper.js │ │ └── cropper.min.js │ ├── diff │ ├── LICENSE │ └── js │ │ ├── diff.js │ │ └── diff.min.js │ ├── dragula │ ├── css │ │ ├── dragula.css │ │ └── dragula.min.css │ ├── js │ │ ├── dragula.js │ │ └── dragula.min.js │ └── license │ ├── focus-visible │ ├── LICENSE.md │ └── js │ │ ├── focus-visible.js │ │ ├── focus-visible.min.js │ │ └── focus-visible.min.js.map │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── joomla-custom-elements │ ├── LICENSE │ ├── css │ │ ├── joomla-alert.css │ │ ├── joomla-alert.min.css │ │ ├── joomla-panels.css │ │ └── joomla-panels.min.css │ └── js │ │ ├── joomla-alert-es5.js │ │ ├── joomla-alert-es5.min.js │ │ ├── joomla-alert.js │ │ ├── joomla-alert.min.js │ │ ├── joomla-panels-es5.js │ │ ├── joomla-panels-es5.min.js │ │ ├── joomla-panels.js │ │ └── joomla-panels.min.js │ ├── jquery-migrate │ ├── LICENSE.txt │ └── js │ │ ├── jquery-migrate.js │ │ └── jquery-migrate.min.js │ ├── jquery-ui │ └── js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.sortable.js │ │ └── jquery.ui.sortable.min.js │ ├── jquery │ ├── LICENSE.txt │ └── js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── mediaelement │ ├── css │ │ ├── mediaelementplayer-legacy.css │ │ ├── mediaelementplayer-legacy.min.css │ │ ├── mediaelementplayer.css │ │ ├── mediaelementplayer.min.css │ │ ├── mejs-controls.png │ │ └── mejs-controls.svg │ └── js │ │ ├── mediaelement-and-player.js │ │ ├── mediaelement-and-player.min.js │ │ ├── mediaelement-flash-audio-ogg.swf │ │ ├── mediaelement-flash-audio.swf │ │ ├── mediaelement-flash-video-hls.swf │ │ ├── mediaelement-flash-video-mdash.swf │ │ ├── mediaelement-flash-video.swf │ │ ├── mediaelement.js │ │ └── mediaelement.min.js │ ├── minicolors │ ├── LICENSE.md │ ├── css │ │ ├── jquery.minicolors.css │ │ ├── jquery.minicolors.min.css │ │ └── jquery.minicolors.png │ └── js │ │ ├── jquery-minicolors.js │ │ ├── jquery-minicolors.min.js │ │ └── jquery.minicolors.min.js │ ├── punycode │ ├── LICENSE-MIT.txt │ └── js │ │ ├── punycode.js │ │ └── punycode.min.js │ ├── tinymce │ ├── changelog.txt │ ├── langs │ │ ├── af.js │ │ ├── af.min.js │ │ ├── ar.js │ │ ├── ar.min.js │ │ ├── be.js │ │ ├── be.min.js │ │ ├── bg.js │ │ ├── bg.min.js │ │ ├── bs.js │ │ ├── bs.min.js │ │ ├── ca.js │ │ ├── ca.min.js │ │ ├── cs.js │ │ ├── cs.min.js │ │ ├── cy.js │ │ ├── cy.min.js │ │ ├── da.js │ │ ├── da.min.js │ │ ├── de.js │ │ ├── de.min.js │ │ ├── el.js │ │ ├── el.min.js │ │ ├── es.js │ │ ├── es.min.js │ │ ├── et.js │ │ ├── et.min.js │ │ ├── eu.js │ │ ├── eu.min.js │ │ ├── fa.js │ │ ├── fa.min.js │ │ ├── fi.js │ │ ├── fi.min.js │ │ ├── fo.js │ │ ├── fo.min.js │ │ ├── fr.js │ │ ├── fr.min.js │ │ ├── ga.js │ │ ├── ga.min.js │ │ ├── gl.js │ │ ├── gl.min.js │ │ ├── he.js │ │ ├── he.min.js │ │ ├── hr.js │ │ ├── hr.min.js │ │ ├── hu.js │ │ ├── hu.min.js │ │ ├── id.js │ │ ├── id.min.js │ │ ├── it.js │ │ ├── it.min.js │ │ ├── ja.js │ │ ├── ja.min.js │ │ ├── ka.js │ │ ├── ka.min.js │ │ ├── km.js │ │ ├── km.min.js │ │ ├── ko.js │ │ ├── ko.min.js │ │ ├── lb.js │ │ ├── lb.min.js │ │ ├── lt.js │ │ ├── lt.min.js │ │ ├── lv.js │ │ ├── lv.min.js │ │ ├── mk.js │ │ ├── mk.min.js │ │ ├── ms.js │ │ ├── ms.min.js │ │ ├── nb.js │ │ ├── nb.min.js │ │ ├── nl.js │ │ ├── nl.min.js │ │ ├── pl.js │ │ ├── pl.min.js │ │ ├── pt-BR.js │ │ ├── pt-BR.min.js │ │ ├── pt-PT.js │ │ ├── pt-PT.min.js │ │ ├── readme.md │ │ ├── ro.js │ │ ├── ro.min.js │ │ ├── ru.js │ │ ├── ru.min.js │ │ ├── si-LK.js │ │ ├── si-LK.min.js │ │ ├── sk.js │ │ ├── sk.min.js │ │ ├── sl.js │ │ ├── sl.min.js │ │ ├── sr.js │ │ ├── sr.min.js │ │ ├── sv.js │ │ ├── sv.min.js │ │ ├── sw.js │ │ ├── sw.min.js │ │ ├── sy.js │ │ ├── sy.min.js │ │ ├── ta.js │ │ ├── ta.min.js │ │ ├── th.js │ │ ├── th.min.js │ │ ├── tr.js │ │ ├── tr.min.js │ │ ├── ug.js │ │ ├── ug.min.js │ │ ├── uk.js │ │ ├── uk.min.js │ │ ├── vi.js │ │ ├── vi.min.js │ │ ├── zh-CN.js │ │ ├── zh-CN.min.js │ │ ├── zh-TW.js │ │ └── zh-TW.min.js │ ├── license.txt │ ├── plugins │ │ ├── advlist │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ ├── prism.css │ │ │ │ └── prism.min.css │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ ├── visualblocks.css │ │ │ │ └── visualblocks.min.css │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── content.mobile.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-mobile.woff │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ ├── skin.min.css │ │ │ └── skin.mobile.min.css │ ├── templates │ │ ├── layout1.html │ │ └── snippet1.html │ ├── themes │ │ ├── inlite │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── mobile │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── modern │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ ├── tinymce.js │ └── tinymce.min.js │ └── webcomponentsjs │ ├── LICENSE.md │ └── js │ ├── webcomponents-ce.js │ ├── webcomponents-ce.min.js │ ├── webcomponents-sd-ce-pf.js │ ├── webcomponents-sd-ce-pf.min.js │ ├── webcomponents-sd-ce.js │ ├── webcomponents-sd-ce.min.js │ ├── webcomponents-sd.js │ └── webcomponents-sd.min.js ├── 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_search │ ├── Helper │ │ └── SearchHelper.php │ ├── mod_search.php │ ├── mod_search.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.json ├── phpunit.xml.dist ├── plugins ├── 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 ├── content │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 ├── quickicon │ ├── extensionupdate │ │ ├── extensionupdate.php │ │ └── extensionupdate.xml │ ├── joomlaupdate │ │ ├── joomlaupdate.php │ │ └── joomlaupdate.xml │ └── phpversioncheck │ │ ├── phpversioncheck.php │ │ └── phpversioncheck.xml ├── sampledata │ ├── blog │ │ ├── blog.php │ │ └── blog.xml │ └── multilang │ │ ├── multilang.php │ │ └── multilang.xml ├── search │ ├── 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 ├── system │ ├── cache │ │ ├── cache.php │ │ └── cache.xml │ ├── debug │ │ ├── debug.php │ │ ├── debug.xml │ │ └── debugmonitor.php │ ├── fields │ │ ├── fields.php │ │ └── fields.xml │ ├── highlight │ │ ├── highlight.php │ │ └── highlight.xml │ ├── httpheaders │ │ ├── httpheaders.php │ │ ├── httpheaders.xml │ │ ├── postinstall │ │ │ └── introduction.php │ │ └── subform │ │ │ ├── cspkeyvalue.xml │ │ │ └── customhttpheaders.xml │ ├── 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 │ ├── redirect │ │ ├── form │ │ │ └── excludes.xml │ │ ├── redirect.php │ │ └── redirect.xml │ ├── remember │ │ ├── remember.php │ │ └── remember.xml │ ├── sef │ │ ├── sef.php │ │ └── sef.xml │ ├── stats │ │ ├── field │ │ │ ├── base.php │ │ │ ├── data.php │ │ │ └── uniqueid.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 ├── robots.txt.dist ├── scss-lint.yml ├── templates ├── cassiopeia │ ├── component.php │ ├── css │ │ ├── offline.css │ │ ├── template.css │ │ └── template.min.css │ ├── error.php │ ├── favicon.ico │ ├── html │ │ ├── layouts │ │ │ └── joomla │ │ │ │ └── form │ │ │ │ └── field │ │ │ │ └── user.php │ │ └── modules.php │ ├── images │ │ ├── logo.svg │ │ └── system │ │ │ ├── rating_star.png │ │ │ ├── rating_star_blank.png │ │ │ ├── sort_asc.png │ │ │ └── sort_desc.png │ ├── index.php │ ├── 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 │ │ ├── template.scss │ │ └── vendor │ │ │ ├── _awesomplete.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 │ ├── component.php │ ├── css │ ├── editor.css │ ├── error.css │ ├── error_rtl.css │ ├── general.css │ ├── offline.css │ └── offline_rtl.css │ ├── error.php │ ├── html │ └── modules.php │ ├── incompatible.html │ ├── index.php │ ├── js │ └── error-locales.js │ └── offline.php ├── tests └── README.md ├── tmp └── index.html ├── travisci-phpunit.xml └── web.config.txt /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.drone.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.hound.yml -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.php_cs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'scss_lint', '~> 0.56.0' 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/README.txt -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/RoboFile.php -------------------------------------------------------------------------------- /administrator/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/cache/index.html -------------------------------------------------------------------------------- /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_contact/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__contact_details`; 2 | 3 | -------------------------------------------------------------------------------- /administrator/components/com_newsfeeds/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__newsfeeds`; 2 | 3 | -------------------------------------------------------------------------------- /administrator/help/en-GB/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/help/en-GB/toc.json -------------------------------------------------------------------------------- /administrator/help/helpsites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/help/helpsites.xml -------------------------------------------------------------------------------- /administrator/includes/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/includes/app.php -------------------------------------------------------------------------------- /administrator/includes/defines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/includes/defines.php -------------------------------------------------------------------------------- /administrator/includes/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/includes/framework.php -------------------------------------------------------------------------------- /administrator/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/index.php -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/language/en-GB/en-GB.ini -------------------------------------------------------------------------------- /administrator/language/en-GB/en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/language/en-GB/en-GB.xml -------------------------------------------------------------------------------- /administrator/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/logs/index.html -------------------------------------------------------------------------------- /administrator/templates/atum/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/templates/atum/error.php -------------------------------------------------------------------------------- /administrator/templates/atum/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/templates/atum/index.php -------------------------------------------------------------------------------- /administrator/templates/atum/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/administrator/templates/atum/login.php -------------------------------------------------------------------------------- /appveyor-phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/appveyor-phpunit.xml -------------------------------------------------------------------------------- /cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/cache/index.html -------------------------------------------------------------------------------- /cli/finder_indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/cli/finder_indexer.php -------------------------------------------------------------------------------- /cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/cli/index.html -------------------------------------------------------------------------------- /cli/joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/cli/joomla.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/codeception.yml -------------------------------------------------------------------------------- /components/com_ajax/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_ajax/ajax.php -------------------------------------------------------------------------------- /components/com_banners/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_banners/router.php -------------------------------------------------------------------------------- /components/com_config/forms/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_config/forms/config.xml -------------------------------------------------------------------------------- /components/com_contact/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_contact/dispatcher.php -------------------------------------------------------------------------------- /components/com_contact/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_contact/router.php -------------------------------------------------------------------------------- /components/com_content/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_content/router.php -------------------------------------------------------------------------------- /components/com_fields/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_fields/dispatcher.php -------------------------------------------------------------------------------- /components/com_fields/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_fields/fields.php -------------------------------------------------------------------------------- /components/com_finder/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_finder/dispatcher.php -------------------------------------------------------------------------------- /components/com_finder/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_finder/router.php -------------------------------------------------------------------------------- /components/com_mailto/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_mailto/dispatcher.php -------------------------------------------------------------------------------- /components/com_mailto/mailto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_mailto/mailto.xml -------------------------------------------------------------------------------- /components/com_newsfeeds/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_newsfeeds/router.php -------------------------------------------------------------------------------- /components/com_search/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_search/dispatcher.php -------------------------------------------------------------------------------- /components/com_search/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_search/router.php -------------------------------------------------------------------------------- /components/com_tags/Model/TagModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/Model/TagModel.php -------------------------------------------------------------------------------- /components/com_tags/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/dispatcher.php -------------------------------------------------------------------------------- /components/com_tags/helpers/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/helpers/route.php -------------------------------------------------------------------------------- /components/com_tags/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/router.php -------------------------------------------------------------------------------- /components/com_tags/tmpl/tag/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/tmpl/tag/list.php -------------------------------------------------------------------------------- /components/com_tags/tmpl/tag/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_tags/tmpl/tag/list.xml -------------------------------------------------------------------------------- /components/com_users/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/dispatcher.php -------------------------------------------------------------------------------- /components/com_users/forms/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/forms/login.xml -------------------------------------------------------------------------------- /components/com_users/forms/profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/forms/profile.xml -------------------------------------------------------------------------------- /components/com_users/forms/remind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/forms/remind.xml -------------------------------------------------------------------------------- /components/com_users/helpers/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/helpers/route.php -------------------------------------------------------------------------------- /components/com_users/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_users/router.php -------------------------------------------------------------------------------- /components/com_wrapper/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_wrapper/dispatcher.php -------------------------------------------------------------------------------- /components/com_wrapper/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_wrapper/router.php -------------------------------------------------------------------------------- /components/com_wrapper/wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/com_wrapper/wrapper.xml -------------------------------------------------------------------------------- /components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/components/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/composer.lock -------------------------------------------------------------------------------- /dev/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/dev/assets/index.html -------------------------------------------------------------------------------- /drone-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/drone-package.json -------------------------------------------------------------------------------- /htaccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/htaccess.txt -------------------------------------------------------------------------------- /images/banners/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/banner.jpg -------------------------------------------------------------------------------- /images/banners/osmbanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/osmbanner1.png -------------------------------------------------------------------------------- /images/banners/osmbanner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/osmbanner2.png -------------------------------------------------------------------------------- /images/banners/shop-ad-books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/shop-ad-books.jpg -------------------------------------------------------------------------------- /images/banners/shop-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/shop-ad.jpg -------------------------------------------------------------------------------- /images/banners/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/banners/white.png -------------------------------------------------------------------------------- /images/headers/blue-flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/headers/blue-flower.jpg -------------------------------------------------------------------------------- /images/headers/maple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/headers/maple.jpg -------------------------------------------------------------------------------- /images/headers/raindrops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/headers/raindrops.jpg -------------------------------------------------------------------------------- /images/headers/walden-pond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/headers/walden-pond.jpg -------------------------------------------------------------------------------- /images/headers/windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/headers/windows.jpg -------------------------------------------------------------------------------- /images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/index.html -------------------------------------------------------------------------------- /images/joomla_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/joomla_black.png -------------------------------------------------------------------------------- /images/powered_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/powered_by.png -------------------------------------------------------------------------------- /images/sampledata/fruitshop/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/sampledata/fruitshop/apple.jpg -------------------------------------------------------------------------------- /images/sampledata/fruitshop/fruits.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/sampledata/fruitshop/fruits.gif -------------------------------------------------------------------------------- /images/sampledata/parks/parks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/images/sampledata/parks/parks.gif -------------------------------------------------------------------------------- /includes/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/includes/app.php -------------------------------------------------------------------------------- /includes/defines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/includes/defines.php -------------------------------------------------------------------------------- /includes/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/includes/framework.php -------------------------------------------------------------------------------- /includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/includes/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/index.php -------------------------------------------------------------------------------- /installation/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/INSTALL -------------------------------------------------------------------------------- /installation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/LICENSE.txt -------------------------------------------------------------------------------- /installation/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/cache/index.html -------------------------------------------------------------------------------- /installation/configuration.php-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/configuration.php-dist -------------------------------------------------------------------------------- /installation/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/favicon.ico -------------------------------------------------------------------------------- /installation/forms/language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/forms/language.xml -------------------------------------------------------------------------------- /installation/forms/preinstall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/forms/preinstall.xml -------------------------------------------------------------------------------- /installation/forms/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/forms/setup.xml -------------------------------------------------------------------------------- /installation/includes/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/includes/app.php -------------------------------------------------------------------------------- /installation/includes/defines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/includes/defines.php -------------------------------------------------------------------------------- /installation/includes/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/includes/framework.php -------------------------------------------------------------------------------- /installation/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/index.php -------------------------------------------------------------------------------- /installation/language/en-GB/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/language/en-GB/en-GB.ini -------------------------------------------------------------------------------- /installation/localise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/localise.xml -------------------------------------------------------------------------------- /installation/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /installation/sql/mysql/joomla.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/sql/mysql/joomla.sql -------------------------------------------------------------------------------- /installation/template/body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/body.php -------------------------------------------------------------------------------- /installation/template/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/error.php -------------------------------------------------------------------------------- /installation/template/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/index.php -------------------------------------------------------------------------------- /installation/template/js/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/js/remove.js -------------------------------------------------------------------------------- /installation/template/js/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/js/setup.js -------------------------------------------------------------------------------- /installation/template/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/template/message.php -------------------------------------------------------------------------------- /installation/tmpl/error/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/tmpl/error/default.php -------------------------------------------------------------------------------- /installation/tmpl/setup/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/installation/tmpl/setup/default.php -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_ajax.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_ajax.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_config.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_finder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_finder.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_mailto.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_mailto.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_media.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_media.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_search.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_search.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_tags.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_tags.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.com_users.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.com_users.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.finder_cli.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.finder_cli.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.lib_joomla.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.lib_joomla.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.localise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.localise.php -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_custom.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_feed.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_feed.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_finder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_finder.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_footer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_footer.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_login.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_login.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_menu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_menu.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_search.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_search.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.mod_stats.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.mod_stats.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/en-GB.xml -------------------------------------------------------------------------------- /language/en-GB/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/en-GB/install.xml -------------------------------------------------------------------------------- /language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/index.html -------------------------------------------------------------------------------- /language/overrides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/language/overrides/index.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/joomla/button/iconclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/button/iconclass.php -------------------------------------------------------------------------------- /layouts/joomla/content/icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/content/icons.php -------------------------------------------------------------------------------- /layouts/joomla/content/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/content/language.php -------------------------------------------------------------------------------- /layouts/joomla/content/readmore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/content/readmore.php -------------------------------------------------------------------------------- /layouts/joomla/content/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/content/tags.php -------------------------------------------------------------------------------- /layouts/joomla/edit/fieldset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/fieldset.php -------------------------------------------------------------------------------- /layouts/joomla/edit/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/global.php -------------------------------------------------------------------------------- /layouts/joomla/edit/item_title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/item_title.php -------------------------------------------------------------------------------- /layouts/joomla/edit/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/metadata.php -------------------------------------------------------------------------------- /layouts/joomla/edit/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/params.php -------------------------------------------------------------------------------- /layouts/joomla/edit/title_alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/edit/title_alias.php -------------------------------------------------------------------------------- /layouts/joomla/editors/buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/editors/buttons.php -------------------------------------------------------------------------------- /layouts/joomla/error/backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/error/backtrace.php -------------------------------------------------------------------------------- /layouts/joomla/error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/error/index.html -------------------------------------------------------------------------------- /layouts/joomla/form/field/combo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/combo.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/email.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/file.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/media.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/meter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/meter.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/range.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/rules.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/tel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/tel.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/text.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/url.php -------------------------------------------------------------------------------- /layouts/joomla/form/field/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/field/user.php -------------------------------------------------------------------------------- /layouts/joomla/form/renderfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/renderfield.php -------------------------------------------------------------------------------- /layouts/joomla/form/renderlabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/form/renderlabel.php -------------------------------------------------------------------------------- /layouts/joomla/html/batch/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/html/batch/item.php -------------------------------------------------------------------------------- /layouts/joomla/html/batch/tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/html/batch/tag.php -------------------------------------------------------------------------------- /layouts/joomla/html/batch/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/html/batch/user.php -------------------------------------------------------------------------------- /layouts/joomla/html/treeprefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/html/treeprefix.php -------------------------------------------------------------------------------- /layouts/joomla/links/groupclose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/links/groupclose.php -------------------------------------------------------------------------------- /layouts/joomla/links/groupopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/links/groupopen.php -------------------------------------------------------------------------------- /layouts/joomla/links/groupsopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/links/groupsopen.php -------------------------------------------------------------------------------- /layouts/joomla/links/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/links/link.php -------------------------------------------------------------------------------- /layouts/joomla/modal/body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/modal/body.php -------------------------------------------------------------------------------- /layouts/joomla/modal/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/modal/footer.php -------------------------------------------------------------------------------- /layouts/joomla/modal/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/modal/header.php -------------------------------------------------------------------------------- /layouts/joomla/modal/iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/modal/iframe.php -------------------------------------------------------------------------------- /layouts/joomla/modal/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/modal/main.php -------------------------------------------------------------------------------- /layouts/joomla/pagination/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/pagination/link.php -------------------------------------------------------------------------------- /layouts/joomla/pagination/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/pagination/links.php -------------------------------------------------------------------------------- /layouts/joomla/pagination/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/pagination/list.php -------------------------------------------------------------------------------- /layouts/joomla/quickicons/icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/quickicons/icon.php -------------------------------------------------------------------------------- /layouts/joomla/sidebars/submenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/sidebars/submenu.php -------------------------------------------------------------------------------- /layouts/joomla/system/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/system/message.php -------------------------------------------------------------------------------- /layouts/joomla/tinymce/textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/tinymce/textarea.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/base.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/basic.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/batch.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/dropdown.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/link.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/modal.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/popup.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/slider.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/standard.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/title.php -------------------------------------------------------------------------------- /layouts/joomla/toolbar/versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/layouts/joomla/toolbar/versions.php -------------------------------------------------------------------------------- /libraries/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/.htaccess -------------------------------------------------------------------------------- /libraries/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/bootstrap.php -------------------------------------------------------------------------------- /libraries/classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/classmap.php -------------------------------------------------------------------------------- /libraries/cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms.php -------------------------------------------------------------------------------- /libraries/cms/class/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/class/loader.php -------------------------------------------------------------------------------- /libraries/cms/html/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/access.php -------------------------------------------------------------------------------- /libraries/cms/html/batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/batch.php -------------------------------------------------------------------------------- /libraries/cms/html/behavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/behavior.php -------------------------------------------------------------------------------- /libraries/cms/html/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/bootstrap.php -------------------------------------------------------------------------------- /libraries/cms/html/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/category.php -------------------------------------------------------------------------------- /libraries/cms/html/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/content.php -------------------------------------------------------------------------------- /libraries/cms/html/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/date.php -------------------------------------------------------------------------------- /libraries/cms/html/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/debug.php -------------------------------------------------------------------------------- /libraries/cms/html/dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/dropdown.php -------------------------------------------------------------------------------- /libraries/cms/html/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/email.php -------------------------------------------------------------------------------- /libraries/cms/html/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/form.php -------------------------------------------------------------------------------- /libraries/cms/html/formbehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/formbehavior.php -------------------------------------------------------------------------------- /libraries/cms/html/grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/grid.php -------------------------------------------------------------------------------- /libraries/cms/html/icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/icons.php -------------------------------------------------------------------------------- /libraries/cms/html/jgrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/jgrid.php -------------------------------------------------------------------------------- /libraries/cms/html/jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/jquery.php -------------------------------------------------------------------------------- /libraries/cms/html/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/links.php -------------------------------------------------------------------------------- /libraries/cms/html/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/list.php -------------------------------------------------------------------------------- /libraries/cms/html/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/menu.php -------------------------------------------------------------------------------- /libraries/cms/html/number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/number.php -------------------------------------------------------------------------------- /libraries/cms/html/searchtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/searchtools.php -------------------------------------------------------------------------------- /libraries/cms/html/select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/select.php -------------------------------------------------------------------------------- /libraries/cms/html/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/sidebar.php -------------------------------------------------------------------------------- /libraries/cms/html/sortablelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/sortablelist.php -------------------------------------------------------------------------------- /libraries/cms/html/string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/string.php -------------------------------------------------------------------------------- /libraries/cms/html/tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/tag.php -------------------------------------------------------------------------------- /libraries/cms/html/tel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/tel.php -------------------------------------------------------------------------------- /libraries/cms/html/uitab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/uitab.php -------------------------------------------------------------------------------- /libraries/cms/html/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/cms/html/user.php -------------------------------------------------------------------------------- /libraries/extensions.classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/extensions.classmap.php -------------------------------------------------------------------------------- /libraries/import.legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/import.legacy.php -------------------------------------------------------------------------------- /libraries/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/import.php -------------------------------------------------------------------------------- /libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/index.html -------------------------------------------------------------------------------- /libraries/joomla/base/adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/base/adapter.php -------------------------------------------------------------------------------- /libraries/joomla/model/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/model/base.php -------------------------------------------------------------------------------- /libraries/joomla/model/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/model/database.php -------------------------------------------------------------------------------- /libraries/joomla/model/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/model/model.php -------------------------------------------------------------------------------- /libraries/joomla/view/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/view/base.php -------------------------------------------------------------------------------- /libraries/joomla/view/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/view/html.php -------------------------------------------------------------------------------- /libraries/joomla/view/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/joomla/view/view.php -------------------------------------------------------------------------------- /libraries/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/loader.php -------------------------------------------------------------------------------- /libraries/namespacemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/namespacemap.php -------------------------------------------------------------------------------- /libraries/php-encryption/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/php-encryption/Crypto.php -------------------------------------------------------------------------------- /libraries/phpass/PasswordHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/phpass/PasswordHash.php -------------------------------------------------------------------------------- /libraries/src/Access/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Access/Access.php -------------------------------------------------------------------------------- /libraries/src/Access/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Access/Rule.php -------------------------------------------------------------------------------- /libraries/src/Access/Rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Access/Rules.php -------------------------------------------------------------------------------- /libraries/src/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Cache/Cache.php -------------------------------------------------------------------------------- /libraries/src/Captcha/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Captcha/Captcha.php -------------------------------------------------------------------------------- /libraries/src/Client/FtpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Client/FtpClient.php -------------------------------------------------------------------------------- /libraries/src/Crypt/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Crypt/Crypt.php -------------------------------------------------------------------------------- /libraries/src/Date/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Date/Date.php -------------------------------------------------------------------------------- /libraries/src/Document/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Document/Document.php -------------------------------------------------------------------------------- /libraries/src/Document/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Document/Factory.php -------------------------------------------------------------------------------- /libraries/src/Editor/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Editor/Editor.php -------------------------------------------------------------------------------- /libraries/src/Encrypt/Aes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Encrypt/Aes.php -------------------------------------------------------------------------------- /libraries/src/Encrypt/Base32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Encrypt/Base32.php -------------------------------------------------------------------------------- /libraries/src/Encrypt/Randval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Encrypt/Randval.php -------------------------------------------------------------------------------- /libraries/src/Encrypt/Totp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Encrypt/Totp.php -------------------------------------------------------------------------------- /libraries/src/Event/ErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Event/ErrorEvent.php -------------------------------------------------------------------------------- /libraries/src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Factory.php -------------------------------------------------------------------------------- /libraries/src/Feed/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/Feed.php -------------------------------------------------------------------------------- /libraries/src/Feed/FeedEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/FeedEntry.php -------------------------------------------------------------------------------- /libraries/src/Feed/FeedFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/FeedFactory.php -------------------------------------------------------------------------------- /libraries/src/Feed/FeedLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/FeedLink.php -------------------------------------------------------------------------------- /libraries/src/Feed/FeedParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/FeedParser.php -------------------------------------------------------------------------------- /libraries/src/Feed/FeedPerson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Feed/FeedPerson.php -------------------------------------------------------------------------------- /libraries/src/Filesystem/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Filesystem/File.php -------------------------------------------------------------------------------- /libraries/src/Filesystem/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Filesystem/Folder.php -------------------------------------------------------------------------------- /libraries/src/Filesystem/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Filesystem/Path.php -------------------------------------------------------------------------------- /libraries/src/Filesystem/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Filesystem/Stream.php -------------------------------------------------------------------------------- /libraries/src/Form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/Form.php -------------------------------------------------------------------------------- /libraries/src/Form/FormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/FormFactory.php -------------------------------------------------------------------------------- /libraries/src/Form/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/FormField.php -------------------------------------------------------------------------------- /libraries/src/Form/FormHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/FormHelper.php -------------------------------------------------------------------------------- /libraries/src/Form/FormRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/FormRule.php -------------------------------------------------------------------------------- /libraries/src/Form/FormWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/FormWrapper.php -------------------------------------------------------------------------------- /libraries/src/Form/Rule/TelRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/Rule/TelRule.php -------------------------------------------------------------------------------- /libraries/src/Form/Rule/UrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Form/Rule/UrlRule.php -------------------------------------------------------------------------------- /libraries/src/HTML/HTMLHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/HTML/HTMLHelper.php -------------------------------------------------------------------------------- /libraries/src/HTML/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/HTML/Registry.php -------------------------------------------------------------------------------- /libraries/src/Help/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Help/Help.php -------------------------------------------------------------------------------- /libraries/src/Helper/CMSHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Helper/CMSHelper.php -------------------------------------------------------------------------------- /libraries/src/Helper/TagsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Helper/TagsHelper.php -------------------------------------------------------------------------------- /libraries/src/Http/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Http/Http.php -------------------------------------------------------------------------------- /libraries/src/Http/HttpFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Http/HttpFactory.php -------------------------------------------------------------------------------- /libraries/src/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Http/Response.php -------------------------------------------------------------------------------- /libraries/src/Image/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Image/Image.php -------------------------------------------------------------------------------- /libraries/src/Image/ImageFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Image/ImageFilter.php -------------------------------------------------------------------------------- /libraries/src/Input/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Input/Cli.php -------------------------------------------------------------------------------- /libraries/src/Input/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Input/Cookie.php -------------------------------------------------------------------------------- /libraries/src/Input/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Input/Files.php -------------------------------------------------------------------------------- /libraries/src/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Input/Input.php -------------------------------------------------------------------------------- /libraries/src/Input/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Input/Json.php -------------------------------------------------------------------------------- /libraries/src/Language/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Language/Language.php -------------------------------------------------------------------------------- /libraries/src/Language/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Language/Text.php -------------------------------------------------------------------------------- /libraries/src/Layout/BaseLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Layout/BaseLayout.php -------------------------------------------------------------------------------- /libraries/src/Layout/FileLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Layout/FileLayout.php -------------------------------------------------------------------------------- /libraries/src/Log/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Log/Log.php -------------------------------------------------------------------------------- /libraries/src/Log/LogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Log/LogEntry.php -------------------------------------------------------------------------------- /libraries/src/Log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Log/Logger.php -------------------------------------------------------------------------------- /libraries/src/MVC/View/FormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/MVC/View/FormView.php -------------------------------------------------------------------------------- /libraries/src/MVC/View/HtmlView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/MVC/View/HtmlView.php -------------------------------------------------------------------------------- /libraries/src/MVC/View/ListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/MVC/View/ListView.php -------------------------------------------------------------------------------- /libraries/src/Mail/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Mail/Mail.php -------------------------------------------------------------------------------- /libraries/src/Mail/MailHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Mail/MailHelper.php -------------------------------------------------------------------------------- /libraries/src/Menu/AbstractMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/AbstractMenu.php -------------------------------------------------------------------------------- /libraries/src/Menu/MenuFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/MenuFactory.php -------------------------------------------------------------------------------- /libraries/src/Menu/MenuHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/MenuHelper.php -------------------------------------------------------------------------------- /libraries/src/Menu/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/MenuItem.php -------------------------------------------------------------------------------- /libraries/src/Menu/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/Node.php -------------------------------------------------------------------------------- /libraries/src/Menu/Node/Heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/Node/Heading.php -------------------------------------------------------------------------------- /libraries/src/Menu/Node/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/Node/Url.php -------------------------------------------------------------------------------- /libraries/src/Menu/SiteMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/SiteMenu.php -------------------------------------------------------------------------------- /libraries/src/Menu/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Menu/Tree.php -------------------------------------------------------------------------------- /libraries/src/Microdata/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Microdata/types.json -------------------------------------------------------------------------------- /libraries/src/Object/CMSObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Object/CMSObject.php -------------------------------------------------------------------------------- /libraries/src/Pathway/Pathway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Pathway/Pathway.php -------------------------------------------------------------------------------- /libraries/src/Plugin/CMSPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Plugin/CMSPlugin.php -------------------------------------------------------------------------------- /libraries/src/Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Profiler/Profiler.php -------------------------------------------------------------------------------- /libraries/src/Router/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Router/Route.php -------------------------------------------------------------------------------- /libraries/src/Router/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Router/Router.php -------------------------------------------------------------------------------- /libraries/src/Router/SiteRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Router/SiteRouter.php -------------------------------------------------------------------------------- /libraries/src/Schema/ChangeItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Schema/ChangeItem.php -------------------------------------------------------------------------------- /libraries/src/Schema/ChangeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Schema/ChangeSet.php -------------------------------------------------------------------------------- /libraries/src/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Session/Session.php -------------------------------------------------------------------------------- /libraries/src/Table/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Asset.php -------------------------------------------------------------------------------- /libraries/src/Table/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Category.php -------------------------------------------------------------------------------- /libraries/src/Table/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Content.php -------------------------------------------------------------------------------- /libraries/src/Table/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/ContentType.php -------------------------------------------------------------------------------- /libraries/src/Table/CoreContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/CoreContent.php -------------------------------------------------------------------------------- /libraries/src/Table/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Extension.php -------------------------------------------------------------------------------- /libraries/src/Table/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Language.php -------------------------------------------------------------------------------- /libraries/src/Table/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Menu.php -------------------------------------------------------------------------------- /libraries/src/Table/MenuType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/MenuType.php -------------------------------------------------------------------------------- /libraries/src/Table/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Module.php -------------------------------------------------------------------------------- /libraries/src/Table/Nested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Nested.php -------------------------------------------------------------------------------- /libraries/src/Table/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Table.php -------------------------------------------------------------------------------- /libraries/src/Table/Ucm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Ucm.php -------------------------------------------------------------------------------- /libraries/src/Table/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Update.php -------------------------------------------------------------------------------- /libraries/src/Table/UpdateSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/UpdateSite.php -------------------------------------------------------------------------------- /libraries/src/Table/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/User.php -------------------------------------------------------------------------------- /libraries/src/Table/Usergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/Usergroup.php -------------------------------------------------------------------------------- /libraries/src/Table/ViewLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Table/ViewLevel.php -------------------------------------------------------------------------------- /libraries/src/Toolbar/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Toolbar/Toolbar.php -------------------------------------------------------------------------------- /libraries/src/UCM/UCM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/UCM/UCM.php -------------------------------------------------------------------------------- /libraries/src/UCM/UCMBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/UCM/UCMBase.php -------------------------------------------------------------------------------- /libraries/src/UCM/UCMContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/UCM/UCMContent.php -------------------------------------------------------------------------------- /libraries/src/UCM/UCMType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/UCM/UCMType.php -------------------------------------------------------------------------------- /libraries/src/Updater/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Updater/Update.php -------------------------------------------------------------------------------- /libraries/src/Updater/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Updater/Updater.php -------------------------------------------------------------------------------- /libraries/src/Uri/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Uri/Uri.php -------------------------------------------------------------------------------- /libraries/src/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/User/User.php -------------------------------------------------------------------------------- /libraries/src/User/UserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/User/UserHelper.php -------------------------------------------------------------------------------- /libraries/src/User/UserWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/User/UserWrapper.php -------------------------------------------------------------------------------- /libraries/src/Utility/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Utility/Utility.php -------------------------------------------------------------------------------- /libraries/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/src/Version.php -------------------------------------------------------------------------------- /libraries/vendor/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/.htaccess -------------------------------------------------------------------------------- /libraries/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/autoload.php -------------------------------------------------------------------------------- /libraries/vendor/bin/generate-defuse-key: -------------------------------------------------------------------------------- 1 | ../defuse/php-encryption/bin/generate-defuse-key -------------------------------------------------------------------------------- /libraries/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/composer/LICENSE -------------------------------------------------------------------------------- /libraries/vendor/joomla/di/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/joomla/di/LICENSE -------------------------------------------------------------------------------- /libraries/vendor/joomla/uri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/joomla/uri/LICENSE -------------------------------------------------------------------------------- /libraries/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.5 -------------------------------------------------------------------------------- /libraries/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /libraries/vendor/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/vendor/web.config -------------------------------------------------------------------------------- /libraries/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/libraries/web.config -------------------------------------------------------------------------------- /media/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/cache/index.html -------------------------------------------------------------------------------- /media/com_content/js/form-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_content/js/form-edit.js -------------------------------------------------------------------------------- /media/com_finder/css/dates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/css/dates.css -------------------------------------------------------------------------------- /media/com_finder/css/dates.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/css/dates.min.css -------------------------------------------------------------------------------- /media/com_finder/css/finder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/css/finder.css -------------------------------------------------------------------------------- /media/com_finder/css/finder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/css/finder.min.css -------------------------------------------------------------------------------- /media/com_finder/css/indexer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/css/indexer.css -------------------------------------------------------------------------------- /media/com_finder/js/filters.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/filters.es6.js -------------------------------------------------------------------------------- /media/com_finder/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/filters.js -------------------------------------------------------------------------------- /media/com_finder/js/filters.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/filters.min.js -------------------------------------------------------------------------------- /media/com_finder/js/finder-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/finder-edit.js -------------------------------------------------------------------------------- /media/com_finder/js/finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/finder.js -------------------------------------------------------------------------------- /media/com_finder/js/finder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/finder.min.js -------------------------------------------------------------------------------- /media/com_finder/js/index.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/index.es6.js -------------------------------------------------------------------------------- /media/com_finder/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/index.js -------------------------------------------------------------------------------- /media/com_finder/js/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/index.min.js -------------------------------------------------------------------------------- /media/com_finder/js/indexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/indexer.js -------------------------------------------------------------------------------- /media/com_finder/js/indexer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/indexer.min.js -------------------------------------------------------------------------------- /media/com_finder/js/maps.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/maps.es6.js -------------------------------------------------------------------------------- /media/com_finder/js/maps.es6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/maps.es6.min.js -------------------------------------------------------------------------------- /media/com_finder/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/maps.js -------------------------------------------------------------------------------- /media/com_finder/js/maps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_finder/js/maps.min.js -------------------------------------------------------------------------------- /media/com_installer/js/installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_installer/js/installer.js -------------------------------------------------------------------------------- /media/com_joomlaupdate/js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_joomlaupdate/js/update.js -------------------------------------------------------------------------------- /media/com_languages/js/overrider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_languages/js/overrider.js -------------------------------------------------------------------------------- /media/com_media/js/edit-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_media/js/edit-images.js -------------------------------------------------------------------------------- /media/com_tags/js/tag-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_tags/js/tag-default.js -------------------------------------------------------------------------------- /media/com_tags/js/tag-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_tags/js/tag-list.js -------------------------------------------------------------------------------- /media/com_tags/js/tag-list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_tags/js/tag-list.min.js -------------------------------------------------------------------------------- /media/com_tags/js/tags-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/com_tags/js/tags-default.js -------------------------------------------------------------------------------- /media/contacts/images/con_fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/contacts/images/con_fax.png -------------------------------------------------------------------------------- /media/contacts/images/con_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/contacts/images/con_info.png -------------------------------------------------------------------------------- /media/contacts/images/con_tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/contacts/images/con_tel.png -------------------------------------------------------------------------------- /media/editors/tinymce/js/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/editors/tinymce/js/tinymce.js -------------------------------------------------------------------------------- /media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/index.html -------------------------------------------------------------------------------- /media/legacy/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/css/chosen-sprite.png -------------------------------------------------------------------------------- /media/legacy/css/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/css/chosen.css -------------------------------------------------------------------------------- /media/legacy/css/chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/css/chosen.min.css -------------------------------------------------------------------------------- /media/legacy/css/sortablelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/css/sortablelist.css -------------------------------------------------------------------------------- /media/legacy/js/ajax-chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/ajax-chosen.js -------------------------------------------------------------------------------- /media/legacy/js/ajax-chosen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/ajax-chosen.min.js -------------------------------------------------------------------------------- /media/legacy/js/bootstrap-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/bootstrap-init.js -------------------------------------------------------------------------------- /media/legacy/js/chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/chosen.js -------------------------------------------------------------------------------- /media/legacy/js/chosen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/chosen.min.js -------------------------------------------------------------------------------- /media/legacy/js/frontediting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/frontediting.js -------------------------------------------------------------------------------- /media/legacy/js/frontediting.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/frontediting.min.js -------------------------------------------------------------------------------- /media/legacy/js/helpsite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/helpsite.js -------------------------------------------------------------------------------- /media/legacy/js/helpsite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/helpsite.min.js -------------------------------------------------------------------------------- /media/legacy/js/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/highlighter.js -------------------------------------------------------------------------------- /media/legacy/js/highlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/highlighter.min.js -------------------------------------------------------------------------------- /media/legacy/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/html5.js -------------------------------------------------------------------------------- /media/legacy/js/html5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/html5.min.js -------------------------------------------------------------------------------- /media/legacy/js/html5fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/html5fallback.js -------------------------------------------------------------------------------- /media/legacy/js/jquery-noconflict.js: -------------------------------------------------------------------------------- 1 | var $ = jQuery.noConflict(); 2 | -------------------------------------------------------------------------------- /media/legacy/js/jquery-noconflict.min.js: -------------------------------------------------------------------------------- 1 | var $=jQuery.noConflict(); -------------------------------------------------------------------------------- /media/legacy/js/sortablelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/sortablelist.js -------------------------------------------------------------------------------- /media/legacy/js/sortablelist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/sortablelist.min.js -------------------------------------------------------------------------------- /media/legacy/js/tabs-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/tabs-state.js -------------------------------------------------------------------------------- /media/legacy/js/tabs-state.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/tabs-state.min.js -------------------------------------------------------------------------------- /media/legacy/js/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/toolbar.js -------------------------------------------------------------------------------- /media/legacy/js/toolbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/toolbar.min.js -------------------------------------------------------------------------------- /media/legacy/js/treeselectmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/legacy/js/treeselectmenu.js -------------------------------------------------------------------------------- /media/mailto/images/close-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mailto/images/close-x.png -------------------------------------------------------------------------------- /media/mod_languages/images/af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/af.gif -------------------------------------------------------------------------------- /media/mod_languages/images/al.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/al.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ar.gif -------------------------------------------------------------------------------- /media/mod_languages/images/at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/at.gif -------------------------------------------------------------------------------- /media/mod_languages/images/az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/az.gif -------------------------------------------------------------------------------- /media/mod_languages/images/be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/be.gif -------------------------------------------------------------------------------- /media/mod_languages/images/belg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/belg.gif -------------------------------------------------------------------------------- /media/mod_languages/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/bg.gif -------------------------------------------------------------------------------- /media/mod_languages/images/bn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/bn.gif -------------------------------------------------------------------------------- /media/mod_languages/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/br.gif -------------------------------------------------------------------------------- /media/mod_languages/images/bs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/bs.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ca.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ch.gif -------------------------------------------------------------------------------- /media/mod_languages/images/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/cs.gif -------------------------------------------------------------------------------- /media/mod_languages/images/cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/cy.gif -------------------------------------------------------------------------------- /media/mod_languages/images/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/cz.gif -------------------------------------------------------------------------------- /media/mod_languages/images/da.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/da.gif -------------------------------------------------------------------------------- /media/mod_languages/images/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/de.gif -------------------------------------------------------------------------------- /media/mod_languages/images/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/dk.gif -------------------------------------------------------------------------------- /media/mod_languages/images/el.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/el.gif -------------------------------------------------------------------------------- /media/mod_languages/images/en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/en.gif -------------------------------------------------------------------------------- /media/mod_languages/images/eo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/eo.gif -------------------------------------------------------------------------------- /media/mod_languages/images/es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/es.gif -------------------------------------------------------------------------------- /media/mod_languages/images/et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/et.gif -------------------------------------------------------------------------------- /media/mod_languages/images/fa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/fa.gif -------------------------------------------------------------------------------- /media/mod_languages/images/fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/fi.gif -------------------------------------------------------------------------------- /media/mod_languages/images/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/fr.gif -------------------------------------------------------------------------------- /media/mod_languages/images/gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/gd.gif -------------------------------------------------------------------------------- /media/mod_languages/images/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/gl.gif -------------------------------------------------------------------------------- /media/mod_languages/images/he.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/he.gif -------------------------------------------------------------------------------- /media/mod_languages/images/hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/hi.gif -------------------------------------------------------------------------------- /media/mod_languages/images/hk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/hk.gif -------------------------------------------------------------------------------- /media/mod_languages/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/hr.gif -------------------------------------------------------------------------------- /media/mod_languages/images/hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/hu.gif -------------------------------------------------------------------------------- /media/mod_languages/images/hy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/hy.gif -------------------------------------------------------------------------------- /media/mod_languages/images/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/id.gif -------------------------------------------------------------------------------- /media/mod_languages/images/is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/is.gif -------------------------------------------------------------------------------- /media/mod_languages/images/it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/it.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ja.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ja.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ka.gif -------------------------------------------------------------------------------- /media/mod_languages/images/km.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/km.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ko.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ku.gif -------------------------------------------------------------------------------- /media/mod_languages/images/lo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/lo.gif -------------------------------------------------------------------------------- /media/mod_languages/images/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/lt.gif -------------------------------------------------------------------------------- /media/mod_languages/images/lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/lv.gif -------------------------------------------------------------------------------- /media/mod_languages/images/mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/mk.gif -------------------------------------------------------------------------------- /media/mod_languages/images/mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/mn.gif -------------------------------------------------------------------------------- /media/mod_languages/images/nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/nl.gif -------------------------------------------------------------------------------- /media/mod_languages/images/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/no.gif -------------------------------------------------------------------------------- /media/mod_languages/images/pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/pl.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ps.gif -------------------------------------------------------------------------------- /media/mod_languages/images/pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/pt.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ro.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ru.gif -------------------------------------------------------------------------------- /media/mod_languages/images/si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/si.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sk.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sl.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sr.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sv.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sw.gif -------------------------------------------------------------------------------- /media/mod_languages/images/sy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/sy.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ta.gif -------------------------------------------------------------------------------- /media/mod_languages/images/th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/th.gif -------------------------------------------------------------------------------- /media/mod_languages/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/tr.gif -------------------------------------------------------------------------------- /media/mod_languages/images/tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/tw.gif -------------------------------------------------------------------------------- /media/mod_languages/images/uk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/uk.gif -------------------------------------------------------------------------------- /media/mod_languages/images/ur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/ur.gif -------------------------------------------------------------------------------- /media/mod_languages/images/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/us.gif -------------------------------------------------------------------------------- /media/mod_languages/images/uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/uz.gif -------------------------------------------------------------------------------- /media/mod_languages/images/vi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/vi.gif -------------------------------------------------------------------------------- /media/mod_languages/images/zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_languages/images/zh.gif -------------------------------------------------------------------------------- /media/mod_login/js/admin-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_login/js/admin-login.js -------------------------------------------------------------------------------- /media/mod_menu/js/admin-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_menu/js/admin-menu.js -------------------------------------------------------------------------------- /media/mod_menu/js/admin-menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/mod_menu/js/admin-menu.min.js -------------------------------------------------------------------------------- /media/plg_system_debug/js/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/plg_system_debug/js/debug.js -------------------------------------------------------------------------------- /media/plg_system_stats/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/plg_system_stats/js/stats.js -------------------------------------------------------------------------------- /media/system/css/adminlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/adminlist.css -------------------------------------------------------------------------------- /media/system/css/adminlist.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/adminlist.min.css -------------------------------------------------------------------------------- /media/system/css/calendar-jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/calendar-jos.css -------------------------------------------------------------------------------- /media/system/css/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/debug.css -------------------------------------------------------------------------------- /media/system/css/debug.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/debug.min.css -------------------------------------------------------------------------------- /media/system/css/frontediting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/frontediting.css -------------------------------------------------------------------------------- /media/system/css/mootree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/mootree.css -------------------------------------------------------------------------------- /media/system/css/mootree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/mootree.min.css -------------------------------------------------------------------------------- /media/system/css/mootree_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/mootree_rtl.css -------------------------------------------------------------------------------- /media/system/css/mootree_rtl.min.css: -------------------------------------------------------------------------------- 1 | .mooTree_img{float:right} -------------------------------------------------------------------------------- /media/system/css/searchtools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/searchtools.css -------------------------------------------------------------------------------- /media/system/css/sortablelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/sortablelist.css -------------------------------------------------------------------------------- /media/system/css/system.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/system.css -------------------------------------------------------------------------------- /media/system/css/system.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/css/system.min.css -------------------------------------------------------------------------------- /media/system/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/ajax-loader.gif -------------------------------------------------------------------------------- /media/system/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/arrow.png -------------------------------------------------------------------------------- /media/system/images/arrow_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/arrow_rtl.png -------------------------------------------------------------------------------- /media/system/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/blank.png -------------------------------------------------------------------------------- /media/system/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/calendar.png -------------------------------------------------------------------------------- /media/system/images/checked_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/checked_out.png -------------------------------------------------------------------------------- /media/system/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/edit.png -------------------------------------------------------------------------------- /media/system/images/emailButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/emailButton.png -------------------------------------------------------------------------------- /media/system/images/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/icon_error.gif -------------------------------------------------------------------------------- /media/system/images/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent.png -------------------------------------------------------------------------------- /media/system/images/indent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent1.png -------------------------------------------------------------------------------- /media/system/images/indent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent2.png -------------------------------------------------------------------------------- /media/system/images/indent3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent3.png -------------------------------------------------------------------------------- /media/system/images/indent4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent4.png -------------------------------------------------------------------------------- /media/system/images/indent5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/indent5.png -------------------------------------------------------------------------------- /media/system/images/joomla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/joomla.png -------------------------------------------------------------------------------- /media/system/images/livemarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/livemarks.png -------------------------------------------------------------------------------- /media/system/images/mootree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/mootree.gif -------------------------------------------------------------------------------- /media/system/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/new.png -------------------------------------------------------------------------------- /media/system/images/no_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/no_indent.png -------------------------------------------------------------------------------- /media/system/images/notice-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/notice-info.png -------------------------------------------------------------------------------- /media/system/images/notice-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/notice-note.png -------------------------------------------------------------------------------- /media/system/images/pdf_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/pdf_button.png -------------------------------------------------------------------------------- /media/system/images/printButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/printButton.png -------------------------------------------------------------------------------- /media/system/images/rating_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/rating_star.png -------------------------------------------------------------------------------- /media/system/images/sort0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/sort0.png -------------------------------------------------------------------------------- /media/system/images/sort1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/sort1.png -------------------------------------------------------------------------------- /media/system/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/sort_asc.png -------------------------------------------------------------------------------- /media/system/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/sort_desc.png -------------------------------------------------------------------------------- /media/system/images/sort_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/sort_none.png -------------------------------------------------------------------------------- /media/system/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/tooltip.png -------------------------------------------------------------------------------- /media/system/images/weblink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/images/weblink.png -------------------------------------------------------------------------------- /media/system/js/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/cms.js -------------------------------------------------------------------------------- /media/system/js/cms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/cms.min.js -------------------------------------------------------------------------------- /media/system/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/core.js -------------------------------------------------------------------------------- /media/system/js/core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/core.min.js -------------------------------------------------------------------------------- /media/system/js/draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/draggable.js -------------------------------------------------------------------------------- /media/system/js/draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/draggable.min.js -------------------------------------------------------------------------------- /media/system/js/fields/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/fields/calendar.js -------------------------------------------------------------------------------- /media/system/js/fields/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/fields/tag.js -------------------------------------------------------------------------------- /media/system/js/fields/tag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/fields/tag.min.js -------------------------------------------------------------------------------- /media/system/js/fields/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/fields/validate.js -------------------------------------------------------------------------------- /media/system/js/keepalive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/keepalive.js -------------------------------------------------------------------------------- /media/system/js/keepalive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/keepalive.min.js -------------------------------------------------------------------------------- /media/system/js/multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/multiselect.js -------------------------------------------------------------------------------- /media/system/js/multiselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/multiselect.min.js -------------------------------------------------------------------------------- /media/system/js/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/searchtools.js -------------------------------------------------------------------------------- /media/system/js/searchtools.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/js/searchtools.min.js -------------------------------------------------------------------------------- /media/system/scss/_icomoon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/scss/_icomoon.scss -------------------------------------------------------------------------------- /media/system/scss/_jalert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/system/scss/_jalert.scss -------------------------------------------------------------------------------- /media/vendor/awesomplete/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/awesomplete/LICENSE -------------------------------------------------------------------------------- /media/vendor/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/bootstrap/LICENSE -------------------------------------------------------------------------------- /media/vendor/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /media/vendor/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /media/vendor/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /media/vendor/cropperjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/cropperjs/LICENSE -------------------------------------------------------------------------------- /media/vendor/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/diff/LICENSE -------------------------------------------------------------------------------- /media/vendor/diff/js/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/diff/js/diff.js -------------------------------------------------------------------------------- /media/vendor/diff/js/diff.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/diff/js/diff.min.js -------------------------------------------------------------------------------- /media/vendor/dragula/js/dragula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/dragula/js/dragula.js -------------------------------------------------------------------------------- /media/vendor/dragula/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/dragula/license -------------------------------------------------------------------------------- /media/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /media/vendor/jquery/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/jquery/js/jquery.js -------------------------------------------------------------------------------- /media/vendor/minicolors/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/minicolors/LICENSE.md -------------------------------------------------------------------------------- /media/vendor/tinymce/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/changelog.txt -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/af.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ar.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/be.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/bg.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/bs.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ca.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/cs.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/cy.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/da.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/de.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/el.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/es.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/et.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/eu.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/fa.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/fi.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/fo.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/fr.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ga.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/gl.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/he.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/hr.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/hu.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/id.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/it.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ja.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ka.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/km.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ko.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/lb.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/lt.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/lv.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/mk.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ms.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/nb.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/nl.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/pl.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/pt-BR.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/pt-PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/pt-PT.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ro.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ru.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/si-LK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/si-LK.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sk.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sl.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sr.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sv.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sw.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/sy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/sy.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ta.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/th.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/tr.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/ug.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/uk.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/vi.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/zh-CN.js -------------------------------------------------------------------------------- /media/vendor/tinymce/langs/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/langs/zh-TW.js -------------------------------------------------------------------------------- /media/vendor/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/license.txt -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/advlist/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/anchor/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/autolink/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/autoresize/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/autosave/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/bbcode/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/charmap/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/code/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/codesample/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/colorpicker/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/contextmenu/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/directionality/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/emoticons/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/fullpage/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/fullscreen/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/help/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/hr/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/image/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/imagetools/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/importcss/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/insertdatetime/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/legacyoutput/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/link/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/lists/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/media/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/nonbreaking/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/noneditable/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/pagebreak/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/paste/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/preview/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/print/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/save/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/searchreplace/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/spellchecker/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/tabfocus/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/table/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/template/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/textcolor/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/textpattern/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/toc/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/visualblocks/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/visualchars/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/plugins/wordcount/index.min.js: -------------------------------------------------------------------------------- 1 | require("./plugin.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/themes/inlite/index.min.js: -------------------------------------------------------------------------------- 1 | require("./theme.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/themes/mobile/index.min.js: -------------------------------------------------------------------------------- 1 | require("./theme.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/themes/modern/index.min.js: -------------------------------------------------------------------------------- 1 | require("./theme.js"); -------------------------------------------------------------------------------- /media/vendor/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/tinymce.js -------------------------------------------------------------------------------- /media/vendor/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/media/vendor/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/index.html -------------------------------------------------------------------------------- /modules/mod_banners/mod_banners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_banners/mod_banners.php -------------------------------------------------------------------------------- /modules/mod_banners/mod_banners.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_banners/mod_banners.xml -------------------------------------------------------------------------------- /modules/mod_custom/mod_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_custom/mod_custom.php -------------------------------------------------------------------------------- /modules/mod_custom/mod_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_custom/mod_custom.xml -------------------------------------------------------------------------------- /modules/mod_custom/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_custom/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_feed/mod_feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_feed/mod_feed.php -------------------------------------------------------------------------------- /modules/mod_feed/mod_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_feed/mod_feed.xml -------------------------------------------------------------------------------- /modules/mod_feed/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_feed/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_finder/mod_finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_finder/mod_finder.php -------------------------------------------------------------------------------- /modules/mod_finder/mod_finder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_finder/mod_finder.xml -------------------------------------------------------------------------------- /modules/mod_finder/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_finder/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_footer/mod_footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_footer/mod_footer.php -------------------------------------------------------------------------------- /modules/mod_footer/mod_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_footer/mod_footer.xml -------------------------------------------------------------------------------- /modules/mod_footer/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_footer/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_login/mod_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_login/mod_login.php -------------------------------------------------------------------------------- /modules/mod_login/mod_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_login/mod_login.xml -------------------------------------------------------------------------------- /modules/mod_login/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_login/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_menu/mod_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_menu/mod_menu.php -------------------------------------------------------------------------------- /modules/mod_menu/mod_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_menu/mod_menu.xml -------------------------------------------------------------------------------- /modules/mod_menu/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_menu/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_search/mod_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_search/mod_search.php -------------------------------------------------------------------------------- /modules/mod_search/mod_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_search/mod_search.xml -------------------------------------------------------------------------------- /modules/mod_search/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_search/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_stats/mod_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_stats/mod_stats.php -------------------------------------------------------------------------------- /modules/mod_stats/mod_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_stats/mod_stats.xml -------------------------------------------------------------------------------- /modules/mod_stats/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_stats/tmpl/default.php -------------------------------------------------------------------------------- /modules/mod_wrapper/mod_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_wrapper/mod_wrapper.php -------------------------------------------------------------------------------- /modules/mod_wrapper/mod_wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/modules/mod_wrapper/mod_wrapper.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /plugins/content/contact/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/contact/contact.php -------------------------------------------------------------------------------- /plugins/content/contact/contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/contact/contact.xml -------------------------------------------------------------------------------- /plugins/content/fields/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/fields/fields.php -------------------------------------------------------------------------------- /plugins/content/fields/fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/fields/fields.xml -------------------------------------------------------------------------------- /plugins/content/finder/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/finder/finder.php -------------------------------------------------------------------------------- /plugins/content/finder/finder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/finder/finder.xml -------------------------------------------------------------------------------- /plugins/content/joomla/joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/joomla/joomla.php -------------------------------------------------------------------------------- /plugins/content/joomla/joomla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/joomla/joomla.xml -------------------------------------------------------------------------------- /plugins/content/vote/tmpl/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/vote/tmpl/vote.php -------------------------------------------------------------------------------- /plugins/content/vote/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/vote/vote.php -------------------------------------------------------------------------------- /plugins/content/vote/vote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/content/vote/vote.xml -------------------------------------------------------------------------------- /plugins/editors-xtd/image/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors-xtd/image/image.php -------------------------------------------------------------------------------- /plugins/editors-xtd/image/image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors-xtd/image/image.xml -------------------------------------------------------------------------------- /plugins/editors-xtd/menu/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors-xtd/menu/menu.php -------------------------------------------------------------------------------- /plugins/editors-xtd/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors-xtd/menu/menu.xml -------------------------------------------------------------------------------- /plugins/editors/none/none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors/none/none.php -------------------------------------------------------------------------------- /plugins/editors/none/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors/none/none.xml -------------------------------------------------------------------------------- /plugins/editors/tinymce/tinymce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors/tinymce/tinymce.php -------------------------------------------------------------------------------- /plugins/editors/tinymce/tinymce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/editors/tinymce/tinymce.xml -------------------------------------------------------------------------------- /plugins/extension/joomla/joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/extension/joomla/joomla.php -------------------------------------------------------------------------------- /plugins/extension/joomla/joomla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/extension/joomla/joomla.xml -------------------------------------------------------------------------------- /plugins/fields/color/color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/color/color.php -------------------------------------------------------------------------------- /plugins/fields/color/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/color/color.xml -------------------------------------------------------------------------------- /plugins/fields/color/tmpl/color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/color/tmpl/color.php -------------------------------------------------------------------------------- /plugins/fields/editor/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/editor/editor.php -------------------------------------------------------------------------------- /plugins/fields/editor/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/editor/editor.xml -------------------------------------------------------------------------------- /plugins/fields/integer/integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/integer/integer.php -------------------------------------------------------------------------------- /plugins/fields/integer/integer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/integer/integer.xml -------------------------------------------------------------------------------- /plugins/fields/list/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/list/list.php -------------------------------------------------------------------------------- /plugins/fields/list/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/list/list.xml -------------------------------------------------------------------------------- /plugins/fields/list/params/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/list/params/list.xml -------------------------------------------------------------------------------- /plugins/fields/list/tmpl/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/list/tmpl/list.php -------------------------------------------------------------------------------- /plugins/fields/media/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/media/media.php -------------------------------------------------------------------------------- /plugins/fields/media/media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/media/media.xml -------------------------------------------------------------------------------- /plugins/fields/media/tmpl/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/media/tmpl/media.php -------------------------------------------------------------------------------- /plugins/fields/radio/radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/radio/radio.php -------------------------------------------------------------------------------- /plugins/fields/radio/radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/radio/radio.xml -------------------------------------------------------------------------------- /plugins/fields/radio/tmpl/radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/radio/tmpl/radio.php -------------------------------------------------------------------------------- /plugins/fields/sql/params/sql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/sql/params/sql.xml -------------------------------------------------------------------------------- /plugins/fields/sql/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/sql/sql.php -------------------------------------------------------------------------------- /plugins/fields/sql/sql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/sql/sql.xml -------------------------------------------------------------------------------- /plugins/fields/sql/tmpl/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/sql/tmpl/sql.php -------------------------------------------------------------------------------- /plugins/fields/text/params/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/text/params/text.xml -------------------------------------------------------------------------------- /plugins/fields/text/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/text/text.php -------------------------------------------------------------------------------- /plugins/fields/text/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/text/text.xml -------------------------------------------------------------------------------- /plugins/fields/text/tmpl/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/text/tmpl/text.php -------------------------------------------------------------------------------- /plugins/fields/url/params/url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/url/params/url.xml -------------------------------------------------------------------------------- /plugins/fields/url/tmpl/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/url/tmpl/url.php -------------------------------------------------------------------------------- /plugins/fields/url/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/url/url.php -------------------------------------------------------------------------------- /plugins/fields/url/url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/url/url.xml -------------------------------------------------------------------------------- /plugins/fields/user/params/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/user/params/user.xml -------------------------------------------------------------------------------- /plugins/fields/user/tmpl/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/user/tmpl/user.php -------------------------------------------------------------------------------- /plugins/fields/user/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/user/user.php -------------------------------------------------------------------------------- /plugins/fields/user/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/fields/user/user.xml -------------------------------------------------------------------------------- /plugins/filesystem/local/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/filesystem/local/local.php -------------------------------------------------------------------------------- /plugins/filesystem/local/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/filesystem/local/local.xml -------------------------------------------------------------------------------- /plugins/finder/content/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/finder/content/content.php -------------------------------------------------------------------------------- /plugins/finder/content/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/finder/content/content.xml -------------------------------------------------------------------------------- /plugins/finder/tags/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/finder/tags/tags.php -------------------------------------------------------------------------------- /plugins/finder/tags/tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/finder/tags/tags.xml -------------------------------------------------------------------------------- /plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/index.html -------------------------------------------------------------------------------- /plugins/media-action/crop/crop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/media-action/crop/crop.php -------------------------------------------------------------------------------- /plugins/media-action/crop/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/media-action/crop/crop.xml -------------------------------------------------------------------------------- /plugins/sampledata/blog/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/sampledata/blog/blog.php -------------------------------------------------------------------------------- /plugins/sampledata/blog/blog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/sampledata/blog/blog.xml -------------------------------------------------------------------------------- /plugins/search/content/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/search/content/content.php -------------------------------------------------------------------------------- /plugins/search/content/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/search/content/content.xml -------------------------------------------------------------------------------- /plugins/search/tags/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/search/tags/tags.php -------------------------------------------------------------------------------- /plugins/search/tags/tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/search/tags/tags.xml -------------------------------------------------------------------------------- /plugins/system/cache/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/cache/cache.php -------------------------------------------------------------------------------- /plugins/system/cache/cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/cache/cache.xml -------------------------------------------------------------------------------- /plugins/system/debug/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/debug/debug.php -------------------------------------------------------------------------------- /plugins/system/debug/debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/debug/debug.xml -------------------------------------------------------------------------------- /plugins/system/fields/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/fields/fields.php -------------------------------------------------------------------------------- /plugins/system/fields/fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/fields/fields.xml -------------------------------------------------------------------------------- /plugins/system/log/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/log/log.php -------------------------------------------------------------------------------- /plugins/system/log/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/log/log.xml -------------------------------------------------------------------------------- /plugins/system/logout/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/logout/logout.php -------------------------------------------------------------------------------- /plugins/system/logout/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/logout/logout.xml -------------------------------------------------------------------------------- /plugins/system/sef/sef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/sef/sef.php -------------------------------------------------------------------------------- /plugins/system/sef/sef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/sef/sef.xml -------------------------------------------------------------------------------- /plugins/system/stats/field/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/stats/field/base.php -------------------------------------------------------------------------------- /plugins/system/stats/field/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/stats/field/data.php -------------------------------------------------------------------------------- /plugins/system/stats/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/stats/stats.php -------------------------------------------------------------------------------- /plugins/system/stats/stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/system/stats/stats.xml -------------------------------------------------------------------------------- /plugins/twofactorauth/totp/totp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/twofactorauth/totp/totp.php -------------------------------------------------------------------------------- /plugins/twofactorauth/totp/totp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/twofactorauth/totp/totp.xml -------------------------------------------------------------------------------- /plugins/user/joomla/joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/joomla/joomla.php -------------------------------------------------------------------------------- /plugins/user/joomla/joomla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/joomla/joomla.xml -------------------------------------------------------------------------------- /plugins/user/profile/field/dob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/profile/field/dob.php -------------------------------------------------------------------------------- /plugins/user/profile/field/tos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/profile/field/tos.php -------------------------------------------------------------------------------- /plugins/user/profile/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/profile/profile.php -------------------------------------------------------------------------------- /plugins/user/profile/profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/plugins/user/profile/profile.xml -------------------------------------------------------------------------------- /robots.txt.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/robots.txt.dist -------------------------------------------------------------------------------- /scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/scss-lint.yml -------------------------------------------------------------------------------- /templates/cassiopeia/component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/component.php -------------------------------------------------------------------------------- /templates/cassiopeia/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/error.php -------------------------------------------------------------------------------- /templates/cassiopeia/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/favicon.ico -------------------------------------------------------------------------------- /templates/cassiopeia/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/index.php -------------------------------------------------------------------------------- /templates/cassiopeia/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/js/template.js -------------------------------------------------------------------------------- /templates/cassiopeia/offline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/cassiopeia/offline.php -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/system/component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/component.php -------------------------------------------------------------------------------- /templates/system/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/css/editor.css -------------------------------------------------------------------------------- /templates/system/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/css/error.css -------------------------------------------------------------------------------- /templates/system/css/error_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/css/error_rtl.css -------------------------------------------------------------------------------- /templates/system/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/css/general.css -------------------------------------------------------------------------------- /templates/system/css/offline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/css/offline.css -------------------------------------------------------------------------------- /templates/system/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/error.php -------------------------------------------------------------------------------- /templates/system/html/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/html/modules.php -------------------------------------------------------------------------------- /templates/system/incompatible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/incompatible.html -------------------------------------------------------------------------------- /templates/system/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/index.php -------------------------------------------------------------------------------- /templates/system/offline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/templates/system/offline.php -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/tests/README.md -------------------------------------------------------------------------------- /tmp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/tmp/index.html -------------------------------------------------------------------------------- /travisci-phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/travisci-phpunit.xml -------------------------------------------------------------------------------- /web.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla/40-backend-template/HEAD/web.config.txt --------------------------------------------------------------------------------