1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-02-25 14:51:35 +01:00
egroupware_official/etemplate/inc/class.etemplate_table_test.inc.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);
}
}