You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
717 B

7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. class Tools extends WB_Controller {
  4. public function index()
  5. {
  6. // 메타태그 설정
  7. $this->site->meta_title = "기타 도구"; // 이 페이지의 타이틀
  8. // $this->site->meta_description = ""; // 이 페이지의 요약 설명
  9. // $this->site->meta_keywords = ""; // 이 페이지에서 추가할 키워드 메타 태그
  10. // $this->site->meta_image = ""; // 이 페이지에서 표시할 대표이미지
  11. // 레이아웃 & 뷰파일 설정
  12. $this->theme = "admin";
  13. $this->view = "tools/index";
  14. $this->active = "tools/index";
  15. }
  16. }