mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:33 +01:00
24 lines
272 B
PHP
Executable File
24 lines
272 B
PHP
Executable File
<?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');
|
|
|
|
?>
|