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.

34 lines
1.3 KiB

7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. /**
  4. * Class Agreement
  5. * ------------------------------------------------------------------------------
  6. * 사이트이용약관 페이지
  7. * 개인정보취급방침 페이지
  8. */
  9. class Agreement extends WB_Controller {
  10. public function site()
  11. {
  12. // 메타태그 설정
  13. $this->site->meta_title = "사이트 이용약관"; // 이 페이지의 타이틀
  14. $this->site->meta_description = get_summary($this->site->config('agreement_site'), FALSE); // 이 페이지의 요약 설명
  15. // 레이아웃 & 뷰파일 설정
  16. $this->theme = $this->site->get_layout();
  17. $this->view = "agreement/site";
  18. $this->active = "/agreement/site";
  19. }
  20. public function privacy()
  21. {
  22. // 메타태그 설정
  23. $this->site->meta_title = "개인정보 취급방침"; // 이 페이지의 타이틀
  24. $this->site->meta_description = get_summary($this->site->config('agreement_privacy'), FALSE); // 이 페이지의 요약 설명
  25. // 레이아웃 & 뷰파일 설정
  26. $this->theme = $this->site->get_layout();
  27. $this->view = "agreement/privacy";
  28. $this->active = "/agreement/privacy";
  29. }
  30. }