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.

887 lines
33 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. class Management extends WB_Controller {
  4. public function __construct()
  5. {
  6. parent::__construct();
  7. $this->theme = "admin";
  8. }
  9. /**
  10. * 메뉴 관리
  11. */
  12. public function menu()
  13. {
  14. // 게시판 리스트 가져오기
  15. $this->data['menu_list'] = $this->db->where('mnu_parent','0')->order_by('mnu_order ASC')->get('menu')->result_array();
  16. // 2차메뉴 가져오기
  17. foreach($this->data['menu_list'] as &$row)
  18. {
  19. $row['children']= $this->db->where('mnu_parent',$row['mnu_idx'])->order_by('mnu_order ASC')->get('menu')->result_array();
  20. foreach( $row['children'] as &$rw )
  21. {
  22. $rw['children']= $this->db->where('mnu_parent',$rw['mnu_idx'])->order_by('mnu_order ASC')->get('menu')->result_array();
  23. }
  24. }
  25. // 레이아웃 & 뷰파일 설정
  26. $this->theme = "admin";
  27. $this->view = "management/menu";
  28. $this->active = "management/menu";
  29. }
  30. /**
  31. * 메뉴 등록/수정
  32. */
  33. public function menu_form()
  34. {
  35. $this->load->library('form_validation');
  36. $this->form_validation->set_rules("mnu_name", "메뉴 이름", "required|trim|max_length[30]");
  37. $this->form_validation->set_rules("mnu_link", "메뉴 링크", "required|trim");
  38. if( $this->form_validation->run() != FALSE )
  39. {
  40. $data['mnu_idx'] = $this->input->post('mnu_idx', TRUE);
  41. $data['mnu_parent'] = $this->input->post('mnu_parent', TRUE);
  42. $data['mnu_name'] = $this->input->post('mnu_name', TRUE);
  43. $data['mnu_parent'] = $this->input->post('mnu_parent', TRUE);
  44. $data['mnu_link'] = str_replace(base_url(), '/', $this->input->post('mnu_link', TRUE));
  45. $data['mnu_newtab'] = $this->input->post('mnu_newtab', TRUE) == 'Y' ? 'Y' : 'N';
  46. $data['mnu_desktop'] = $this->input->post('mnu_desktop', TRUE) == 'N' ? 'N' : 'Y';
  47. $data['mnu_mobile'] = $this->input->post('mnu_mobile', TRUE) == 'N' ? 'N' : 'Y';
  48. $data['mnu_active_key'] = $this->input->post('mnu_active_key', TRUE);
  49. if(empty($data['mnu_idx']))
  50. {
  51. $sort = (int)$this->db->select_max('mnu_order', 'max')->where('mnu_parent', $data['mnu_parent'])->get('menu')->row(0)->max ;
  52. $data['mnu_order'] = $sort+1;
  53. $this->db->insert('menu', $data);
  54. }
  55. else
  56. {
  57. $this->db->where('mnu_idx', $data['mnu_idx'] );
  58. $this->db->update('menu', $data);
  59. }
  60. $this->load->driver('cache', array('adapter' => 'apc', 'backup' => 'file', 'key_prefix' => PROJECT));
  61. $this->cache->delete('menu_desktop');
  62. $this->cache->delete('menu_mobile');
  63. alert_modal_close("메뉴 등록이 완료되었습니다.", TRUE);
  64. exit;
  65. }
  66. else
  67. {
  68. // 게시판 목록 가져오기
  69. $board_list = $this->db->get('board')->result_array();
  70. $this->data['board_list'] = array();
  71. foreach($board_list as $row) {
  72. $this->data['board_list'][] = array(
  73. "url" => '/board/'.$row['brd_key'],
  74. "name" => $row['brd_title']
  75. );
  76. }
  77. $this->data['mnu_idx'] = $this->input->get('mnu_idx', TRUE);
  78. $this->data['mnu_parent'] = $this->input->get('mnu_parent', TRUE);
  79. $this->data['view'] = array();
  80. if( ! empty($this->data['mnu_idx']) )
  81. {
  82. $this->data['view'] = $this->db->where('mnu_idx', $this->data['mnu_idx'])->get('menu')->row_array();
  83. }
  84. $this->theme = "admin";
  85. $this->theme_file = "iframe";
  86. $this->view = "management/menu_form";
  87. }
  88. }
  89. /**
  90. * 메뉴 삭제
  91. */
  92. public function menu_delete($mnu_idx)
  93. {
  94. if(empty($mnu_idx))
  95. {
  96. alert('잘못된 접근입니다.');
  97. exit;
  98. }
  99. // 하위메뉴가 있는지 확인한다
  100. $cnt = (int)$this->db->select('COUNT(*) AS cnt')->where('mnu_parent', $mnu_idx)->get('menu')->row(0)->cnt;
  101. if( $cnt > 0 )
  102. {
  103. alert('해당 메뉴에 하위메뉴가 존재합니다. 하위메뉴를 먼저 삭제해주세요');
  104. exit;
  105. }
  106. $this->db->where('mnu_idx', $mnu_idx)->delete('menu');
  107. $this->load->driver('cache', array('adapter' => 'apc', 'backup' => 'file', 'key_prefix' => PROJECT));
  108. $this->cache->delete('menu_desktop');
  109. $this->cache->delete('menu_mobile');
  110. alert('삭제되었습니다.');
  111. }
  112. /**
  113. * 메뉴 전체 저장
  114. */
  115. public function menu_multi_update()
  116. {
  117. $mnu_idx = $this->input->post('mnu_idx', TRUE);
  118. $mnu_name = $this->input->post('mnu_name', TRUE);
  119. $mnu_link = $this->input->post('mnu_link', TRUE);
  120. $mnu_order = $this->input->post('mnu_order', TRUE);
  121. $mnu_newtab = $this->input->post('mnu_newtab', TRUE);
  122. $mnu_desktop = $this->input->post('mnu_desktop', TRUE);
  123. $mnu_mobile = $this->input->post('mnu_mobile', TRUE);
  124. $mnu_active_key = $this->input->post('mnu_active_key', TRUE);
  125. $data = array();
  126. for($i=0; $i<count($mnu_idx); $i++)
  127. {
  128. $data[] = array(
  129. "mnu_idx" => $mnu_idx[$i],
  130. "mnu_name" => $mnu_name[$i],
  131. "mnu_link" => $mnu_link[$i],
  132. "mnu_order"=> $mnu_order[$i],
  133. "mnu_desktop" => $mnu_desktop[$i],
  134. "mnu_newtab" => $mnu_newtab[$i],
  135. "mnu_mobile" => $mnu_mobile[$i],
  136. "mnu_active_key" => $mnu_active_key[$i]
  137. );
  138. }
  139. $this->db->update_batch("menu", $data, "mnu_idx");
  140. $this->load->driver('cache', array('adapter' => 'apc', 'backup' => 'file', 'key_prefix' => PROJECT));
  141. $this->cache->delete('menu_desktop');
  142. $this->cache->delete('menu_mobile');
  143. alert('저장 되었습니다.', base_url('admin/management/menu'));
  144. exit;
  145. }
  146. /**
  147. * 사이트맵 기능
  148. */
  149. public function sitemap()
  150. {
  151. $this->view = $this->active = "management/sitemap";
  152. }
  153. /**
  154. * 사이트맵
  155. */
  156. public function sitemap_form()
  157. {
  158. $this->load->library('form_validation');
  159. $this->form_validation->set_rules('sit_loc', 'URL', 'required|trim');
  160. if( $this->form_validation->run() != FALSE )
  161. {
  162. $data['sit_loc'] = '/'.ltrim($this->input->post('sit_loc', TRUE),'/');
  163. $data['sit_priority'] = $this->input->post('sit_priority', TRUE);
  164. $data['sit_changefreq'] = $this->input->post('sit_changefreq', TRUE);
  165. $data['sit_memo'] = $this->input->post('sit_memo', TRUE);
  166. $data['reg_user'] = $data['upd_user'] = $this->member->is_login();
  167. $data['reg_datetime'] = $data['upd_datetime'] = date('Y-m-d H:i:s');
  168. $this->db->insert("sitemap", $data);
  169. alert_modal_close("등록되었습니다.",FALSE);
  170. exit;
  171. }
  172. else
  173. {
  174. $this->theme_file = "iframe";
  175. $this->view = "management/sitemap_form";
  176. }
  177. }
  178. /**
  179. * FAQ 관리
  180. * @param string $faq_idx
  181. */
  182. public function faq($fac_idx="")
  183. {
  184. // FAQ 모델
  185. $this->load->model('faq_model');
  186. // faq_idx 여부에 따라 하위 FAQ 목록 불러오기
  187. $this->data['fac_idx'] = $fac_idx;
  188. $this->data['faq_list'] = NULL;
  189. if( $this->data['fac_idx'] )
  190. {
  191. $this->data['faq_list'] = $this->faq_model->get_detail_list($fac_idx);
  192. $this->data['faq_group'] = $this->faq_model->get_category($fac_idx);
  193. }
  194. // 데이타 불러오기
  195. $this->data['faq_category'] = $this->faq_model->get_category_list();
  196. // 메타태그 설정
  197. $this->site->meta_title = "사이트 관리 - FAQ 관리"; // 이 페이지의 타이틀
  198. // 레이아웃 & 뷰파일 설정
  199. $this->theme = "admin";
  200. $this->view = "management/faq";
  201. $this->active = "management/faq";
  202. }
  203. /**
  204. * FAQ 분류 등록/수정
  205. */
  206. public function faq_category_form()
  207. {
  208. $this->load->model('faq_model');
  209. $this->load->library("form_validation");
  210. $this->form_validation->set_rules("fac_title", "제목", "required|trim");
  211. $this->form_validation->set_rules("fac_idx", "고유키", "required|trim");
  212. if( $this->form_validation->run() != FALSE )
  213. {
  214. $data['fac_idx'] = $this->input->post('fac_idx', TRUE);
  215. $data['fac_title'] = trim($this->input->post('fac_title', TRUE));
  216. $mode = $this->input->post('mode', TRUE);
  217. if( $mode == 'INSERT' )
  218. {
  219. // 가장큰 순서값을 가져온다.
  220. $data['fac_sort'] = ((int) $this->db->select_max("fac_sort","max")->where('fac_status','Y')->get('faq_category')->row(0)->max) + 1;
  221. if(( $exist = $this->faq_model->get_category($data['fac_idx'])) && isset($exist['fac_idx']) )
  222. {
  223. alert('이미 존재하는 고유키 입니다.');
  224. exit;
  225. }
  226. if( $this->db->insert('faq_category', $data) ) {
  227. alert_modal_close("새로운 FAQ 분류를 추가하였습니다.");
  228. }
  229. else {
  230. alert('DB입력도중 오류가 발생하였습니다.');
  231. }
  232. }
  233. else if ( $mode == 'UPDATE' ) {
  234. $this->db->where('fac_idx', $data['fac_idx']);
  235. if( $this->db->update('faq_category', $data)) {
  236. alert_modal_close("FAQ 분류 정보를 수정하였습니다.");
  237. }
  238. else {
  239. alert('DB입력도중 오류가 발생하였습니다.');
  240. }
  241. }
  242. else {
  243. alert('잘못된 접근입니다.');
  244. }
  245. }
  246. else
  247. {
  248. $fac_idx = $this->input->get('fac_idx', TRUE);
  249. $this->data['view'] = ( empty($fac_idx) ) ? array() : $this->faq_model->get_category($fac_idx);
  250. $this->data['is_edit'] = ! ( empty($fac_idx) );
  251. if( $fac_idx && ! $this->data['view'] && ($this->data['view']['fac_idx'] != $fac_idx) )
  252. {
  253. alert_modal_close("잘못된 접근입니다.");
  254. exit();
  255. }
  256. $this->theme = "admin";
  257. $this->theme_file = "iframe";
  258. $this->view = "management/faq_category_form";
  259. }
  260. }
  261. /**
  262. * FAQ 등록/수정
  263. */
  264. public function faq_form()
  265. {
  266. $this->load->model('faq_model');
  267. $this->load->library("form_validation");
  268. $this->form_validation->set_rules("fac_idx", "FAQ 분류", "required|trim");
  269. $this->form_validation->set_rules("faq_title", "제목", "required|trim");
  270. if( $this->form_validation->run() != FALSE )
  271. {
  272. $data['faq_idx'] = $this->input->post('faq_idx', TRUE);
  273. $data['fac_idx'] = $this->input->post('fac_idx', TRUE);
  274. $data['faq_title'] = $this->input->post('faq_title', TRUE);
  275. $data['faq_content'] = $this->input->post('faq_content', FALSE);
  276. if(empty($data['fac_idx']))
  277. {
  278. alert('잘못된 접근입니다.');
  279. exit;
  280. }
  281. if(empty($data['faq_idx']))
  282. {
  283. $data['faq_sort'] = ((int) $this->db->select_max("faq_sort","max")->where('faq_status','Y')->where('fac_idx', $data['fac_idx'])->get('faq')->row(0)->max) + 1;
  284. if( ! $this->db->insert("faq", $data) )
  285. {
  286. alert("DB정보 등록에 실패하였습니다.");
  287. exit;
  288. }
  289. }
  290. else
  291. {
  292. $this->db->where("faq_idx", $data['faq_idx']);
  293. if(! $this->db->update("faq", $data) )
  294. {
  295. alert("DB정보 수정에 실패하였습니다.");
  296. exit;
  297. }
  298. }
  299. // FAQ 분류에 등록된 FAQ 수를 최신화 한다.
  300. $this->faq_model->update_category_count($data['fac_idx']);
  301. alert_modal_close('FAQ 정보가 등록되었습니다.');
  302. exit;
  303. }
  304. else
  305. {
  306. $fac_idx = $this->input->get('fac_idx', TRUE);
  307. $faq_idx = $this->input->get('faq_idx', TRUE);
  308. $this->data['faq_group'] = $this->faq_model->get_category($fac_idx);
  309. $this->data['view'] = ( empty($faq_idx) ) ? array() : $this->faq_model->get_faq($faq_idx);
  310. if( ! $this->data['faq_group'] )
  311. {
  312. alert_modal_close("잘못된 접근입니다.");
  313. exit();
  314. }
  315. $this->theme = "admin";
  316. $this->theme_file = "iframe";
  317. $this->view = "management/faq_form";
  318. }
  319. }
  320. /**
  321. * 팝업 관리
  322. */
  323. public function popup()
  324. {
  325. // 메타태그 설정
  326. $this->site->meta_title = "팝업 관리";
  327. // 레이아웃 & 뷰파일 설정
  328. $this->active = $this->view = "management/popup";
  329. }
  330. /**
  331. * 팝업 등록/수정
  332. */
  333. public function popup_form($pop_idx="")
  334. {
  335. $this->load->model('popup_model');
  336. $this->load->library('form_validation');
  337. $this->form_validation->set_rules('pop_title', '팝업 이름', 'required|trim');
  338. $this->form_validation->set_rules('pop_width', '팝업 너비', 'required|trim|is_natural_no_zero');
  339. $this->form_validation->set_rules('pop_height', '팝업 높이', 'required|trim|is_natural_no_zero');
  340. $this->form_validation->set_rules('pop_type', '팝업 종류', 'required|trim|in_list[Y,N]');
  341. $this->form_validation->set_rules('pop_start', '표시 시작 시간', 'required|trim');
  342. $this->form_validation->set_rules('pop_start', '표시 종료 시간', 'required|trim');
  343. if( $this->form_validation->run() != FALSE )
  344. {
  345. $data['pop_title'] = $this->input->post('pop_title', TRUE);
  346. $data['pop_width'] = $this->input->post('pop_width', TRUE);
  347. $data['pop_height'] = str_replace(',','',$this->input->post('pop_height', TRUE));
  348. $data['pop_content'] = str_replace(',','',$this->input->post('pop_content', FALSE));
  349. $data['pop_status'] = 'Y';
  350. $data['pop_start'] = str_replace("T"," ", $this->input->post('pop_start', TRUE));
  351. $data['pop_end'] = str_replace("T"," ", $this->input->post('pop_end', TRUE));
  352. $data['upd_datetime'] = date('Y-m-d H:i:s');
  353. $data['upd_user'] = $this->member->is_login();
  354. $data['pop_type'] = $this->input->post('pop_type', TRUE) == 'N' ? 'N' : 'Y';
  355. if( empty($pop_idx) )
  356. {
  357. $data['reg_datetime'] = $data['upd_datetime'];
  358. $data['reg_user'] = $data['upd_user'];
  359. $this->db->insert('popup', $data);
  360. }
  361. else
  362. {
  363. $this->db->where('pop_idx', $pop_idx);
  364. $this->db->update('popup', $data);
  365. }
  366. alert_modal_close('팝업 정보 입력이 완료되었습니다.', FALSE);
  367. exit;
  368. }
  369. else
  370. {
  371. $this->data['view'] = array();
  372. if(! empty($pop_idx))
  373. {
  374. if(! $this->data['view'] = $this->db->where('pop_idx', $pop_idx)->get('popup')->row_array())
  375. {
  376. alert_modal_close('잘못된 접근입니다.',false);
  377. }
  378. }
  379. // 메타태그 설정
  380. $this->site->meta_title = "팝업 관리";
  381. // 레이아웃 & 뷰파일 설정
  382. $this->theme_file = "iframe";
  383. $this->view = "management/popup_form";
  384. }
  385. }
  386. function datetime_regex($str)
  387. {
  388. if(!preg_match('/(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2})/',$str, $matches))
  389. {
  390. $this->form_validation->set_message('datetime_regex', '올바른 형식의 날짜/시간 형태가 아닙니다 : {field}');
  391. return FALSE;
  392. }
  393. return TRUE;
  394. }
  395. /****************************************************************************
  396. * 배너 관리 - 목록
  397. ***************************************************************************/
  398. function banner($bng_key="")
  399. {
  400. $this->load->model('basic_model');
  401. // bng_key 여부에 따라 하위 FAQ 목록 불러오기
  402. $this->data['bng_key'] = $bng_key;
  403. $this->data['faq_list'] = NULL;
  404. if( $this->data['bng_key'] )
  405. {
  406. $this->data['banner_list'] = array();
  407. $param['limit'] = FALSE;
  408. $param['from'] = "banner";
  409. $param['order_by'] = "ban_sort ASC";
  410. $param['where']['bng_key'] = $bng_key;
  411. $this->data['banner_list'] = $this->basic_model->get_list($param);
  412. unset($param);
  413. $this->data['banner_group'] = $this->db->where('bng_key', $this->data['bng_key'])->get('banner_group')->row_array();
  414. }
  415. // 배너 그룹 목록 가져오기
  416. $param['limit'] = FALSE;
  417. $param['order_by'] = "bng_sort ASC";
  418. $param['from'] = "banner_group";
  419. $this->data['banner_group_list'] = $this->basic_model->get_list($param);
  420. // 메타태그 설정
  421. $this->site->meta_title = "사이트 관리 - 배너 관리"; // 이 페이지의 타이틀
  422. // 레이아웃 & 뷰파일 설정
  423. $this->theme = "admin";
  424. $this->view = "management/banner";
  425. $this->active = "management/banner";
  426. }
  427. /****************************************************************************
  428. * 배너 관리 - 그룹 추가/수정
  429. ***************************************************************************/
  430. function banner_group_form()
  431. {
  432. $this->load->library('form_validation');
  433. $this->form_validation->set_rules('bng_key', "배너 그룹 고유 키", "required|trim|max_length[20]|alpha_dash");
  434. $this->form_validation->set_rules('bng_name', "배너 이름","required|trim|max_length[50]");
  435. if( $this->form_validation->run() != FALSE )
  436. {
  437. $data['bng_idx'] = $this->input->post('bng_idx', TRUE);
  438. $data['bng_key'] = $this->input->post('bng_key', TRUE);
  439. $data['bng_name'] = $this->input->post('bng_name', TRUE);
  440. $data['bng_width'] = $this->input->post('bng_width', TRUE, 0);
  441. $data['bng_height'] = $this->input->post('bng_height', TRUE, 0);
  442. $data['upd_user'] = $this->member->is_login();
  443. $data['upd_datetime'] = date('Y-m-d H:i:s');
  444. for($i=1; $i<=5; $i++)
  445. {
  446. $data["bng_ext{$i}"] = $this->input->post("bng_ext{$i}",TRUE,'');
  447. $data["bng_ext{$i}_use"] = $this->input->post("bng_ext{$i}_use",TRUE,'N');
  448. }
  449. if(empty($data['bng_idx']))
  450. {
  451. $tmp = (int)$this->db->select('COUNT(*) AS cnt')->where('bng_key', $data['bng_key'])->get('banner_group')->row(0)->cnt;
  452. if($tmp > 0) {
  453. alert('이미 존재하는 고유키 입니다.');
  454. exit;
  455. }
  456. $sort = (int)$this->db->select_max('bng_sort', 'max')->get('banner_group')->row(0)->max;
  457. $data['reg_user'] = $data['upd_user'];
  458. $data['reg_datetime'] = $data['upd_datetime'];
  459. $data['bng_sort'] = $sort+1;
  460. if( $this->db->insert('banner_group', $data))
  461. {
  462. alert_modal_close('배너 그룹이 추가 되었습니다.', TRUE);
  463. exit;
  464. }
  465. }
  466. else
  467. {
  468. $this->db->where('bng_idx', $data['bng_idx']);
  469. if( $this->db->update('banner_group', $data) )
  470. {
  471. alert_modal_close('배너 그룹이 수정 되었습니다.', TRUE);
  472. exit;
  473. }
  474. }
  475. alert('서버 오류가 발생하였습니다.');
  476. exit;
  477. }
  478. else
  479. {
  480. $bng_idx = $this->input->get('bng_idx', TRUE);
  481. $this->data['view'] = array();
  482. if(! empty($bng_idx)) {
  483. $this->data['view'] = $this->db->where('bng_idx', $bng_idx)->get('banner_group')->row_array();
  484. }
  485. $this->theme_file = "iframe";
  486. $this->view = "management/banner_group_form";
  487. }
  488. }
  489. /****************************************************************************
  490. * 배너 관리 - 그룹 삭제
  491. ***************************************************************************/
  492. function banner_group_delete($bng_idx="")
  493. {
  494. if(empty($bng_idx)) {
  495. alert('잘못된 접근입니다.');
  496. exit;
  497. }
  498. $banner_group = $this->db->where('bng_idx', $bng_idx)->get('banner_group')->row_array();
  499. if(empty($banner_group) OR empty($banner_group['bng_key'])) {
  500. alert('존재하지 않는 그룹이거나, 이미 삭제된 그룹입니다.');
  501. exit;
  502. }
  503. // 배너에 포함된 파일을 삭제하기 위해 배너 목록을 가져와서 파일을 삭제한다.
  504. $banner_list = $this->db->where('bng_key', $banner_group['bng_key'])->get('banner')->result_array();
  505. // 트랜젝션 시작
  506. $this->db->trans_begin();
  507. $this->db->where('bng_idx', $bng_idx);
  508. $this->db->delete('banner_group');
  509. $this->db->where('bng_key', $banner_group['bng_key']);
  510. $this->db->delete('banner');
  511. if ($this->db->trans_status() === FALSE)
  512. {
  513. $this->db->trans_rollback();
  514. alert('그룹 삭제에 실패하였습니다. 관리자에게 문의하세요');
  515. exit;
  516. }
  517. else
  518. {
  519. $this->db->trans_commit();
  520. // 배너 파일들을 삭제
  521. if(count($banner_list) > 0)
  522. {
  523. foreach($banner_list as $row)
  524. {
  525. if(empty($row['ban_filepath'])) continue;
  526. file_delete($row['ban_filepath']);
  527. }
  528. }
  529. alert('배너 그룹을 삭제하였습니다.');
  530. exit;
  531. }
  532. }
  533. /****************************************************************************
  534. * 배너 관리 - 배너 추가/수정
  535. ***************************************************************************/
  536. function banner_form()
  537. {
  538. $this->load->library('form_validation');
  539. $this->form_validation->set_rules('bng_key', "배너 그룹 고유 키", "required|trim");
  540. $this->form_validation->set_rules('ban_name', "배너 이름","required|trim|max_length[50]");
  541. if($this->form_validation->run() != FALSE)
  542. {
  543. $data['bng_key'] = $this->input->post('bng_key', TRUE);
  544. $data['ban_idx'] = $this->input->post('ban_idx', TRUE);
  545. $data['ban_name'] = $this->input->post('ban_name', TRUE);
  546. $data['ban_link_use'] = $this->input->post('ban_link_use', TRUE) == 'Y' ? 'Y' : 'N';
  547. $data['ban_link_url'] = $this->input->post('ban_link_url', TRUE, "");
  548. $data['ban_link_type'] = $this->input->post('ban_link_url', TRUE) == 'Y' ? 'Y': 'N';
  549. $data['ban_status'] = $this->input->post('ban_status', TRUE) == 'H' ? 'H' : 'Y';
  550. $data['ban_timer_use'] = $this->input->post('ban_timer_use', TRUE) == 'Y' ? 'Y' : 'N';
  551. $data['ban_timer_start'] = $this->input->post('ban_timer_start', TRUE, '0000-00-00 00:00:00');
  552. $data['ban_timer_end'] = $this->input->post('ban_timer_end', TRUE, '0000-00-00 00:00:00');
  553. for($i=1; $i<=5; $i++)
  554. {
  555. $data["ban_ext{$i}"] = $this->input->post("ban_ext{$i}",TRUE,'');
  556. }
  557. $data['upd_user'] = $this->member->is_login();
  558. $data['upd_datetime'] = date('Y-m-d H:i:s');
  559. // 업로드된 파일이 있을경우 처리
  560. if( isset($_FILES['userfile']) && $_FILES['userfile'] && $_FILES['userfile']['tmp_name'] )
  561. {
  562. $up_dir = DIR_UPLOAD . DIRECTORY_SEPARATOR . 'banners';
  563. $up_dir = make_dir($up_dir, TRUE, TRUE);
  564. $config['upload_path'] = './'.ltrim($up_dir,'/');
  565. $config['allowed_types'] = 'gif|jpg|png';
  566. $config['file_ext_tolower'] = TRUE;
  567. $config['encrypt_name'] = TRUE;
  568. $this->load->library("upload", $config);
  569. $this->upload->initialize($config);
  570. if( ! $this->upload->do_upload('userfile') )
  571. {
  572. alert("이미지 업로드중 오류가 발생하였습니다.".$this->upload->display_errors('업로드 오류:', ' ').$config['upload_path'] );
  573. }
  574. else
  575. {
  576. $data['ban_filepath'] = rtrim(str_replace(DIRECTORY_SEPARATOR, "/", $up_dir), "/") . "/" . $this->upload->data('file_name');
  577. // 수정일경우 원래 이미지를 삭제한다
  578. if(! empty($data['ban_idx']))
  579. {
  580. db_file_delete("banner","ban_idx", $data['ban_idx'], 'ban_filepath');
  581. }
  582. }
  583. }
  584. if(empty($data['ban_idx']))
  585. {
  586. $data['ban_regtime'] = date('Y-m-d H:i:s');
  587. $data['reg_user'] = $data['upd_user'];
  588. $sort = (int)$this->db->select_max('ban_sort', 'max')->where('bng_key', $data['bng_key'])->get('banner')->row(0)->max;
  589. $data['ban_sort'] = $sort+1;
  590. $this->db->insert('banner', $data);
  591. }
  592. else
  593. {
  594. $this->db->where('ban_idx', $data['ban_idx']);
  595. $this->db->update('banner', $data);
  596. }
  597. alert_modal_close("등록이 완료되었습니다.", TRUE);
  598. exit;
  599. }
  600. else
  601. {
  602. $this->data['bng_key'] = $this->input->get('bng_key', TRUE);
  603. $this->data['ban_idx'] = $this->input->get('ban_idx', TRUE);
  604. $this->data['view'] = array();
  605. if(empty($this->data['bng_key']))
  606. {
  607. alert_modal_close('잘못된 접근입니다.');
  608. exit;
  609. }
  610. if( ! $this->data['banner_group'] = $this->db->where('bng_key', $this->data['bng_key'])->get('banner_group')->row_array())
  611. {
  612. alert_modal_close('잘못된 접근입니다.');
  613. exit;
  614. }
  615. if(! empty($this->data['ban_idx'])) {
  616. if(! $this->data['view'] = $this->db->where('ban_idx', $this->data['ban_idx'])->get('banner')->row_array())
  617. {
  618. alert('삭제되었거나 존재하지 않는 배너 입니다.');
  619. exit;
  620. }
  621. }
  622. $this->theme = "admin";
  623. $this->theme_file = "iframe";
  624. $this->view = "management/banner_form";
  625. }
  626. }
  627. /****************************************************************************
  628. * 배너 관리 - 배너 삭제
  629. ***************************************************************************/
  630. function banner_delete($ban_idx="")
  631. {
  632. if(empty($ban_idx)) {
  633. alert('잘못된 접근입니다.');
  634. exit;
  635. }
  636. $banner = $this->db->where('ban_idx', $ban_idx)->get('banner')->row_array();
  637. if(empty($banner) OR empty($banner['ban_idx'])) {
  638. alert('존재하지 않는 배너거나, 이미 삭제된 배너입니다.');
  639. exit;
  640. }
  641. $this->db->where('ban_idx', $ban_idx);
  642. if( $this->db->delete('banner') )
  643. {
  644. if(! empty($banner['ban_filepath']))
  645. {
  646. file_delete($banner['ban_filepath']);
  647. }
  648. alert('배너를 삭제하였습니다.');
  649. }
  650. else {
  651. alert('배너 삭제도중 오류가 발생하였습니다.');
  652. }
  653. }
  654. /****************************************************************************
  655. * Q&A 관리
  656. ***************************************************************************/
  657. function qna() {
  658. $this->view = $this->active = 'management/qna';
  659. }
  660. /****************************************************************************
  661. * Q&A 분류 관리
  662. ***************************************************************************/
  663. function qna_category()
  664. {
  665. $this->data['lists'] = $this->db->where('qnc_status','Y')->order_by('sort ASC')->get('qna_category')->result_array();
  666. $this->view = "management/qna_category";
  667. $this->theme_file = 'iframe';
  668. }
  669. /****************************************************************************
  670. * Q&A 내용 보기
  671. ***************************************************************************/
  672. function qna_view($qna_idx = "")
  673. {
  674. $this->load->library('form_validation');
  675. if(empty($qna_idx)) {
  676. alert_modal_close('잘못된 접근입니다.');
  677. exit;
  678. }
  679. if(! $this->data['view'] =
  680. $this->db
  681. ->select('Q.*, QC.qnc_title, M.mem_nickname AS qna_ans_upd_username')
  682. ->where('qna_idx', $qna_idx)
  683. ->from('qna AS Q')
  684. ->join('qna_category AS QC','QC.qnc_idx=Q.qnc_idx','left')
  685. ->join('member AS M','M.mem_idx=Q.qna_ans_user','left')
  686. ->get()
  687. ->row_array() )
  688. {
  689. alert_modal_close('잘못된 접근입니다.');
  690. exit;
  691. }
  692. $this->form_validation->set_rules('qna_ans_content', '답변 내용', 'required|trim');
  693. if( $this->form_validation->run() !=FALSE )
  694. {
  695. $data['qna_ans_status'] = 'Y';
  696. $data['qna_ans_upd_user'] = $this->member->is_login();
  697. $data['qna_ans_upd_datetime'] = date('Y-m-d H:i:s');
  698. $data['qna_ans_content'] = $this->input->post('qna_ans_content', TRUE);
  699. if($this->data['view']['qna_ans_status'] == 'N') {
  700. $data['qna_ans_user'] = $data['qna_ans_upd_user'];
  701. $data['qna_ans_datetime'] = $data['qna_ans_upd_datetime'];
  702. }
  703. $this->db->where('qna_idx', $qna_idx)->update('qna', $data);
  704. alert('답변 작성이 완료되었습니다.', base_url('admin/management/qna_view/'.$qna_idx));
  705. exit;
  706. }
  707. else {
  708. // 첨부파일 가져오기
  709. $this->data['view']['attach_list'] = $this->db->where('att_target_type','QNA')->where('att_target', $qna_idx)->get('attach')->result_array();
  710. $this->view = "management/qna_view";
  711. $this->theme_file = 'iframe';
  712. }
  713. }
  714. /****************************************************************************
  715. * Q&A 분류 관리 등록/수정
  716. ***************************************************************************/
  717. function qna_category_form($qnc_idx="")
  718. {
  719. $this->load->library('form_validation');
  720. $this->form_validation->set_rules('qnc_title', '질문 유형 제목', 'required|trim');
  721. if( $this->form_validation->run() != FALSE )
  722. {
  723. $data['qnc_title'] = $this->input->post('qnc_title', TRUE);
  724. $data['upd_user'] = $this->member->is_login();
  725. $data['upd_datetime'] = date('Y-m-d H:i:s');
  726. if(empty($qnc_idx)) {
  727. $data['qnc_status'] = 'Y';
  728. $data['reg_user'] = $data['upd_user'];
  729. $data['reg_datetime'] = $data['upd_datetime'];
  730. $data['sort'] = (int)$this->db->select_max('sort', 'max')->where('qnc_status','Y')->get('qna_category')->row(0)->max;
  731. $this->db->insert('qna_category', $data);
  732. }
  733. else {
  734. $this->db->where('qnc_idx', $qnc_idx)->update('qna_category', $data);
  735. }
  736. alert_modal2_close('Q&A 분류 정보가 입력되었습니다.', TRUE);
  737. }
  738. else {
  739. $this->data['view'] = array();
  740. if(! empty($qnc_idx)) {
  741. if(! $this->data['view'] = $this->db->where('qnc_idx', $qnc_idx)->get('qna_category')->row_array())
  742. {
  743. alert_modal2_close('잘못된 접근입니다.', FALSE);
  744. }
  745. }
  746. $this->theme_file = 'iframe';
  747. $this->view = "management/qna_category_form";
  748. }
  749. }
  750. }