Files
zynapse/app/snippets/test_snippet.php
2010-02-25 00:16:53 +02:00

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';
}
}
?>