Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: ArchBlood <[email protected]>
  • Loading branch information
ArchBlood authored Jul 15, 2024
1 parent 7910e65 commit 76b0674
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,25 @@ This example plugin displays an example widget on the forums of any Chatter Foru
## Development

### File Structure
```
example/
├── assets/
├── controllers/
├── models/
├── views/
├── Plugin.php
├── config.php
├── plugin.json
└── README.md
```mermaid
graph TD
A[example] --> B[assets]
A --> C[controllers]
A --> D[models]
A --> E[views]
A --> F[Plugin.php]
A --> G[config.php]
A --> H[plugin.json]
A --> I[README.md]
B -->|"CSS, JS, images"| B1[Static files]
C -->|"Action handlers"| C1[Controller classes]
D -->|"Data structures"| D1[Model classes]
E -->|"Templates"| E1[View files]
F -->|"Main plugin class"| F1[Plugin logic]
G -->|"Configuration"| G1[Plugin settings]
H -->|"Metadata"| H1[Plugin information]
I -->|"Documentation"| I1[Usage instructions]
```

## Contributing
Expand Down

0 comments on commit 76b0674

Please sign in to comment.