converter =
14 | ServiceGenerator.retrofit
15 | .responseBodyConverter(APIError.class, new Annotation[0]);
16 | APIError error ;
17 | try {
18 | if(response.errorBody() != null) {
19 | error = converter.convert(response.errorBody());
20 | } else {
21 | error = null;
22 | }
23 | } catch (IOException e) {
24 | return new APIError("error");
25 | }
26 | return error;
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/java/com/gilang/vndrosport/utils/SessionHandle.java:
--------------------------------------------------------------------------------
1 | package com.gilang.vndrosport.utils;
2 |
3 | import android.content.Context;
4 | import android.content.SharedPreferences;
5 |
6 | import com.gilang.vndrosport.config.Constants;
7 | import com.google.gson.Gson;
8 |
9 | public class SessionHandle {
10 | public static boolean login(Context context, String IdUser, String token, String IdToko){
11 | SharedPreferences sharedPreferences = context.getSharedPreferences(
12 | Constants.KEY_USER_SESSION, Context.MODE_PRIVATE);
13 | SharedPreferences.Editor editor = sharedPreferences.edit();
14 | String userJson = new Gson().toJson(IdUser);
15 | editor.putString(Constants.USER_SESSION, userJson);
16 | editor.putString("idUser", IdUser);
17 | editor.putString("token", token);
18 | editor.putString("idToko", IdToko);
19 | editor.apply();
20 | return true;
21 | }
22 |
23 | public static boolean isLoggedIn(Context context) {
24 | SharedPreferences sharedPreferences = context.getSharedPreferences(
25 | Constants.KEY_USER_SESSION, Context.MODE_PRIVATE);
26 | String userJson = sharedPreferences.getString(Constants.USER_SESSION, null);
27 | if (userJson != null) {
28 | return true;
29 | } else {
30 | return false;
31 | }
32 | }
33 |
34 | public static boolean logout(Context context) {
35 | SharedPreferences sharedPreferences = context.getSharedPreferences(
36 | Constants.KEY_USER_SESSION, Context.MODE_PRIVATE);
37 | SharedPreferences.Editor editor = sharedPreferences.edit();
38 | editor.clear();
39 | editor.apply();
40 | return true;
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/card_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/ic_dot_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable-v24/ic_dot_grey.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/kategori.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable-v24/kategori.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable-v24/list.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/pengiriman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable-v24/pengiriman.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable-v24/promo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable-v24/promo.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/bank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/bank.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/btn_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/btn_login.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/btn_next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/btn_next.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/check.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/color_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_add.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_akun.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_arrow.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_baseline_star_24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_cart.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_close.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_delivery.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_history.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_home.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_keranjang.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/ic_remove.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/logo.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/no_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/no_image.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/raket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/raket.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/rect1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/rect2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/shops.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/shops.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/shops2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/shops2.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/spesial_offer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/spesial_offer.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/sports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/sports.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/sukses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/sukses.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/tombol_daftar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/tombol_daftar.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/tombol_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/tombol_login.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/drawable/trolley.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/drawable/trolley.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/layout/activity_allproduk.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
16 |
17 |
25 |
26 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/layout/activity_kategori.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
17 |
18 |
22 |
27 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/layout/activity_searching.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/layout/fragment_order.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/layout/single_list_kategori.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
14 |
20 |
32 |
33 |
40 |
41 |
45 |
46 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/menu/item_bottom_navigation.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFBB86FC
4 | #506890
5 | #FF3700B3
6 | #FF03DAC5
7 | #FF018786
8 | #FF000000
9 | #FFFFFFFF
10 | #71092C
11 | #506890
12 | #070707
13 | #FFDCB4
14 |
15 | #e6ffffff
16 | #70dfdfdf
17 | #4CAF50
18 | #4CAF50
19 |
20 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #F0F1F0
4 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
--------------------------------------------------------------------------------
/Android/vndrosport/app/src/test/java/com/gilang/vndrosport/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.gilang.vndrosport;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Android/vndrosport/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | google()
5 | mavenCentral()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:7.0.2'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | google()
18 | mavenCentral()
19 | jcenter() // Warning: this repository is going to shut down soon
20 | }
21 | }
22 |
23 | task clean(type: Delete) {
24 | delete rootProject.buildDir
25 | }
26 |
--------------------------------------------------------------------------------
/Android/vndrosport/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app"s APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
--------------------------------------------------------------------------------
/Android/vndrosport/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/Android/vndrosport/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/vndrosport/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Tue Jul 06 07:09:25 ICT 2021
2 | distributionBase=GRADLE_USER_HOME
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
4 | distributionPath=wrapper/dists
5 | zipStorePath=wrapper/dists
6 | zipStoreBase=GRADLE_USER_HOME
7 |
--------------------------------------------------------------------------------
/Android/vndrosport/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = "vndrosport"
2 | include ':app'
3 |
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/application/cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/hooks.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/memcached.php:
--------------------------------------------------------------------------------
1 | array(
15 | 'hostname' => '127.0.0.1',
16 | 'port' => '11211',
17 | 'weight' => '1',
18 | ),
19 | );
20 |
--------------------------------------------------------------------------------
/application/config/profiler.php:
--------------------------------------------------------------------------------
1 | load->model('m_admin', 'admin');
15 | if ($this->session->userdata('is_login_admin') !== TRUE) {
16 | redirect('admin/login');
17 | }
18 | }
19 |
20 | private function _layout($data, $view)
21 | {
22 | $this->load->view('admin/view/' . $view, $data);
23 | }
24 |
25 | public function index()
26 | {
27 | $data['title'] = _myJudul();
28 | $data['dataKecamatan'] = $this->admin->get_data_kecamatan()->result_array();
29 | $view ='v_kecamatan';
30 | $this->_layout($data,$view);
31 | }
32 |
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/application/controllers/administrator/Member.php:
--------------------------------------------------------------------------------
1 | load->model('m_admin', 'admin');
14 | if ($this->session->userdata('is_login_admin') !== TRUE) {
15 | redirect('admin/login');
16 | }
17 | }
18 |
19 | private function _layout($data, $view)
20 | {
21 | $this->load->view('admin/view/' . $view, $data);
22 | }
23 |
24 | public function index()
25 | {
26 | $data['title'] = _myJudul();
27 | $view ='v_member';
28 | $this->_layout($data,$view);
29 | }
30 |
31 | public function logout()
32 | {
33 | $this->session->sess_destroy();
34 | redirect('Login');
35 | }
36 |
37 | }
38 |
--------------------------------------------------------------------------------
/application/controllers/administrator/Produk.php:
--------------------------------------------------------------------------------
1 | load->model('M_produk', 'produk');
15 | if ($this->session->userdata('is_login_admin') !== TRUE) {
16 | redirect('admin/login');
17 | }
18 | }
19 |
20 | private function _layout($data, $view)
21 | {
22 | $this->load->view('admin/view/' . $view, $data);
23 | }
24 |
25 | public function index()
26 | {
27 | $data['title'] = _myJudul();
28 | $data['dataProduk'] = $this->produk->get_data_produk()->result_array();
29 | $view = 'v_produk';
30 | $this->_layout($data, $view);
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/application/controllers/api/Bayar.php:
--------------------------------------------------------------------------------
1 | load->model('M_api', 'api');
15 | }
16 |
17 | public function index_get()
18 | {
19 | $idPesanan = $this->get('id_pesanan');
20 | if(in_array($idPesanan,["",null])){
21 | $this->response([
22 | 'status' => false,
23 | 'message' => 'Data tidak lengkap'
24 | ], 404);
25 | } else {
26 | $getData = $this->api->get_data_pesanan2($idPesanan);
27 | if($getData->num_rows() != 0){
28 | $dataPesanan = [
29 | 'status' => 2
30 | ];
31 | $this->api->perbaharui_pesanan($dataPesanan,$idPesanan);
32 | $this->response([
33 | 'status' => true,
34 | 'message' => 'Data pesanan berhasil diupdate'
35 | ], 200);
36 | } else {
37 | $this->response([
38 | 'status' => false,
39 | 'message' => 'Data tidak ada'
40 | ], 404);
41 | }
42 | }
43 | }
44 |
45 | }
46 |
--------------------------------------------------------------------------------
/application/controllers/api/Kategori.php:
--------------------------------------------------------------------------------
1 | load->model('M_api', 'api');
15 | }
16 |
17 | public function index_get()
18 | {
19 | $idUser = $this->get('id_user');
20 | $token = $this->get('token');
21 | $cekUser = $this->api->cek_user($idUser,$token);
22 | if($cekUser!= 0){
23 | $getData = $this->api->get_data_kategori();
24 | $dataResponse = [
25 | 'status' => true,
26 | 'result' => $getData->result_array(),
27 | 'message' => 'Data berhasil didapatkan !',
28 | ];
29 | $this->response($dataResponse, 200);
30 | } else {
31 | $this->response( [
32 | 'status' => false,
33 | 'message' => 'Not Authorized'
34 | ], 404 );
35 | }
36 | }
37 |
38 | public function detail_get()
39 | {
40 | $idUser = $this->get('id_user');
41 | $token = $this->get('token');
42 | $cekUser = $this->api->cek_user($idUser,$token);
43 | if($cekUser!= 0){
44 | $id = $this->get('id_kategori');
45 | $getData = $this->api->get_data_produk2($id);
46 | $dataResponse = [
47 | 'status' => true,
48 | 'result' => $getData->result_array(),
49 | 'message' => 'Data berhasil didapatkan !',
50 | ];
51 | $this->response($dataResponse, 200);
52 | } else {
53 | $this->response( [
54 | 'status' => false,
55 | 'message' => 'Not Authorized'
56 | ], 404 );
57 | }
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/application/controllers/api/Pesanan.php:
--------------------------------------------------------------------------------
1 | load->model('m_api', 'api');
16 | }
17 |
18 | public function index_get()
19 | {
20 | $idUser = $this->get('id_user');
21 | $myToken = $this->get('token');
22 | $cekUser = $this->api->cek_user($idUser,$myToken);
23 | if($cekUser != 0){
24 | $getData = $this->api->get_data_pesanan($idUser);
25 | $data = [
26 | 'status' => true,
27 | 'result' => $getData->result_array(),
28 | 'message' => 'Data berhasil didapatkan',
29 | ];
30 | $this->response($data, 200);
31 | } else {
32 | $this->response( [
33 | 'status' => false,
34 | 'message' => 'Not Authorized'
35 | ], 404 );
36 | }
37 | }
38 |
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/application/controllers/api/Spesial.php:
--------------------------------------------------------------------------------
1 | load->model('m_api', 'api');
16 | }
17 |
18 |
19 | public function index_get()
20 | {
21 | $getSpesial = $this->api->get_data_spesial(true);
22 | if($getSpesial->num_rows() != 0 ){
23 | $data = [
24 | 'status' => true,
25 | 'result' => $getSpesial->result_array(),
26 | 'message' => 'Data berhasil didapatkan',
27 | ];
28 | $this->response($data, 200);
29 | }else {
30 | $this->response( [
31 | 'status' => false,
32 | 'message' => 'No data found'
33 | ], 404 );
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/application/controllers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/controllers/store/Member.php:
--------------------------------------------------------------------------------
1 | load->model('M_toko', 'toko');
14 | if ($this->session->userdata('is_login_toko') !== TRUE) {
15 | redirect('Login');
16 | }
17 | }
18 |
19 | private function _layout($data, $view)
20 | {
21 | $this->load->view('toko/view/' . $view, $data);
22 | }
23 |
24 | public function index()
25 | {
26 | $data['title'] = _store();
27 | $view ='v_member';
28 | $this->_layout($data,$view);
29 | }
30 |
31 | public function logout()
32 | {
33 | $this->session->sess_destroy();
34 | redirect('Login');
35 | }
36 |
37 | }
38 |
--------------------------------------------------------------------------------
/application/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/security.ini:
--------------------------------------------------------------------------------
1 | [security]
2 | encryption_key=1111111111111111 ;16 digits
3 | iv=2456378494765431 ;16 digits
4 | encryption_mechanism=aes-256-cbc
5 |
--------------------------------------------------------------------------------
/application/hooks/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/hooks/ssl.php:
--------------------------------------------------------------------------------
1 | router->fetch_class();
7 | $exclude = array('client'); // add more controller name to exclude ssl.
8 | if(!in_array($class,$exclude)) {
9 | // redirecting to ssl.
10 | $CI->config->config['base_url'] = str_replace('http://', 'https://', $CI->config->config['base_url']);
11 | if ($_SERVER['SERVER_PORT'] != 443) redirect($CI->uri->uri_string());
12 | }
13 | else {
14 | // redirecting with no ssl.
15 | $CI->config->config['base_url'] = str_replace('https://', 'http://', $CI->config->config['base_url']);
16 | if ($_SERVER['SERVER_PORT'] == 443) redirect($CI->uri->uri_string());
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/application/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/english/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/english/rest_controller_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/logs/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/models/M_transaksi.php:
--------------------------------------------------------------------------------
1 | load->database();
10 | $this->pesanan = 'pesanan';
11 | $this->detail = 'detail_pesanan';
12 | $this->detailuser = 'detailuser';
13 | $this->produk = 'produk';
14 | $this->toko = 'toko';
15 | }
16 |
17 | public function get_data_transaksi($id=null)
18 | {
19 | if($id !=null){
20 | $this->db->where("$this->pesanan.id",$id);
21 | }
22 | $this->db->select("$this->pesanan.id,$this->pesanan.tanggal,$this->pesanan.sub_total,$this->pesanan.status,$this->detailuser.nama_lengkap,$this->pesanan.judul,$this->pesanan.biaya_antar,$this->pesanan.total_jumlah");
23 | $this->db->join($this->detailuser, "$this->detailuser.id_user = $this->pesanan.id_user");
24 | return $this->db->get("$this->pesanan");
25 | }
26 |
27 | public function perbaharui_status($dataStatus,$id)
28 | {
29 | $this->db->where("$this->pesanan.id",$id);
30 | $this->db->update($this->pesanan,$dataStatus);
31 | }
32 |
33 | public function perbaharui_status_detail($data,$id)
34 | {
35 | $this->db->where("$this->detail.id_pesanan",$id);
36 | $this->db->update($this->detail,$data);
37 | }
38 |
39 | public function get_detail_toko($idPesanan)
40 | {
41 | $this->db->join($this->produk,"$this->produk.id = $this->detail.id_produk");
42 | $this->db->join($this->toko,"$this->toko.id = $this->produk.id_toko");
43 | $this->db->where("$this->detail.id_pesanan",$idPesanan);
44 | return $this->db->get($this->detail);
45 | }
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/application/models/M_transaksi_toko.php:
--------------------------------------------------------------------------------
1 | load->database();
10 | $this->pesanan = 'detail_pesanan';
11 | $this->pesananutama = 'pesanan';
12 | $this->produk = 'produk';
13 | }
14 |
15 | public function get_data_pesanan($idToko)
16 | {
17 | $this->db->select("$this->pesanan.id,$this->pesanan.id_pesanan,$this->produk.nama_produk,$this->pesanan.sub_total,$this->pesanan.jumlah,$this->produk.gambar,$this->pesanan.status");
18 | $this->db->join($this->produk, "$this->produk.id = $this->pesanan.id_produk");
19 | $this->db->where("$this->produk.id_toko", $idToko);
20 | $this->db->where("$this->pesanan.status !=", 1);
21 | return $this->db->get($this->pesanan);
22 | }
23 |
24 | public function get_data_pesanan3($idPesanan)
25 | {
26 | $this->db->where("$this->pesanan.id_pesanan", $idPesanan);
27 | return $this->db->get($this->pesanan);
28 | }
29 |
30 | public function get_data_pesanan2($idPesanan)
31 | {
32 | $this->db->where("$this->pesanan.id_pesanan", $idPesanan);
33 | $this->db->where("$this->pesanan.status", 3);
34 | return $this->db->get($this->pesanan);
35 | }
36 |
37 | public function perbaharui_status_pesanan($data,$id)
38 | {
39 | $this->db->where("$this->pesanan.id", $id);
40 | $this->db->update($this->pesanan,$data);
41 | }
42 |
43 | public function perbaharui_pesanan($data,$idPesanan)
44 | {
45 | $this->db->where("$this->pesananutama.id", $idPesanan);
46 | $this->db->update($this->pesananutama,$data);
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/application/models/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/third_party/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/admin/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/admin/konten/k_member.php:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/application/views/admin/template/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/admin/template/v_footer.php:
--------------------------------------------------------------------------------
1 |
3 |
10 |
--------------------------------------------------------------------------------
/application/views/admin/template/v_navbar.php:
--------------------------------------------------------------------------------
1 |
3 |
4 |
21 |
22 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_login.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/konten/k_login') ?>
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_member.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/template/v_navbar') ?>
12 | load->view('admin/template/v_sidebar') ?>
13 | load->view('admin/konten/k_member') ?>
14 | load->view('admin/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_setting.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/template/v_navbar') ?>
12 | load->view('admin/template/v_sidebar') ?>
13 | load->view('admin/konten/k_setting') ?>
14 | load->view('admin/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_tambahclient.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/template/v_navbar') ?>
12 | load->view('admin/template/v_sidebar') ?>
13 | load->view('admin/konten/k_tambahclient') ?>
14 | load->view('admin/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_tambahkabupaten.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
12 |
13 |
14 |
15 | load->view('admin/template/v_navbar') ?>
16 | load->view('admin/template/v_sidebar') ?>
17 | load->view('admin/konten/k_tambahkabupaten') ?>
18 | load->view('admin/template/v_footer') ?>
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_tambahkategori.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/template/v_navbar') ?>
12 | load->view('admin/template/v_sidebar') ?>
13 | load->view('admin/konten/k_tambahkategori') ?>
14 | load->view('admin/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/application/views/admin/view/v_tambahmerek.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('admin/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('admin/template/v_navbar') ?>
12 | load->view('admin/template/v_sidebar') ?>
13 | load->view('admin/konten/k_tambahmerek') ?>
14 | load->view('admin/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/application/views/errors/cli/error_404.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | An uncaught Exception was encountered
4 |
5 | Type:
6 | Message:
7 | Filename: getFile(), "\n"; ?>
8 | Line Number: getLine(); ?>
9 |
10 |
11 |
12 | Backtrace:
13 | getTrace() as $error): ?>
14 |
15 | File:
16 | Line:
17 | Function:
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/application/views/errors/cli/error_general.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | A PHP Error was encountered
4 |
5 | Severity:
6 | Message:
7 | Filename:
8 | Line Number:
9 |
10 |
11 |
12 | Backtrace:
13 |
14 |
15 | File:
16 | Line:
17 | Function:
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/application/views/errors/cli/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_404.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | 404 Page Not Found
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_db.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Database Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_exception.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
An uncaught Exception was encountered
8 |
9 |
Type:
10 |
Message:
11 |
Filename: getFile(); ?>
12 |
Line Number: getLine(); ?>
13 |
14 |
15 |
16 |
Backtrace:
17 | getTrace() as $error): ?>
18 |
19 |
20 |
21 |
22 | File:
23 | Line:
24 | Function:
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_general.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_php.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
A PHP Error was encountered
8 |
9 |
Severity:
10 |
Message:
11 |
Filename:
12 |
Line Number:
13 |
14 |
15 |
16 |
Backtrace:
17 |
18 |
19 |
20 |
21 |
22 | File:
23 | Line:
24 | Function:
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/application/views/errors/html/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/toko/konten/k_member.php:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/application/views/toko/template/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/toko/template/v_footer.php:
--------------------------------------------------------------------------------
1 |
3 |
10 |
--------------------------------------------------------------------------------
/application/views/toko/template/v_navbar.php:
--------------------------------------------------------------------------------
1 |
3 |
4 |
21 |
22 |
--------------------------------------------------------------------------------
/application/views/toko/view/v_detail_produk.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('toko/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('toko/template/v_navbar') ?>
12 | load->view('toko/template/v_sidebar') ?>
13 | load->view('toko/konten/k_detail_produk') ?>
14 | load->view('toko/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/application/views/toko/view/v_member.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('toko/template/v_header') ?>
7 |
8 |
9 |
10 |
11 | load->view('toko/template/v_navbar') ?>
12 | load->view('toko/template/v_sidebar') ?>
13 | load->view('toko/konten/k_member') ?>
14 | load->view('toko/template/v_footer') ?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/application/views/toko/view/v_setting.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('toko/template/v_header') ?>
7 |
12 |
13 |
14 |
15 | load->view('toko/template/v_navbar') ?>
16 | load->view('toko/template/v_sidebar') ?>
17 | load->view('toko/konten/k_setting') ?>
18 | load->view('toko/template/v_footer') ?>
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/application/views/toko/view/v_tambahproduk.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | load->view('toko/template/v_header') ?>
7 |
12 |
13 |
14 |
15 | load->view('toko/template/v_navbar') ?>
16 | load->view('toko/template/v_sidebar') ?>
17 | load->view('toko/konten/k_tambahproduk') ?>
18 | load->view('toko/template/v_footer') ?>
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/captcha/1631185964.435.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/captcha/1631185964.435.jpg
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "The CodeIgniter framework",
3 | "name": "codeigniter/framework",
4 | "type": "project",
5 | "homepage": "https://codeigniter.com",
6 | "license": "MIT",
7 | "support": {
8 | "forum": "http://forum.codeigniter.com/",
9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki",
10 | "slack": "https://codeigniterchat.slack.com",
11 | "source": "https://github.com/bcit-ci/CodeIgniter"
12 | },
13 | "require": {
14 | "php": ">=7.3",
15 | "chriskacerguis/codeigniter-restserver": "^3.1",
16 | "almasaeed2010/adminlte": "~3.1"
17 | },
18 | "suggest": {
19 | "paragonie/random_compat": "Provides better randomness in PHP 5.x"
20 | },
21 | "require-dev": {
22 | "mikey179/vfsstream": "1.1.*",
23 | "phpunit/phpunit": "4.* || 5.*"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/gambar/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/logo.png
--------------------------------------------------------------------------------
/gambar/myicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/myicon.png
--------------------------------------------------------------------------------
/gambar/produk/2pB7NIFkAA.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/2pB7NIFkAA.jpeg
--------------------------------------------------------------------------------
/gambar/produk/3L4fne9ncQ.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/3L4fne9ncQ.jpeg
--------------------------------------------------------------------------------
/gambar/produk/4DhdHVI9TK.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/4DhdHVI9TK.jpeg
--------------------------------------------------------------------------------
/gambar/produk/692J644Ecb.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/692J644Ecb.jpeg
--------------------------------------------------------------------------------
/gambar/produk/9mwamv5S6Y.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/9mwamv5S6Y.jpeg
--------------------------------------------------------------------------------
/gambar/produk/CCJVXOwRzo.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/CCJVXOwRzo.jpeg
--------------------------------------------------------------------------------
/gambar/produk/Dhlc0pgWqx.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/Dhlc0pgWqx.jpg
--------------------------------------------------------------------------------
/gambar/produk/F0DYLB1F5P.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/F0DYLB1F5P.jpg
--------------------------------------------------------------------------------
/gambar/produk/GsMVZa89Q2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/GsMVZa89Q2.jpeg
--------------------------------------------------------------------------------
/gambar/produk/HWLJ0cvWIP.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/HWLJ0cvWIP.jpg
--------------------------------------------------------------------------------
/gambar/produk/JSl8p6EybB.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/JSl8p6EybB.jpg
--------------------------------------------------------------------------------
/gambar/produk/LP609Ijh3i.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/LP609Ijh3i.jpeg
--------------------------------------------------------------------------------
/gambar/produk/Qr7IjKwAH8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/Qr7IjKwAH8.jpg
--------------------------------------------------------------------------------
/gambar/produk/R1aR854wva.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/R1aR854wva.jpg
--------------------------------------------------------------------------------
/gambar/produk/Ud8z0tf0Cl.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/Ud8z0tf0Cl.jpeg
--------------------------------------------------------------------------------
/gambar/produk/YNrh3xcvbq.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/YNrh3xcvbq.jpg
--------------------------------------------------------------------------------
/gambar/produk/ZerH02GpHS.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/ZerH02GpHS.jpeg
--------------------------------------------------------------------------------
/gambar/produk/ad8HmrA6TI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/ad8HmrA6TI.jpg
--------------------------------------------------------------------------------
/gambar/produk/bola.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/bola.jpg
--------------------------------------------------------------------------------
/gambar/produk/nOJpU7ckck.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/nOJpU7ckck.jpg
--------------------------------------------------------------------------------
/gambar/produk/rKD5EdRjm7.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/rKD5EdRjm7.jpeg
--------------------------------------------------------------------------------
/gambar/produk/rSBDz59GiZ.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/rSBDz59GiZ.jpg
--------------------------------------------------------------------------------
/gambar/produk/raket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/raket.png
--------------------------------------------------------------------------------
/gambar/produk/sDiZju62g6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/sDiZju62g6.jpg
--------------------------------------------------------------------------------
/gambar/produk/sZxqIigJqZ.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/sZxqIigJqZ.jpeg
--------------------------------------------------------------------------------
/gambar/produk/sepatu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/sepatu.jpg
--------------------------------------------------------------------------------
/gambar/produk/sepatu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/sepatu.png
--------------------------------------------------------------------------------
/gambar/produk/soxXhYyImk.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/soxXhYyImk.jpeg
--------------------------------------------------------------------------------
/gambar/produk/tX1QJd2hQJ.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/tX1QJd2hQJ.jpeg
--------------------------------------------------------------------------------
/gambar/produk/tlTHRvKWZW.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/tlTHRvKWZW.jpeg
--------------------------------------------------------------------------------
/gambar/produk/yDsIVCx423.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/yDsIVCx423.jpeg
--------------------------------------------------------------------------------
/gambar/produk/yTQFWVEX8C.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/gambar/produk/yTQFWVEX8C.jpg
--------------------------------------------------------------------------------
/license.txt:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 - 2019, British Columbia Institute of Technology
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/master.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/master.zip
--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/system/core/compat/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/cubrid/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/ibase/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mssql/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mysql/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mysqli/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/oci8/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/odbc/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/pdo/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/pdo/subdrivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/postgre/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlite/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlite3/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlsrv/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/fonts/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/fonts/texb.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexistdev/vndrosport/4b4267f040bbc4dfd2629aae6c6270f2e7035be3/system/fonts/texb.ttf
--------------------------------------------------------------------------------
/system/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/language/english/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/language/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Cache/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Javascript/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Session/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Session/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------