Client: 11 Gallery
Website: https://fastcycle.scottsdesigns.com
Technologies: fast cycle framework, html5, css3, photoshop, visual studio code, php, mysql, javascript, jquery, bootstrap 4
Web Platforms: Fast Cycle Framework
PHP MVC theming framework built from scratch. The default first theme was constructed using Bootstrap 4 with a Bootstrap 5 them in development. It can easily be copied and rethemed in any scaffolding or raw HTML & CSS.
Directory Overview
root/
│
├── fastcycle/ (FastCycleFramework)
│ │
│ ├── base/
│ │ ├── Controller.php
│ │ ├── Database.php
│ │ ├── Functions.php
│ │ ├── Model.php
│ │ ├── Request.php
│ │ ├── Router.php
│ │ ├── SecureHash.php
│ │ ├── UserSession.php
│ │ └── View.php
│ │
│ ├── config/
│ │ ├── config_db.php
│ │ ├── config_site.php (future use)
│ │ └── routes.php
│ │
│ ├── controllers/
│ │ ├── AccountController.php
│ │ ├── ErrorController.php
│ │ ├── LookupController.php
│ │ ├── ProjectController.php
│ │ ├── SiteController.php (default index controller)
│ │ └── UserController.php (login here)
│ │
│ ├── models/
│ │ ├── Account.php
│ │ ├── Lookup.php
│ │ ├── Project.php
│ │ ├── ProjectComment.php
│ │ ├── User.php
│ │ └── UserRoles.php
│ │
│ ├── plugins/
│ │ ├── FileUploader.php
│ │ └── ParseDown.php
│ │
│ └── .htaccess (deny all)
│
├── themes/
│ │
│ └── default/
│ ├── css/
│ ├── fonts/
│ ├── icons/
│ ├── img/
│ ├── js/
│ └── views/
│ ├── account/
│ │ ├── index.php
│ │ ├── save.php
│ │ └── view.php
│ ├── error/
│ │ └── error.php
│ ├── layouts/
│ │ ├── front-main.php
│ │ ├── maintenance.php
│ │ └── user.php
│ ├── lookup/
│ │ └── index.php
│ ├── project/
│ │ ├── index.php
│ │ ├── save.php
│ │ └── view.php
│ ├── site/
│ │ ├── documentation.php
│ │ └── index.php
│ └── user/
│ ├── index.php
│ ├── login.php
│ ├── save.php
│ └── view.php
│
├── uploads/
│ ├── account/
│ ├── project/
│ └── user/
│
├── .htaccess
└── index.php