terms.php 275 B

123456789101112131415
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. if (!defined('WY_ROOT')) {
  5. exit;
  6. }
  7. class terms extends Controller
  8. {
  9. public function index()
  10. {
  11. $data = array('title' => '网站隐私条款');
  12. $this->put('terms.php', $data);
  13. }
  14. }
  15. ?>