add *.inc files to project

This commit is contained in:
2025-07-08 18:32:56 +00:00
parent 0a5cc834f8
commit 81af71462e
164 changed files with 1781 additions and 246 deletions

View File

@@ -0,0 +1,11 @@
<?php
class EcmJsTable {
const MY_PATH = "include/ECM/EcmJsTable/";
static function getHeaders($metadata, $type) {
$smarty = new Sugar_Smarty ();
$smarty->assign ( 'METADATA', $metadata );
$smarty->assign ( 'TYPE', $type );
return $smarty->fetch ( self::MY_PATH . 'header.tpl' );
}
}
?>