mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 14:03:19 +01:00
22 lines
264 B
PHP
22 lines
264 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Example plugin for unit testing.
|
||
|
*
|
||
|
* @version $Id$
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
require_once 'Savant2/Plugin.php';
|
||
|
|
||
|
class Savant2_Plugin_example extends Savant2_Plugin {
|
||
|
|
||
|
var $msg = "Example: ";
|
||
|
|
||
|
function plugin()
|
||
|
{
|
||
|
echo $this->msg . "this is an example!";
|
||
|
}
|
||
|
}
|
||
|
?>
|