├── assets ├── css │ ├── hubaga.css │ └── index.php ├── images │ ├── index.php │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ └── screenshot-8.png ├── index.php └── js │ ├── hubaga.js │ ├── index.php │ └── instacheck.js ├── hubaga.php ├── includes ├── admin │ ├── admin.php │ ├── assets │ │ ├── css │ │ │ ├── admin.css │ │ │ └── index.php │ │ ├── images │ │ │ └── index.php │ │ ├── index.php │ │ └── js │ │ │ ├── admin.js │ │ │ ├── index.php │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.time.js │ │ │ ├── vue.js │ │ │ └── vue.min.js │ ├── elements │ │ ├── editor.php │ │ ├── index.php │ │ ├── order_overview.php │ │ ├── reports_cards.php │ │ ├── reports_footer.php │ │ ├── reports_header.php │ │ ├── reports_header1.php │ │ └── tag.php │ ├── index.php │ ├── metaboxes.php │ ├── reports.php │ ├── settings.php │ └── views │ │ ├── coupon-details.php │ │ ├── coupon-template.php │ │ ├── extensions-template.php │ │ ├── index.php │ │ ├── order-details.php │ │ ├── order-template.php │ │ ├── product-details.php │ │ ├── product-template.php │ │ └── reports-template.php ├── ajax.php ├── checkout │ ├── abstract-payments-class.php │ ├── functions.php │ ├── gateways │ │ ├── index.php │ │ ├── paypal │ │ │ ├── paypal-gateway.php │ │ │ └── settings-paypal.php │ │ └── test-gateway.php │ ├── index.php │ └── payments-class.php ├── coupon-class.php ├── coupons.php ├── customer-class.php ├── customers.php ├── data │ ├── currencies.php │ ├── currency_symbols.php │ ├── email-template.php │ └── index.php ├── download.php ├── elementa │ ├── assets │ │ ├── css │ │ │ ├── datepicker.css │ │ │ ├── elementa.css │ │ │ └── selectize.bootstrap3.css │ │ └── js │ │ │ ├── datepicker.js │ │ │ ├── datepicker.min.js │ │ │ ├── elementa.js │ │ │ ├── selectize.js │ │ │ └── selectize.min.js │ ├── data │ │ └── countries.php │ ├── elementa.php │ ├── elements │ │ ├── alert.php │ │ ├── button.php │ │ ├── card.php │ │ ├── checkbox.php │ │ ├── color.php │ │ ├── date.php │ │ ├── email.php │ │ ├── import.php │ │ ├── list_group.php │ │ ├── multiselect.php │ │ ├── number.php │ │ ├── password.php │ │ ├── radio.php │ │ ├── range.php │ │ ├── raw.php │ │ ├── save.php │ │ ├── search.php │ │ ├── select.php │ │ ├── switch.php │ │ ├── text.php │ │ ├── textarea.php │ │ └── title.php │ ├── index.php │ ├── template.php │ └── template2.php ├── functions.php ├── index.php ├── install.php ├── notifications.php ├── order-class.php ├── orders.php ├── product-class.php ├── product-widget.php ├── products.php ├── shortcodes.php ├── system-info.php └── template.php ├── index.php ├── languages └── index.php ├── license.txt ├── readme.md ├── readme.txt └── uninstall.php /assets/css/hubaga.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/picocodes/hubaga/HEAD/assets/css/hubaga.css -------------------------------------------------------------------------------- /assets/css/index.php: -------------------------------------------------------------------------------- 1 |