mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 05:23:26 +01:00
24 lines
272 B
PHP
24 lines
272 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Tests default plugins
|
||
|
*
|
||
|
* @version $Id$
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
error_reporting(E_ALL);
|
||
|
|
||
|
require_once 'Savant2.php';
|
||
|
|
||
|
$conf = array(
|
||
|
'template_path' => 'templates',
|
||
|
'resource_path' => 'resources'
|
||
|
);
|
||
|
|
||
|
$savant =& new Savant2($conf);
|
||
|
|
||
|
$savant->display('extend.tpl.php');
|
||
|
|
||
|
?>
|