mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 14:03:19 +01:00
31 lines
460 B
PHP
Executable File
31 lines
460 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
*
|
|
* Example plugin for unit testing.
|
|
*
|
|
* @version $Id$
|
|
*
|
|
*/
|
|
|
|
require_once 'Savant2/Plugin.php';
|
|
|
|
class Savant2_Plugin_fester extends Savant2_Plugin {
|
|
|
|
var $message = "Fester";
|
|
var $count = 0;
|
|
|
|
function Savant2_Plugin_fester()
|
|
{
|
|
// do some other constructor stuff
|
|
$this->message .= " is printing this: ";
|
|
}
|
|
|
|
function plugin(&$text)
|
|
{
|
|
$output = $this->message . $text . " ({$this->count})";
|
|
$this->count++;
|
|
return $output;
|
|
}
|
|
}
|
|
?>
|