mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-12 19:14:57 +01:00
15 lines
285 B
PHP
15 lines
285 B
PHP
<?php
|
|
class etemplate_table_test
|
|
{
|
|
var $public_functions = array(
|
|
'index' => true,
|
|
);
|
|
|
|
function index(array $content=null, $msg='')
|
|
{
|
|
$tmpl = new etemplate_new('etemplate.table_test');
|
|
$content = array();
|
|
$tmpl->exec('etemplate.etemplate_table_test.index', $content);
|
|
}
|
|
}
|