mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-24 21:26:09 +00:00
25
Application/Home/Controller/CommonController.class.php
Normal file
25
Application/Home/Controller/CommonController.class.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Home\Controller;
|
||||
|
||||
use Think\Controller;
|
||||
|
||||
class CommonController extends Controller {
|
||||
public function Header() {
|
||||
$this->test = 'Header';
|
||||
$this->display ();
|
||||
}
|
||||
public function Master() {
|
||||
$this->test = 'Master';
|
||||
$this->display ();
|
||||
}
|
||||
public function Banner() {
|
||||
$this->test = 'Banner';
|
||||
$this->display ();
|
||||
}
|
||||
public function Verify() {
|
||||
ob_clean ();
|
||||
$Verify = new \Think\Verify ();
|
||||
$Verify->entry ();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user