File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,61 @@ A comprehensive Drupal 10 module that provides event registration functionality
1313- ** Admin Interface** 👨💼: Comprehensive admin interface for managing events and registrations
1414- ** Validation Rules** ✅: Comprehensive validation for all form fields
1515
16+ ## 📁 Project Structure
17+
18+ event_registration/
19+ ├── config/
20+ │ └── install/
21+ │ ├── event_registration.settings.yml
22+ │ └── …
23+ ├── sql/
24+ │ └── event_registration.install
25+ ├── src/
26+ │ ├── Controller/
27+ │ │ └── CsvExportController.php
28+ │ ├── Form/
29+ │ │ ├── EventConfigForm.php
30+ │ │ ├── EventRegistrationForm.php
31+ │ │ ├── RegistrationListForm.php
32+ │ │ └── AdminSettingsForm.php
33+ │ └── Service/
34+ │ └── MailService.php
35+ ├── assets/
36+ │ ├── screenshots/
37+ │ │ ├── form_interface.png
38+ │ │ ├── admin_panel.png
39+ │ │ └── registration_list.png
40+ │ └── icons/
41+ ├── docs/
42+ │ ├── installation.md
43+ │ ├── configuration.md
44+ │ └── troubleshooting.md
45+ ├── tests/
46+ │ └── src/
47+ │ └── Functional/
48+ │ ├── EventRegistrationTest.php
49+ │ └── AdminInterfaceTest.php
50+ ├── .github/
51+ │ ├── ISSUE_TEMPLATE/
52+ │ │ ├── bug_report.md
53+ │ │ └── feature_request.md
54+ │ └── workflows/
55+ │ └── ci.yml
56+ ├── event_registration.info.yml
57+ ├── event_registration.module
58+ ├── event_registration.install
59+ ├── event_registration.links.menu.yml
60+ ├── event_registration.routing.yml
61+ ├── event_registration.services.yml
62+ ├── README.md
63+ ├── CHANGELOG.md
64+ ├── CONTRIBUTING.md
65+ ├── SECURITY.md
66+ ├── UPGRADE.md
67+ ├── LICENSE
68+ ├── composer.json
69+ └── .gitignore
70+
1671## 🛠️ Requirements
1772
1873- XAMPP (Apache, MySQL, PHP)
You can’t perform that action at this time.
0 commit comments