Initial import

This commit is contained in:
sas.fajri
2026-04-27 10:26:26 +07:00
commit bf9b9097ee
2388 changed files with 3002242 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
class Syskapus extends CI_Controller
{
function __construct() {
parent::__construct();
$this->db = $this->load->database("onedev", true);
}
public function calc($date) {
$this->load->library("Kapus");
$rst = $this->kapus->calc($date);
print_r($rst);
}
}