3 | Thank You!
4 |
5 | Rp 1.000.000.000 dari Robot
6 | Ini adalah test, notifikasi donasi siap digunakan!
7 |
├── .gitignore ├── public ├── assets │ ├── img │ │ ├── avatar.png │ │ ├── stream.gif │ │ ├── link.svg │ │ ├── back.svg │ │ ├── twitch.svg │ │ ├── exit.svg │ │ ├── facebook.svg │ │ ├── in.svg │ │ ├── instagram.svg │ │ ├── edit.svg │ │ ├── youtube.svg │ │ ├── twitter.svg │ │ ├── logout.svg │ │ ├── github.svg │ │ └── qris.svg │ ├── notif │ │ ├── ping.mp3 │ │ └── notif.mp3 │ └── js │ │ ├── swal_overlay_test.js │ │ ├── custom.js │ │ ├── settings.js │ │ ├── pagination.js │ │ ├── swal_donate.js │ │ ├── jquery.marquee.min.js │ │ └── anime.min.js ├── index.php └── .htaccess ├── core ├── Filter │ ├── Auth.php │ └── CSRF.php ├── Views │ ├── auth │ │ ├── layout.kyaaaa.php │ │ └── auth.kyaaaa.php │ ├── streamoverlay │ │ ├── donatenotification │ │ │ ├── index.kyaaaa.php │ │ │ └── layout.kyaaaa.php │ │ └── runningtext │ │ │ ├── index.kyaaaa.php │ │ │ └── layout.kyaaaa.php │ ├── admin │ │ ├── layout.kyaaaa.php │ │ ├── settings │ │ │ ├── layout.kyaaaa.php │ │ │ └── index.kyaaaa.php │ │ └── index.kyaaaa.php │ ├── donate │ │ ├── layout.kyaaaa.php │ │ └── index.kyaaaa.php │ └── invoice │ │ ├── layout.kyaaaa.php │ │ └── index.kyaaaa.php ├── Conf │ ├── Kyaaaa │ │ ├── Handler │ │ │ ├── Exception │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── FrameCollection.php │ │ │ │ ├── Frame.php │ │ │ │ └── Inspector.php │ │ │ ├── Util │ │ │ │ ├── HtmlDumperOutput.php │ │ │ │ ├── Misc.php │ │ │ │ └── SystemFacade.php │ │ │ ├── Handler │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── CallbackHandler.php │ │ │ │ ├── Handler.php │ │ │ │ ├── JsonResponseHandler.php │ │ │ │ └── PlainTextHandler.php │ │ │ ├── Resources │ │ │ │ ├── views │ │ │ │ │ └── kyaaaa_prod.html.php │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ └── js │ │ │ │ │ └── clipboard.min.js │ │ │ └── RunInterface.php │ │ ├── Renderer.php │ │ ├── CSRF.php │ │ ├── Session.php │ │ ├── Connection.php │ │ ├── Route.php │ │ ├── Router.php │ │ └── Request.php │ ├── Email.php │ ├── Database.php │ ├── App.php │ └── Routes.php ├── Models │ ├── DonateModel.php │ ├── PaymentModel.php │ └── AdminModel.php └── Controllers │ ├── DonateCtrl.php │ ├── PaymentCtrl.php │ └── AdminCtrl.php ├── composer.json ├── kyaaaa ├── LICENSE ├── README.md └── donateapp_db.sql /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /vendor/ 3 | composer.lock 4 | .gitattributes -------------------------------------------------------------------------------- /public/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauxxyzn/kyaaaa-donate-app/HEAD/public/assets/img/avatar.png -------------------------------------------------------------------------------- /public/assets/img/stream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauxxyzn/kyaaaa-donate-app/HEAD/public/assets/img/stream.gif -------------------------------------------------------------------------------- /public/assets/notif/ping.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauxxyzn/kyaaaa-donate-app/HEAD/public/assets/notif/ping.mp3 -------------------------------------------------------------------------------- /public/assets/notif/notif.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauxxyzn/kyaaaa-donate-app/HEAD/public/assets/notif/notif.mp3 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | kyaaaaRun(); -------------------------------------------------------------------------------- /public/assets/img/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Filter/Auth.php: -------------------------------------------------------------------------------- 1 | session = session(); 7 | } 8 | 9 | public function admin() { 10 | if (!$this->session->has('isAdmin')) { 11 | redirectTo(url('login')); 12 | } 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /public/assets/img/back.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Views/auth/layout.kyaaaa.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |
3 |
5 | Rp 1.000.000.000 dari Robot
6 | Ini adalah test, notifikasi donasi siap digunakan!
7 |
Secure Payment by TriPay
27 |Terima kasih, ya untuk donasinya! Berikut detail pembayarannya:
| Invoice link | '.$get[0]->invoice_url .' |
|---|---|
| Nama | '.$get[0]->customer_name .' |
| Metode Pembayaran | '.$get[0]->payment_name .' |
| Total | '.$get[0]->amount .' |
| Waktu Pembayaran | '.date('d/m/Y H:i:s', $data->paid_at).' |