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.

777 lines
28 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
  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 = "management/sitemap";
  152. $this->active = "management/sitemap";
  153. }
  154. /**
  155. * 사이트맵
  156. */
  157. public function sitemap_form()
  158. {
  159. $this->load->library('form_validation');
  160. $this->form_validation->set_rules('sit_loc', 'URL', 'required|trim');
  161. if( $this->form_validation->run() != FALSE )
  162. {
  163. $data['sit_loc'] = '/'.ltrim($this->input->post('sit_loc', TRUE),'/');
  164. $data['sit_priority'] = $this->input->post('sit_priority', TRUE);
  165. $data['sit_changefreq'] = $this->input->post('sit_changefreq', TRUE);
  166. $data['sit_memo'] = $this->input->post('sit_memo', TRUE);
  167. $data['reg_user'] = $data['upd_user'] = $this->member->is_login();
  168. $data['reg_datetime'] = $data['upd_datetime'] = date('Y-m-d H:i:s');
  169. $this->db->insert("sitemap", $data);
  170. alert_modal_close("등록되었습니다.",FALSE);
  171. exit;
  172. }
  173. else
  174. {
  175. $this->theme_file = "iframe";
  176. $this->view = "management/sitemap_form";
  177. }
  178. }
  179. /**
  180. * FAQ 관리
  181. * @param string $faq_idx
  182. */
  183. public function faq($fac_idx="")
  184. {
  185. // FAQ 모델
  186. $this->load->model('faq_model');
  187. // faq_idx 여부에 따라 하위 FAQ 목록 불러오기
  188. $this->data['fac_idx'] = $fac_idx;
  189. $this->data['faq_list'] = NULL;
  190. if( $this->data['fac_idx'] )
  191. {
  192. $this->data['faq_list'] = $this->faq_model->get_detail_list($fac_idx);
  193. $this->data['faq_group'] = $this->faq_model->get_category($fac_idx);
  194. }
  195. // 데이타 불러오기
  196. $this->data['faq_category'] = $this->faq_model->get_category_list();
  197. // 메타태그 설정
  198. $this->site->meta_title = "사이트 관리 - FAQ 관리"; // 이 페이지의 타이틀
  199. // 레이아웃 & 뷰파일 설정
  200. $this->theme = "admin";
  201. $this->view = "management/faq";
  202. $this->active = "management/faq";
  203. }
  204. /**
  205. * FAQ 분류 등록/수정
  206. */
  207. public function faq_category_form()
  208. {
  209. $this->load->model('faq_model');
  210. $this->load->library("form_validation");
  211. $this->form_validation->set_rules("fac_title", "제목", "required|trim");
  212. $this->form_validation->set_rules("fac_idx", "고유키", "required|trim");
  213. if( $this->form_validation->run() != FALSE )
  214. {
  215. $data['fac_idx'] = $this->input->post('fac_idx', TRUE);
  216. $data['fac_title'] = trim($this->input->post('fac_title', TRUE));
  217. $mode = $this->input->post('mode', TRUE);
  218. if( $mode == 'INSERT' )
  219. {
  220. // 가장큰 순서값을 가져온다.
  221. $data['fac_sort'] = ((int) $this->db->select_max("fac_sort","max")->where('fac_status','Y')->get('faq_category')->row(0)->max) + 1;
  222. if(( $exist = $this->faq_model->get_category($data['fac_idx'])) && isset($exist['fac_idx']) )
  223. {
  224. alert('이미 존재하는 고유키 입니다.');
  225. exit;
  226. }
  227. if( $this->db->insert('faq_category', $data) ) {
  228. alert_modal_close("새로운 FAQ 분류를 추가하였습니다.");
  229. }
  230. else {
  231. alert('DB입력도중 오류가 발생하였습니다.');
  232. }
  233. }
  234. else if ( $mode == 'UPDATE' ) {
  235. $this->db->where('fac_idx', $data['fac_idx']);
  236. if( $this->db->update('faq_category', $data)) {
  237. alert_modal_close("FAQ 분류 정보를 수정하였습니다.");
  238. }
  239. else {
  240. alert('DB입력도중 오류가 발생하였습니다.');
  241. }
  242. }
  243. else {
  244. alert('잘못된 접근입니다.');
  245. }
  246. }
  247. else
  248. {
  249. $fac_idx = $this->input->get('fac_idx', TRUE);
  250. $this->data['view'] = ( empty($fac_idx) ) ? array() : $this->faq_model->get_category($fac_idx);
  251. $this->data['is_edit'] = ! ( empty($fac_idx) );
  252. if( $fac_idx && ! $this->data['view'] && ($this->data['view']['fac_idx'] != $fac_idx) )
  253. {
  254. alert_modal_close("잘못된 접근입니다.");
  255. exit();
  256. }
  257. $this->theme = "admin";
  258. $this->theme_file = "iframe";
  259. $this->view = "management/faq_category_form";
  260. }
  261. }
  262. /**
  263. * FAQ 등록/수정
  264. */
  265. public function faq_form()
  266. {
  267. $this->load->model('faq_model');
  268. $this->load->library("form_validation");
  269. $this->form_validation->set_rules("fac_idx", "FAQ 분류", "required|trim");
  270. $this->form_validation->set_rules("faq_title", "제목", "required|trim");
  271. if( $this->form_validation->run() != FALSE )
  272. {
  273. $data['faq_idx'] = $this->input->post('faq_idx', TRUE);
  274. $data['fac_idx'] = $this->input->post('fac_idx', TRUE);
  275. $data['faq_title'] = $this->input->post('faq_title', TRUE);
  276. $data['faq_content'] = $this->input->post('faq_content', FALSE);
  277. if(empty($data['fac_idx']))
  278. {
  279. alert('잘못된 접근입니다.');
  280. exit;
  281. }
  282. if(empty($data['faq_idx']))
  283. {
  284. $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;
  285. if( ! $this->db->insert("faq", $data) )
  286. {
  287. alert("DB정보 등록에 실패하였습니다.");
  288. exit;
  289. }
  290. }
  291. else
  292. {
  293. $this->db->where("faq_idx", $data['faq_idx']);
  294. if(! $this->db->update("faq", $data) )
  295. {
  296. alert("DB정보 수정에 실패하였습니다.");
  297. exit;
  298. }
  299. }
  300. // FAQ 분류에 등록된 FAQ 수를 최신화 한다.
  301. $this->faq_model->update_category_count($data['fac_idx']);
  302. alert_modal_close('FAQ 정보가 등록되었습니다.');
  303. exit;
  304. }
  305. else
  306. {
  307. $fac_idx = $this->input->get('fac_idx', TRUE);
  308. $faq_idx = $this->input->get('faq_idx', TRUE);
  309. $this->data['faq_group'] = $this->faq_model->get_category($fac_idx);
  310. $this->data['view'] = ( empty($faq_idx) ) ? array() : $this->faq_model->get_faq($faq_idx);
  311. if( ! $this->data['faq_group'] )
  312. {
  313. alert_modal_close("잘못된 접근입니다.");
  314. exit();
  315. }
  316. $this->theme = "admin";
  317. $this->theme_file = "iframe";
  318. $this->view = "management/faq_form";
  319. }
  320. }
  321. /**
  322. * 팝업 관리
  323. */
  324. public function popup()
  325. {
  326. // 메타태그 설정
  327. $this->site->meta_title = "팝업 관리";
  328. // 레이아웃 & 뷰파일 설정
  329. $this->active = $this->view = "management/popup";
  330. }
  331. /**
  332. * 팝업 등록/수정
  333. */
  334. public function popup_form($pop_idx="")
  335. {
  336. $this->load->model('popup_model');
  337. $this->load->library('form_validation');
  338. $this->form_validation->set_rules('pop_title', '팝업 이름', 'required|trim');
  339. $this->form_validation->set_rules('pop_width', '팝업 너비', 'required|trim|is_natural_no_zero');
  340. $this->form_validation->set_rules('pop_height', '팝업 높이', 'required|trim|is_natural_no_zero');
  341. $this->form_validation->set_rules('pop_type', '팝업 종류', 'required|trim|in_list[Y,N]');
  342. $this->form_validation->set_rules('pop_start', '표시 시작 시간', 'required|trim');
  343. $this->form_validation->set_rules('pop_start', '표시 종료 시간', 'required|trim');
  344. if( $this->form_validation->run() != FALSE )
  345. {
  346. $data['pop_title'] = $this->input->post('pop_title', TRUE);
  347. $data['pop_width'] = $this->input->post('pop_width', TRUE);
  348. $data['pop_height'] = str_replace(',','',$this->input->post('pop_height', TRUE));
  349. $data['pop_content'] = str_replace(',','',$this->input->post('pop_content', FALSE));
  350. $data['pop_status'] = 'Y';
  351. $data['pop_start'] = str_replace("T"," ", $this->input->post('pop_start', TRUE));
  352. $data['pop_end'] = str_replace("T"," ", $this->input->post('pop_end', TRUE));
  353. $data['upd_datetime'] = date('Y-m-d H:i:s');
  354. $data['upd_user'] = $this->member->is_login();
  355. $data['pop_type'] = $this->input->post('pop_type', TRUE) == 'N' ? 'N' : 'Y';
  356. if( empty($pop_idx) )
  357. {
  358. $data['reg_datetime'] = $data['upd_datetime'];
  359. $data['reg_user'] = $data['upd_user'];
  360. $this->db->insert('popup', $data);
  361. }
  362. else
  363. {
  364. $this->db->where('pop_idx', $pop_idx);
  365. $this->db->update('popup', $data);
  366. }
  367. alert_modal_close('팝업 정보 입력이 완료되었습니다.', FALSE);
  368. exit;
  369. }
  370. else
  371. {
  372. $this->data['view'] = array();
  373. if(! empty($pop_idx))
  374. {
  375. if(! $this->data['view'] = $this->db->where('pop_idx', $pop_idx)->get('popup')->row_array())
  376. {
  377. alert_modal_close('잘못된 접근입니다.',false);
  378. }
  379. }
  380. // 메타태그 설정
  381. $this->site->meta_title = "팝업 관리";
  382. // 레이아웃 & 뷰파일 설정
  383. $this->theme_file = "iframe";
  384. $this->view = "management/popup_form";
  385. }
  386. }
  387. function datetime_regex($str)
  388. {
  389. if(!preg_match('/(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2})/',$str, $matches))
  390. {
  391. $this->form_validation->set_message('datetime_regex', '올바른 형식의 날짜/시간 형태가 아닙니다 : {field}');
  392. return FALSE;
  393. }
  394. return TRUE;
  395. }
  396. /****************************************************************************
  397. * 배너 관리 - 목록
  398. ***************************************************************************/
  399. function banner($bng_key="")
  400. {
  401. $this->load->model('basic_model');
  402. // bng_key 여부에 따라 하위 FAQ 목록 불러오기
  403. $this->data['bng_key'] = $bng_key;
  404. $this->data['faq_list'] = NULL;
  405. if( $this->data['bng_key'] )
  406. {
  407. $this->data['banner_list'] = array();
  408. $param['limit'] = FALSE;
  409. $param['from'] = "banner";
  410. $param['order_by'] = "ban_sort ASC";
  411. $param['where']['bng_key'] = $bng_key;
  412. $this->data['banner_list'] = $this->basic_model->get_list($param);
  413. unset($param);
  414. $this->data['banner_group'] = $this->db->where('bng_key', $this->data['bng_key'])->get('banner_group')->row_array();
  415. }
  416. // 배너 그룹 목록 가져오기
  417. $param['limit'] = FALSE;
  418. $param['order_by'] = "bng_name ASC";
  419. $param['from'] = "banner_group";
  420. $this->data['banner_group_list'] = $this->basic_model->get_list($param);
  421. // 메타태그 설정
  422. $this->site->meta_title = "사이트 관리 - 배너 관리"; // 이 페이지의 타이틀
  423. // 레이아웃 & 뷰파일 설정
  424. $this->theme = "admin";
  425. $this->view = "management/banner";
  426. $this->active = "management/banner";
  427. }
  428. /****************************************************************************
  429. * 배너 관리 - 그룹 추가/수정
  430. ***************************************************************************/
  431. function banner_group_form()
  432. {
  433. $this->load->library('form_validation');
  434. $this->form_validation->set_rules('bng_key', "배너 그룹 고유 키", "required|trim|max_length[20]|alpha_dash");
  435. $this->form_validation->set_rules('bng_name', "배너 이름","required|trim|max_length[50]");
  436. if( $this->form_validation->run() != FALSE )
  437. {
  438. $data['bng_idx'] = $this->input->post('bng_idx', TRUE);
  439. $data['bng_key'] = $this->input->post('bng_key', TRUE);
  440. $data['bng_name'] = $this->input->post('bng_name', TRUE);
  441. $data['bng_width'] = $this->input->post('bng_width', TRUE, 0);
  442. $data['bng_height'] = $this->input->post('bng_height', TRUE, 0);
  443. for($i=1; $i<=5; $i++)
  444. {
  445. $data["bng_ext{$i}"] = $this->input->post("bng_ext{$i}",TRUE,'');
  446. $data["bng_ext{$i}_use"] = $this->input->post("bng_ext{$i}_use",TRUE,'N');
  447. }
  448. if(empty($data['bng_idx']))
  449. {
  450. $tmp = (int)$this->db->select('COUNT(*) AS cnt')->where('bng_key', $data['bng_key'])->get('banner_group')->row(0)->cnt;
  451. if($tmp > 0) {
  452. alert('이미 존재하는 고유키 입니다.');
  453. exit;
  454. }
  455. if( $this->db->insert('banner_group', $data))
  456. {
  457. alert_modal_close('배너 그룹이 추가 되었습니다.', TRUE);
  458. exit;
  459. }
  460. }
  461. else
  462. {
  463. $this->db->where('bng_idx', $data['bng_idx']);
  464. if( $this->db->update('banner_group', $data) )
  465. {
  466. alert_modal_close('배너 그룹이 수정 되었습니다.', TRUE);
  467. exit;
  468. }
  469. }
  470. alert('서버 오류가 발생하였습니다.');
  471. exit;
  472. }
  473. else
  474. {
  475. $bng_idx = $this->input->get('bng_idx', TRUE);
  476. $this->data['view'] = array();
  477. if(! empty($bng_idx)) {
  478. $this->data['view'] = $this->db->where('bng_idx', $bng_idx)->get('banner_group')->row_array();
  479. }
  480. $this->theme = "admin";
  481. $this->theme_file = "iframe";
  482. $this->view = "management/banner_group_form";
  483. }
  484. }
  485. /****************************************************************************
  486. * 배너 관리 - 그룹 삭제
  487. ***************************************************************************/
  488. function banner_group_delete($bng_idx="")
  489. {
  490. if(empty($bng_idx)) {
  491. alert('잘못된 접근입니다.');
  492. exit;
  493. }
  494. $banner_group = $this->db->where('bng_idx', $bng_idx)->get('banner_group')->row_array();
  495. if(empty($banner_group) OR empty($banner_group['bng_key'])) {
  496. alert('존재하지 않는 그룹이거나, 이미 삭제된 그룹입니다.');
  497. exit;
  498. }
  499. // 배너에 포함된 파일을 삭제하기 위해 배너 목록을 가져와서 파일을 삭제한다.
  500. $banner_list = $this->db->where('bng_key', $banner_group['bng_key'])->get('banner')->result_array();
  501. // 트랜젝션 시작
  502. $this->db->trans_begin();
  503. $this->db->where('bng_idx', $bng_idx);
  504. $this->db->delete('banner_group');
  505. $this->db->where('bng_key', $banner_group['bng_key']);
  506. $this->db->delete('banner');
  507. if ($this->db->trans_status() === FALSE)
  508. {
  509. $this->db->trans_rollback();
  510. alert('그룹 삭제에 실패하였습니다. 관리자에게 문의하세요');
  511. exit;
  512. }
  513. else
  514. {
  515. $this->db->trans_commit();
  516. // 배너 파일들을 삭제
  517. if(count($banner_list) > 0)
  518. {
  519. foreach($banner_list as $row)
  520. {
  521. if(empty($row['ban_filepath'])) continue;
  522. file_delete($row['ban_filepath']);
  523. }
  524. }
  525. alert('배너 그룹을 삭제하였습니다.');
  526. exit;
  527. }
  528. }
  529. /****************************************************************************
  530. * 배너 관리 - 배너 추가/수정
  531. ***************************************************************************/
  532. function banner_form()
  533. {
  534. $this->load->library('form_validation');
  535. $this->form_validation->set_rules('bng_key', "배너 그룹 고유 키", "required|trim");
  536. $this->form_validation->set_rules('ban_name', "배너 이름","required|trim|max_length[50]");
  537. if($this->form_validation->run() != FALSE)
  538. {
  539. $data['bng_key'] = $this->input->post('bng_key', TRUE);
  540. $data['ban_idx'] = $this->input->post('ban_idx', TRUE);
  541. $data['ban_name'] = $this->input->post('ban_name', TRUE);
  542. $data['ban_link_use'] = $this->input->post('ban_link_use', TRUE) == 'Y' ? 'Y' : 'N';
  543. $data['ban_link_url'] = $this->input->post('ban_link_url', TRUE, "");
  544. $data['ban_link_type'] = $this->input->post('ban_link_url', TRUE) == 'Y' ? 'Y': 'N';
  545. $data['ban_modtime'] = date('Y-m-d H:i:s');
  546. $data['ban_status'] = $this->input->post('ban_status', TRUE) == 'H' ? 'H' : 'Y';
  547. $data['ban_timer_use'] = $this->input->post('ban_timer_use', TRUE) == 'Y' ? 'Y' : 'N';
  548. $data['ban_timer_start'] = $this->input->post('ban_timer_start', TRUE, '0000-00-00 00:00:00');
  549. $data['ban_timer_end'] = $this->input->post('ban_timer_end', TRUE, '0000-00-00 00:00:00');
  550. for($i=1; $i<=5; $i++)
  551. {
  552. $data["ban_ext{$i}"] = $this->input->post("ban_ext{$i}",TRUE,'');
  553. }
  554. // 업로드된 파일이 있을경우 처리
  555. if( isset($_FILES['userfile']) && $_FILES['userfile'] && $_FILES['userfile']['tmp_name'] )
  556. {
  557. $up_dir = DIR_UPLOAD . DIRECTORY_SEPARATOR . 'banners';
  558. $up_dir = make_dir($up_dir, TRUE, TRUE);
  559. $config['upload_path'] = './'.ltrim($up_dir,'/');
  560. $config['allowed_types'] = 'gif|jpg|png';
  561. $config['file_ext_tolower'] = TRUE;
  562. $config['encrypt_name'] = TRUE;
  563. $this->load->library("upload", $config);
  564. $this->upload->initialize($config);
  565. if( ! $this->upload->do_upload('userfile') )
  566. {
  567. alert("이미지 업로드중 오류가 발생하였습니다.".$this->upload->display_errors('업로드 오류:', ' ').$config['upload_path'] );
  568. }
  569. else
  570. {
  571. $data['ban_filepath'] = rtrim(str_replace(DIRECTORY_SEPARATOR, "/", $up_dir), "/") . "/" . $this->upload->data('file_name');
  572. // 수정일경우 원래 이미지를 삭제한다
  573. if(! empty($data['ban_idx']))
  574. {
  575. db_file_delete("banner","ban_idx", $data['ban_idx'], 'ban_filepath');
  576. }
  577. }
  578. }
  579. if(empty($data['ban_idx']))
  580. {
  581. $data['ban_regtime'] = date('Y-m-d H:i:s');
  582. $sort = (int)$this->db->select_max('ban_sort', 'max')->where('bng_key', $data['bng_key'])->get('banner')->row(0)->max;
  583. $data['ban_sort'] = $sort+1;
  584. $this->db->insert('banner', $data);
  585. }
  586. else
  587. {
  588. $this->db->where('ban_idx', $data['ban_idx']);
  589. $this->db->update('banner', $data);
  590. }
  591. alert_modal_close("등록이 완료되었습니다.", TRUE);
  592. exit;
  593. }
  594. else
  595. {
  596. $this->data['bng_key'] = $this->input->get('bng_key', TRUE);
  597. $this->data['ban_idx'] = $this->input->get('ban_idx', TRUE);
  598. $this->data['view'] = array();
  599. if(empty($this->data['bng_key']))
  600. {
  601. alert_modal_close('잘못된 접근입니다.');
  602. exit;
  603. }
  604. if( ! $this->data['banner_group'] = $this->db->where('bng_key', $this->data['bng_key'])->get('banner_group')->row_array())
  605. {
  606. alert_modal_close('잘못된 접근입니다.');
  607. exit;
  608. }
  609. if(! empty($this->data['ban_idx'])) {
  610. if(! $this->data['view'] = $this->db->where('ban_idx', $this->data['ban_idx'])->get('banner')->row_array())
  611. {
  612. alert('삭제되었거나 존재하지 않는 배너 입니다.');
  613. exit;
  614. }
  615. }
  616. $this->theme = "admin";
  617. $this->theme_file = "iframe";
  618. $this->view = "management/banner_form";
  619. }
  620. }
  621. /****************************************************************************
  622. * 배너 관리 - 배너 삭제
  623. ***************************************************************************/
  624. function banner_delete($ban_idx="")
  625. {
  626. if(empty($ban_idx)) {
  627. alert('잘못된 접근입니다.');
  628. exit;
  629. }
  630. $banner = $this->db->where('ban_idx', $ban_idx)->get('banner')->row_array();
  631. if(empty($banner) OR empty($banner['ban_idx'])) {
  632. alert('존재하지 않는 배너거나, 이미 삭제된 배너입니다.');
  633. exit;
  634. }
  635. $this->db->where('ban_idx', $ban_idx);
  636. if( $this->db->delete('banner') )
  637. {
  638. if(! empty($banner['ban_filepath']))
  639. {
  640. file_delete($banner['ban_filepath']);
  641. }
  642. alert('배너를 삭제하였습니다.');
  643. }
  644. else {
  645. alert('배너 삭제도중 오류가 발생하였습니다.');
  646. }
  647. }
  648. /****************************************************************************
  649. * 배너 관리 - 배너 순서변경
  650. ***************************************************************************/
  651. function banner_sort()
  652. {
  653. $sort_idx = $this->input->post("sort_idx", TRUE);
  654. for($i=1; $i<=count($sort_idx); $i++)
  655. {
  656. $this->db->where("ban_idx", $sort_idx[$i-1]);
  657. $this->db->set("ban_sort", $i);
  658. $this->db->update("banner");
  659. }
  660. }
  661. /*--------------------------------------------------------------------------*/
  662. }