Batch 5a: application core folders

This commit is contained in:
sas.fajri
2026-04-15 15:16:12 +07:00
parent 19cb9f86ef
commit 68d8da1596
101 changed files with 34617 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
require_once APPPATH."/third_party/PHPExcel/Classes/PHPExcel.php";
require_once APPPATH."/third_party/PHPExcel/Classes/PHPExcel/IOFactory.php";
class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}
?>