1
0
Files
yafcms/app/controllers/Index.php
2021-07-21 09:48:17 +08:00

17 lines
296 B
PHP

<?php
class IndexController extends Yaf_Controller_Abstract {
protected function init() {
echo "IndexController\n";
}
/* action method may have arguments */
function indexAction() {
return false;
}
function loginAction() {
return false;
}
}