11 lines
331 B
PHP
11 lines
331 B
PHP
|
|
<?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' );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|