├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .idea ├── admin_presets.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── README.md ├── block_admin_presets.php ├── classes ├── event │ ├── preset_deleted.php │ ├── preset_downloaded.php │ ├── preset_exported.php │ ├── preset_imported.php │ ├── preset_loaded.php │ ├── preset_previewed.php │ ├── preset_reverted.php │ └── presets_listed.php └── privacy │ └── provider.php ├── db ├── access.php ├── install.xml └── upgrade.php ├── forms ├── admin_presets_export_form.php ├── admin_presets_import_form.php └── admin_presets_load_form.php ├── index.php ├── lang └── en │ └── block_admin_presets.php ├── lib ├── admin_presets_base.class.php ├── admin_presets_delete.class.php ├── admin_presets_export.class.php ├── admin_presets_import.class.php ├── admin_presets_load.class.php ├── admin_presets_rollback.class.php └── admin_presets_settings_types.php ├── module.js ├── pix ├── check0.gif ├── check1.gif └── check2.gif ├── settings.php ├── styles.css ├── tabs.php ├── tests └── behat │ ├── import_settings.feature │ └── revert_changes.feature └── version.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.idea/admin_presets.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | true 54 | DEFINITION_ORDER 55 | 56 | 57 | 58 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 |