/cscart_reviews/ │ ├── admin/ │ ├── dashboard.php │ ├── invitations.php │ ├── reviews.php │ ├── templates.php │ ├── widgets.php │ ├── settings.php │ ├── login.php │ ├── logout.php │ ├── review_action.php │ └── review_detail.php │ ├── includes/ │ ├── config.php │ ├── functions.php │ ├── db.php │ ├── auth.php │ ├── header.php │ └── footer.php │ ├── widgets/ │ ├── carousel.php │ ├── dropdown.php │ ├── grid.php │ ├── mini.php │ └── stars.php │ ├── api/ │ ├── submit_review.php │ ├── get_reviews.php │ └── tracking.php │ ├── templates/ │ ├── email/ │ │ ├── order_review.html │ │ └── product_review.html │ └── web/ │ ├── review_form.php │ ├── thank_you.php │ └── error.php │ ├── cron/ │ ├── send_invitations.php │ └── process_queue.php │ ├── js/ │ ├── widget-loader.js │ └── admin.js │ ├── css/ │ ├── admin.css │ └── widgets.css │ ├── lib/ │ ├── PHPMailer/ │ └── analytics/ │ ├── logs/ │ ├── errors.log │ └── cron.log │ ├── index.php ├── submit_review.php ├── thank_you.php ├── track.php └── .htaccess