first commit
This commit is contained in:
15
controllers/main.class.php
Normal file
15
controllers/main.class.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
class Main extends BaseController{
|
||||
public function enter(){
|
||||
echo '<br/><br/><br/><br/>';
|
||||
echo 'isAjax:'.isAjax();
|
||||
echo Url::getMethod();
|
||||
echo Url::$url;
|
||||
$this->render();
|
||||
}
|
||||
public function test(){
|
||||
print_r( $_REQUEST );
|
||||
echo 'isAjax:'.isAjax();
|
||||
return;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user