Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
master-absenku-custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nurchamim
master-absenku-custom
Commits
d5d41690
Commit
d5d41690
authored
Jan 13, 2026
by
nurchamim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
menghapus folder tersting pada controller
parent
8795331b
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
117 deletions
+0
-117
application/controllers/testing/Pengajuan_data_diri.php
+0
-62
application/controllers/testing/Pengajuan_data_keluarga.php
+0
-11
application/controllers/testing/Pengajuan_data_sertifikat.php
+0
-11
application/controllers/testing/Pengajuan_kelengkapan_file.php
+0
-11
application/controllers/testing/Pengajuan_pengalaman_kerja.php
+0
-11
application/controllers/testing/Pengajuan_riwayat_pendidikan.php
+0
-11
No files found.
application/controllers/testing/Pengajuan_data_diri.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_data_diri
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `data_karyawan_p` (
`id_karyawan`,
`nik`,
`nama_lengkap`,
`gelar_depan`,
`gelar_belakang`,
`jenis_kelamin`,
`golongan_darah`,
`agama`,
`tempat_lahir`,
`tgl_lahir`,
`alamat_domisili`,
`rt`,
`rw`,
`id_kel`,
`id_kec`,
`id_kab`,
`id_prov`,
`kode_pos`,
`no_ktp`,
`no_bpjs_kes`,
`no_bpjs_tk`,
`telepon`,
`email`,
`pendidikan_terakhir`,
`id_company`,
`status`) VALUES (
'21866MJK4631',
'MJK4631',
'SUPARMAN',
'',
'',
'L',
'',
'',
'',
'1970-01-01',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'21866',
'1')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
application/controllers/testing/Pengajuan_data_keluarga.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_data_keluarga
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `data_keluarga_p` (`id_keluarga`, `id_karyawan`, `nama`, `tempat_lahir`, `tanggal_lahir`, `jenis_kelamin`, `agama`, `telepon`, `pekerjaan`, `hub_keluarga`, `status_perkawinan`, `nik`, `no_bpjs`, `pendidikan_terakhir`, `tanggal_perkawinan`, `status_pengajuan`, `id_company`) VALUES ('218662024010001','2d444c75d854729596438487fa814893','Rozak','Semarang','1975-01-01','L','Islam','','Pelajar/Mahasiswa','Ayah','Belum Kawin','',0,'Belum Sekolah','1970-01-01','1','21866')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
application/controllers/testing/Pengajuan_data_sertifikat.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_data_sertifikat
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `data_sertifikat_p` (`id_sertifikat`, `id_karyawan`, `nama_sertifikat`, `penyelenggara`, `tgl_berlaku`, `tgl_berakhir`, `deskripsi`, `file`, `id_company`, `status_pengajuan`) VALUES ('218662024010001','21866MJK4631','CCNA','CISCO','2024-01-16','2026-01-21','Network 1','21866/karyawan/21866MJK4631/sertifikat/7b269c2d-ffb2-4468-a589-48bab6a98286.png','21866','1')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
application/controllers/testing/Pengajuan_kelengkapan_file.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_kelengkapan_file
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `data_kelengkapan_file_p` (`id_kelengkapan_file`, `id_karyawan`, `nama_dokumen`, `file`, `id_company`) VALUES ('218662024010001','21866MJK4631','NPWP','21866/karyawan/21866MJK4631/kelengkapan-file/ffea230b-8c9c-40eb-81e3-246decffa83d.jpg','21866')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
application/controllers/testing/Pengajuan_pengalaman_kerja.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_pengalaman_kerja
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `riwayat_pekerjaan_p` (`id_riwayat_pekerjaan`, `id_karyawan`, `id_company`, `nama_perusahaan`, `jenis_perusahaan`, `jabatan`, `kota`, `provinsi`, `alamat_perusahaan`, `tgl_masuk`, `tgl_keluar`, `alasan_berhenti`, `file`, `status_pengajuan`) VALUES ('218662024010001','21866MJK4631','21866','PT. Lumpia Cik Lin','Pertambangan','Staff','3374','33','Semarang','2020-01-01','2024-01-16','bosen','','1')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
application/controllers/testing/Pengajuan_riwayat_pendidikan.php
deleted
100644 → 0
View file @
8795331b
<?php
class
Pengajuan_riwayat_pendidikan
extends
CI_Controller
{
public
function
pengajuan
()
{
$sql
=
"INSERT INTO `riwayat_pendidikan_p` (`id_riwayat_pendidikan`, `id_karyawan`, `nama_sekolah`, `jenjang`, `jurusan`, `lulusan_asal`, `gelar`, `tahun_masuk`, `tahun_lulus`, `ijazah`, `transkrip`, `id_company`, `status_pengajuan`) VALUES ('218662024010001','21866MJK4631','SMK N 1 Semarang','SMA/SMK','Teknik Komputer Jaringan','Dalam Negeri','','2009','2012','','','21866','1')"
;
$this
->
db
->
query
(
$sql
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment