mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
16 lines
211 B
PHP
16 lines
211 B
PHP
<?php
|
|
|
|
|
|
class AdminController extends ApplicationController {
|
|
|
|
function index () {
|
|
echo ' controller called ';
|
|
}
|
|
|
|
function view () {
|
|
$this->render_layout = false;
|
|
echo ' controller called ';
|
|
}
|
|
}
|
|
|
|
?>
|