mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
16 lines
202 B
PHP
16 lines
202 B
PHP
<?php
|
|
|
|
class TestSnippet extends Snippets {
|
|
|
|
function index () {
|
|
$this->message = 'hello world';
|
|
}
|
|
|
|
function wiiee () {
|
|
$this->message = 'helppppp';
|
|
$this->render_action = 'index';
|
|
}
|
|
|
|
}
|
|
|
|
?>
|