17 lines
296 B
PHP
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;
|
|
}
|
|
} |